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
88117543ba8f5d5473c69f5420e900410ea2f994
8217f7986187902617ad1bf89cb789618a90dd0a
/source/1.1/macros/percent/%lssir.sci
937b8a5c8ca6c393c0adc22c8b8569f91a36d9d4
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference" ]
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
328
sci
%lssir.sci
//[s2]=%lssir(i,j,s1,s2) //%lssir(i,j,s1,s2) calcule l'insertion d'un sous systeme lineaire // decrit par une representation d'etat dans un systeme lineaire // decrit par sa fonction de transfert //Cette macro correspond a l'operation s2(i,j)=s1 //! // origine s. steer inria 1992 // [s1 s2]=sysconv(s1,s2) s2(i,j)=s1 //end
e2fd4aa15c4b6285fc59c9b547fbb3fe78f09756
573df9bfca39973c9bf2fa36f6e5af2643d7771e
/scilab/linguagem/exemplo_poly.sce
79f8a09243f83dcd2952a2656f273c44e6864ac8
[]
no_license
DCC-CN/152cn
ef92c691edabe211b1a552dbb963f9fd9ceec94a
4fe0b02f961f37935a1335b5eac22d81400fa609
refs/heads/master
2016-08-13T01:34:17.966430
2015-04-07T07:31:58
2015-04-07T07:31:58
44,502,526
1
0
null
null
null
null
UTF-8
Scilab
false
false
1,150
sce
exemplo_poly.sce
//------------------------------------------ mode(5) // modo de execução com saída de comandos e resultados // limpa a tela de comandos clc // libera a memória de todas as variáveis // incluindo funções definidas dinamicamente clear // cria um polinômio baseado nas raizes da equação P(x) = 0 raizes = [-1 0 2 3] Pr = poly(raizes, 'x') // cria um polinômio baseado nos coeficientes coeficientes = [3 4 5 6] Pc = poly(raizes, 'x', 'c') // cria um monômio x Pu = poly(0, 'x') // Operações algébricas // Soma de polinômios Psp = Pr + Pu // Soma por escalar Pse = Pu + 100 // Multiplicação por escalar Pmp = Pc * 10 // Multiplicação de polinômios Pmp = Pc*Pu // Divisão de polinômios Pdp = Pu / Pc // Exponenciação Pep = Pu ^ 3 // Derivação simbólica de polinômio Pd=derivat(Pr) // Susbtituição em polinômio x = 2 y = horner(Pc, x) // Gráfico com substituição de múltiplos pontos // // linspace(a,b,n) retorna um vetor com valores igualmente espaçados entre a e b // plot_x = linspace(-3, 3, 200); plot_y = horner(Pc, plot_x); plot(plot_x, plot_y, 'b-'); plot(x, y, 'ro'); legend(pol2str(Pc), 'f(2)');
92dde14e034f559484233fc8fb39e9d808c9d2cf
449d555969bfd7befe906877abab098c6e63a0e8
/3594/CH8/EX8.5/Ex8_5.sce
924b3137a52d706f57f77d51213a87926d331931
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
278
sce
Ex8_5.sce
clc //given n=12 u=.28 a=4.5//in b=1//in l=21//in r=15//in Tb=4000//lb theta=10*%pi/180 //k=Tn/To k=((1+u*tan(theta))/(1-u*tan(theta)))^n Q=Tb*(12/r) P=Q*(a-b*k)/(l*(k-1))//from combining 8.6 with k=e^u*theta printf("The least effort required = P = %.1f lb",P)
c9de2f0a4e1aa8b0309d4271c062e17f0c6e839f
449d555969bfd7befe906877abab098c6e63a0e8
/1787/CH4/EX4.14/Exa4_14.sce
1bea4252505481f1e405af51f9bd4d3a7c3b39cb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
649
sce
Exa4_14.sce
//Exa4.14 clc; clear; close; //given data Vz=50;//in volts VSmax=120;//in volts VSmin=80;//in volts RL=10;//in Kohm Rs=5;//in Kohm Vout=Vz;//in Volts disp("Output voltage will be equal to Vz i.e "+string(Vz)+" Volts"); IL=Vout/RL;//in mAmpere disp("The zener current will be maximum when input voltage is maximum i.e. 120V."); ISmax=(VSmax-Vout)/Rs;//in mAmpere Izmax=ISmax-IL;//in mA disp(Izmax,"Maximum zener diode current in mA : "); disp("The zener current will be minimum when input voltage is minimum i.e. 80V."); Ismin=(VSmin-Vout)/Rs;//in mAmpere Izmin=Ismin-IL;//in mA disp(Izmin,"Minimum zener diode current in mA : ");
4a4cac6b4b9a2292b72a587426d266dd91b09149
449d555969bfd7befe906877abab098c6e63a0e8
/2303/CH1/EX1.4/EX_1_4.sce
359deb746cbea0bf4fbde67785b6c3ae06fffb0d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
316
sce
EX_1_4.sce
//Example 1 4 clc ; clear; close; f=9; //assuming frequency to be a constant 9Hz. t =0:.01:10; x= cos (2* %pi *f*t); plot (t,x); xlabel('Time'); ylabel('Amplitude'); title('Plot of given sequence to test periodicity'); disp ( 'Plotting the signal and showing that it is periodic with period=1/f' );
c509ade66ed2a2238879a8944b5c5084ce91b4d8
a159f59d19e2b03b234e9c2977ba4a932180e648
/Software/GreenScilabV0.9/env/7accumulatedBiomassRepartition.sci
6934efbf88159d15eb86f5525185d2becb3f411b
[]
no_license
OpenAgricultureFoundation/openag_sim
e052bbcc31b1d7f9b84add066327b479785f8723
425e678b55e24b5848d17181d25770175b8c2c3f
refs/heads/master
2021-07-01T06:25:08.753260
2017-09-20T21:44:18
2017-09-20T21:44:18
80,540,145
0
1
null
null
null
null
UTF-8
Scilab
false
false
1,486
sci
7accumulatedBiomassRepartition.sci
blade petiole pith female fruit male fruit ring 0.16689 0.22034 0.36946 0.63323 1.09274 1.88367 0.05259 0.06944 0.11644 0.19956 0.34438 0.59364 0.56880 0.59110 0.61651 0.64407 0.68062 0.73538 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00850 0.02399 0.04575 0.08037 0.14013 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 5.44577 9.00895 14.44880 22.27061 32.57346 45.26491 1.71623 2.83916 4.55353 7.01856 10.26549 14.26519 0.96813 1.20511 1.57663 2.12379 2.85725 3.76907 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.44545 0.79962 1.40437 2.36968 3.76825 5.64769 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 74.91928 90.64414 107.26633 123.50238 140.45625 156.84057 23.61074 28.56641 33.80488 38.92165 44.26465 49.42815 5.89960 7.02936 8.22359 9.39007 10.60813 11.78527 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 10.40507 12.92777 15.59443 18.19914 20.91901 23.54751 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 190.32214 207.40521 223.84880 240.94172 257.38984 274.48581 59.97983 65.36355 70.54573 75.93254 81.11615 86.50393 14.19077 15.41810 16.59950 17.82755 19.00927 20.23754 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000 28.91888 31.65947 34.29748 37.03966 39.67839 42.42106 0.00000 0.00000 0.00000 0.00000 0.00000 0.00000
5a95fb46b19cdaad13df516889fabad53480e6ae
449d555969bfd7befe906877abab098c6e63a0e8
/1286/CH8/EX8.14/8_14.sce
9749da8647a93b031fad7c47d9e83d0c28bda0ba
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
183
sce
8_14.sce
clc //initialisation of variables dt=0.5//c L=80000*4.2//J/kg T=273//k dv=0.000091//m^3 //CALCULATIONS dp=(L*dt)/(T*dv*100000) //results printf(' \n pressure= % 1f atm',dp)
7306def302363a15b0d5ffd5d8bf10783b91c345
449d555969bfd7befe906877abab098c6e63a0e8
/964/CH30/EX30.5/30_5.sce
a8ca5d54ab925159fa74272bb08236b52422e627
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
965
sce
30_5.sce
//clc() x = 10;//cm L = 0.0835; t1 = 5; //for first step t = 5 is applied to nodes (1,1) , (1,2) and (1,3) to yield following matrices A = [2.167,-0.0835,0;-0.0835,2.167,-0.0835;0,-0.0835,2.167]; B = [6.2625;6.2625;14.6125]; X = inv(A)*B; disp("At t = 5 s") disp(det(X(1,1)),"T11 = ") disp(det(X(2,1)),"T12 = ") disp(det(X(3,1)),"T13 = ") //similarly we get, T21 = 0.1274; T22 = 0.2900; T23 = 4.1291; T31 = 2.0181; T32 = 2.2477; T33 = 6.0256; disp(T21,"T21 = ") disp(T22,"T22 = ") disp(T23,"T23 = ") disp(T31,"T31 = ") disp(T32,"T32 = ") disp(T33,"T33 = ") C = [13.0639;0.2577;8.0619]; Y = inv(A)*C; disp("At t = 10 s") disp(det(Y(1,1)),"T11 = ") disp(det(Y(2,1)),"T12 = ") disp(det(Y(3,1)),"T13 = ") //similarly we get, T21 = 6.1683; T22 = 0.8238; T23 = 4.2359; T31 = 13.1120; T32 = 8.3207; T33 = 11.3606; disp(T21,"T21 = ") disp(T22,"T22 = ") disp(T23,"T23 = ") disp(T31,"T31 = ") disp(T32,"T32 = ") disp(T33,"T33 = ")
b0dfbc6c0499b45cd49d0ad1fcfa556792465fb8
449d555969bfd7befe906877abab098c6e63a0e8
/2183/CH8/EX8.20/Ex_8_20.sce
62908f20488ab459703796d7adcbc8e7f568dc47
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
372
sce
Ex_8_20.sce
// Example 8.20;//maximum length of the system clc; clear; close; af=0.20;//dB/km ac1=0.05;//dB/km k=4;// b=1.2;//G bit/s c=3*10^8;//m/s h=1.55;//micro meter sndb=17 sn=10^(sndb/10);// l=100;//km hc=6.63*10^-34;// lt=((10^-3*h*10^-6*(10^-((af+ac1)*(l/10)))*l*10^3)/(k*hc*c*b*10^12*sn));// disp(lt,"maximum length of the system in km is") //answer is wrong in the textbook
acbb44ac26888915dde602b0456ff733e9fef735
bee0ff3e66d437a19ec7a2e337cb677ffc9ed04b
/calculadora material paredes.sce
88cc8f37162e6aab5b233b4bbdacf498cad4d265
[]
no_license
erickcampos50/CalcMatConst
706e7ae11a6a9f8f48cf93f7ce3d9c4cea1b069b
eedefd44bc92b2060b00f6c64a962b322260c345
refs/heads/master
2020-06-01T01:54:55.984354
2015-02-06T20:29:27
2015-02-06T20:29:27
30,431,655
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,215
sce
calculadora material paredes.sce
//Calculadora material de construção paredes //Entradas////////////////////////////////////////////////////////////////qqq //Proporcoes da massa: 4x1x1 ou 5x1x1 sao um exemplo, o usuario podera escolher a proproporcao e tambem tera a opcao de usar proporcoes diferentes para massa entre blocos/tijolos e reboco E1 = [4,1,1]; Ar = E1(1);//Ar - Areia Cim = E1(2);//Cim - Cimento Ag = E1(3);//Ag - Agrofilito ou cal //Considerando as proporcoes de massa as mesmas para os tijolos e reboco ArR = E1(1);//ArR - Areia para o reboco CimR = E1(2);//CimR - Cimento para o reboco AgR = E1(3);//AgR - Agrofilito ou cal para o reboco //Dimensoes das paredes E2 = [3,100] H = E2(1)//H - Altura padrao [m] L = E2(2)//L - Comprimento linear somado de todas as paredes [m] //Dimensoes e quantidades das janelas e portas que serao depois subtraidas da area total. Devido a presenca de varios conjuntos de portas e janelas de dimensoes distintas o usuario devera ter a opcao de adicionar novos grupos de entradas. Por exemplo: adiciona o grupo de entradas para as portas e depois clica para uma nova adicao de campos e preenche com os valores de janelas, depois valores de basculantes, etc. E3 = [.9,3,10] //Exemplo considerando somente uma entrada para portas com as mesmas dimensoes VaoL = E3(1) //Largura do vão [m] VaoH = E3(2) //Altura do vao [m] VaoQ = E3(3) //Quantidade desses vaos VaoT = VaoL*VaoH*VaoQ //Area total dos vaos [m2] //Dimensoes dos Tijolos ou blocos E4 = [.2,.3,.1] TH = E4(1) //Altura dos tijolos ou blocos [m] TL = E4(2) //Largura dos tijolos ou blocos [m] TP = E4(3) //Espessura dos tijolos ou blocos [m] //Dimensoes da massa E5 = [.02,.01] espT = E5(1) //espessura da massa entre os tijolos espR = E5(2) //espessura do reboco //Densidade dos materiais E6 = [1420,1400,3350] PC = E6(1) //Densidade real do cimento [kg/m³] PA = E6(2) //Densidade real da areia [kg/m³] PF = E6(3) //Densidade real do agrofilito [kg/m³] //Equacoes/////////////////////////////////////////////////////////// //Quantidade de tijolos como funcao da area (m²) Tij = (H*L-VaoT)/((TH+espT)*(TL+espT)) //Resultado deve ser arredondado para proximo inteiro. A espessura é considerada dessa forma pois e o resultado de metade somado de 2 lados //Massa necessaria de cimento para os tijlos (kg) MassCim = Tij*(2*TH*TP*espT/2+2*TL*TP*espT/2)*PC*Cim/(Ar+Cim+Ag) //Massa necessaria de areia para os tijlos (kg) MassAr = MassCim*Ar/Cim*PA/PC //Massa necessaria de agrofilito ou cal para os tijlos (kg) MassAg = MassCim*Ag/Cim*PF/PC //Massa necessaria de cimento para o reboco (kg) MassCimR = (H*L-VaoT)*PC*CimR/(ArR+CimR+AgR)*2 //Multiplicacao feita considerando que a espessura do reboco interno e externo sejam iguais //Massa necessaria de areia para o reboco (kg) MassArR = MassCimR*ArR/CimR*PA/PC //Massa necessaria de Agrofilito ou cal para o reboco (kg) MassAgR = MassCimR*AgR/CimR*PF/PC //Massa total dos componentes [kg] MassCimT = MassCim+MassCimR MassArT = MassAr+MassArR MassAgT = MassAg+MassAgR areia cimento agrofilito altura largura vaoLargura vaoAltura qtVao alturaTijolo larguraTijolo espessuraTijolo espessuraMassa espessuraReboco densidadeCimento densidadeAreia densidadeAgrofilito
d10fbdec801b340589d6fe7ed411322fc65ef716
449d555969bfd7befe906877abab098c6e63a0e8
/2129/CH2/EX2.21.12/ex2_21_12.sce
0586bdf3dec128eba33260e08b18ac8cb1999310
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
229
sce
ex2_21_12.sce
// Exa 2.21.12 clc; clear; close; // Given data N_A = 2 * 10^16;// in atoms/cm^3 N_D = 10^16;// in atoms/cm^3 C_c = N_A-N_D;// C_c stands for Carrier concentration in /cm^3 disp(C_c,"Carrier concentration per cm^3 is");
83cd73e8e2391d8db74699d314e9e1937abc1cbc
449d555969bfd7befe906877abab098c6e63a0e8
/3886/CH9/EX9.11/9_11.sce
7ecc83b9291859c17df658ff07ca77d4232f1665
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
422
sce
9_11.sce
//Moment of inertia of I section //Refer fig. 9.36 A1=200*9 //mm^2 A2=(250-9*2)*6.7 //mm^2 A3=200*9 //mm^2 A=A1+A2+A3 //mm^2 Ixx=((200*9^3)/12)+(1800*120.5^2)+((6.7*232^3)/12)+(0)+((200*9^3)/12)+(1800*120.5^2) //mm^4 Iyy=((9*200^3)/12)+((232*6.7^3)/12)+((9*200^3)/12) //mm^4 Izz=Ixx+Iyy //mm^4 printf("\nIxx=%.2f mm^4\nIyy=%.2f mm^4\nIzz=%.2f mm^4",Ixx,Iyy,Izz) //The answers vary due to round off error
b4b93fc499ce0af2ee3172b3ce6fd939f15326a6
449d555969bfd7befe906877abab098c6e63a0e8
/149/CH35/EX35.13/ex13.sce
6150d62e1cf98aacb1776a65e30869c47383d941
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
288
sce
ex13.sce
clc disp('d and n represents the deviation and no. of objects in given sample') n=10 d=0.04 m=0.742 M=0.700 disp('taking the hypothesis that the product is not inferior i.e. there is no significant differene between m and M') t=(m-M)*(n-1)^0.5/d disp('degrees of freedom=') f=n-1
9d01f6e61afa129917bc2cb38a0ec71d3a3a304b
ebd6f68d47e192da7f81c528312358cfe8052c8d
/swig/Examples/scilab/struct/runme.sci
4d47ef0dcc82cf6f5b9dfd952dc3c52463d968e7
[ "LicenseRef-scancode-swig", "GPL-3.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only", "Apache-2.0" ]
permissive
inishchith/DeepSpeech
965ad34d69eb4d150ddf996d30d02a1b29c97d25
dcb7c716bc794d7690d96ed40179ed1996968a41
refs/heads/master
2021-01-16T16:16:05.282278
2020-05-19T08:00:33
2020-05-19T08:00:33
243,180,319
1
0
Apache-2.0
2020-02-26T05:54:51
2020-02-26T05:54:50
null
UTF-8
Scilab
false
false
264
sci
runme.sci
lines(0); ilib_verbose(0); ierr = exec('loader.sce', 'errcatch'); if ierr <> 0 then disp(lasterror()); exit(ierr); end // Test use of a struct (Bar) a = new_Bar(); Bar_x_set(a, 100); printf("a.x = %d (Should be 100)\n", Bar_x_get(a)); delete_Bar(a); exit
13233dbb8b8e74ddfda54e6b1a09b971e64ea215
449d555969bfd7befe906877abab098c6e63a0e8
/1436/CH4/EX4.9/ex4_9.sce
efbb521547cf07c61e26c54a232b22edbe2d9d4b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
228
sce
ex4_9.sce
// Example 4.9, page no-212 clear clc sg1=0.85 sg2=0.8 span=150 H=span/(sg1-sg2) printf("(a)\nH=%d mm = %dm",H,H/1000) span_min=1500 span2=span_min*(sg1-sg2) span2=ceil(span2) printf("\n(b)\nD/P span = %d mm",span2)
3700bf3f5128751ddc1663e50cf7971b9009c6b9
449d555969bfd7befe906877abab098c6e63a0e8
/3375/CH9/EX9.8/Ex9_8.sce
5951f8b7996381b44db74f154887c91bd7e9baca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
233
sce
Ex9_8.sce
//Example 9.8 //Student's t-distribution //Page No. 553 clc;clear;close; n=9; x_avg=17; sigma=4; t=2.31; //from table A2 in book printf('\nx = %i +- %.2f\nx_avg = %i +- %.2f',x_avg,t*sigma,x_avg,t*sigma/sqrt(n));
18478783fc8ce6ee2f2b6d62c2399f7a6a0685af
449d555969bfd7befe906877abab098c6e63a0e8
/854/CH3/EX3.4/Example3_4.sce
dd647c7a95523a7bb4bb3926cac9065054c98a37
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
812
sce
Example3_4.sce
//clear// //Caption: Program to Find the Divergence of 'D' at the origin //Example3.4 //page 70 clc; x = sym('x'); y = sym('y'); z = sym('z'); //Components of Electric Flux Density in cartesian coordinate system Dx = exp(-x)*sin(y); Dy = -exp(-x)*cos(y); Dz = 2*z; //Divergence of electric flux density 'D' dDx = diff(Dx,x); dDy = diff(Dy,y); dDz = diff(Dz,z); divD = dDx+dDy+dDz disp(divD,'Divergence of Electric Flux Density D in C/cubic.metre, divD =') divD = limit(divD,x,0); divD = limit(divD,y,0); divD = limit(divD,z,0); disp(divD,'Divergence of Electric Flux Density D in C/cubic.metre at origin, divD =') //Result //Divergence of Electric Flux Density D in C/cubic.metre, divD = // 2 //Divergence of Electric Flux Density D in C/cubic.metre at origin, divD = // 2
a7334ecb99b7a1a8ad476d0f97b931256d84ade9
449d555969bfd7befe906877abab098c6e63a0e8
/1619/CH1/EX1.14.10/Example1_14_10.sce
722ee8e4aab5099ee1a9c882d3c78a8349e7ee3e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
383
sce
Example1_14_10.sce
//Example 1.14.10 page 1.49 //To find the diameter of the core.. clc; clear; del= 0.01; //Relative RI difference.. n1= 1.5; M= 1100; //Number of modes... lamda= 1.3; //wavelength of operation in um.. V= sqrt(2*M); //Normalised frequency... d= V*lamda/(%pi*n1*sqrt(2*del)); //diameter of core.. printf('The diameter of the core is %.2f um',d);
efde4629f0400034bbad3eb2f7be9a21f69601bb
fdc5047b7bf8122bad1e621df236b0481226c36e
/virtualHartSci/macros/hrtGuiConectar.sci
a022f43dc82977ddefaa5eee049fc34d24e7ddfd
[]
no_license
jpbevila/virtualHartSci
aea3c6ba23d054670eb193f441ea7de982b531cc
a3f5be6041d230bd9f0fd67e5d7efa71f41cfca5
refs/heads/main
2023-07-26T23:05:28.044194
2021-09-09T11:50:59
2021-09-09T11:50:59
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
535
sci
hrtGuiConectar.sci
function hrtGuiConectar() set('BConectar','Enable','off'); set('BDesconectar','Enable','on'); set('ePort','Enable','off'); set('eBaudRate','Enable','off'); set('eDataBits','Enable','off'); set('eParity','Enable','off'); set('eStopBits','Enable','off'); hrtAquisicao(uint8(strtod(get('ePort','String'))),... get('eBaudRate','String'),... get('eDataBits','String'),... get('eParity','String'),... get('eStopBits','String')); endfunction
0347e225af713f2a2f9068363ab0ecb536d8802f
449d555969bfd7befe906877abab098c6e63a0e8
/2072/CH29/EX29.2/EX29_2.sce
b53f3aaee5f4c7b8d7d267ea74302b6697954206
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
201
sce
EX29_2.sce
//Chapter 29 clc //Example 2 //given mp=1.007825 //in u mn=1.008665 //in u md=2.014102 //in u u=931.494 //Mev M=mp+mn delta_m=(M-md) //in u E=delta_m*u disp(E,"Binding energy of Deuteron in Mev is")
de3060f2cca4fe6d937736772d4b631f67888a6d
8217f7986187902617ad1bf89cb789618a90dd0a
/browsable_source/2.4.1/Unix-Windows/scilab-2.4.1/macros/percent/%p_x_r.sci
9041f8d6c252e71bdf44b78ed7c018dfd77c49e0
[ "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
115
sci
%p_x_r.sci
function r=%p_x_r(p,r) // r=%p_x_r(p,r) <=> r=p.*r polynomial.* rational //! // Copyright INRIA r(2)=p.*r(2)
2bb341329fef6831006228e98eca6f476e0b5b5c
449d555969bfd7befe906877abab098c6e63a0e8
/1571/CH10/EX10.8/Chapter10_Example8.sce
458259ed61c3e4728081cdc5a69b080603d35f98
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
475
sce
Chapter10_Example8.sce
clc clear //INPUT t=350;//boiling point temperature in K l=46;//latent heat of vapourisation in cal/gm v1=1/1.6;//intial volume in cc dp=2.3;//change in pressure with temperature in cm of hg/deg.C d=13.6;//specific gravity of mercury g=981;//acceleration due to gravity in cm/sec^2 j=4.2*10^7;//joukes constant in ergs/cal //CALCULTIONS v2=v1+(l*j)/(t*dp*d*g);//specific volume in cc //OUTPUT mprintf('specific volume of vapour of carbon is %3.3f cc',v2)
440e5b67dbc31866ee93c5df51156d0b6a32180c
eb170ee1d8ae193506b5f787d8f41ed4b5f9bbbe
/soatest/TestAssets/Smoke.tst
63e3156949f1b9c6324ec14dfab81af362239435
[]
no_license
parasoft/parabank
eecacfb40cb28bc58ff17b3cd4cb2fdc41fd39ef
8244e9aa32e816a9805ea23237032c6c18d3b247
refs/heads/master
2023-08-08T02:27:09.551455
2023-07-28T22:37:53
2023-07-28T22:37:53
62,080,987
35
45
null
2023-09-08T12:24:58
2016-06-27T19:07:06
Scilab
UTF-8
Scilab
false
false
3,335,686
tst
Smoke.tst
<?xml version="1.0" encoding="UTF-8"?> <SOAtestProject xmlVersion="5" productVersion="10.6.1" displayVersion="2022.2.0"> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <environmentConfig>true</environmentConfig> <EnvironmentConfiguration className="webtool.environment.EnvironmentConfiguration" version="1"> <environmentsSize>1</environmentsSize> <Environment className="webtool.environment.Environment" version="1"> <name>localhost</name> <active>true</active> <variablesSize>12</variablesSize> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFhiZ0N2TldUT2NmUmFtMEFrL2ZmQTRrNExZcHJGZi8vY2pJV3UxZmR6ZEhBOHRpY1gyZEtCUXdwLys0dU12TTBXMDYrSGhRaUN2WFM3ZmlET3BYR0VDZz09</value> <name>BOOKSTORE_SOAP_ENDPOINT</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFhSQm5keFBzY2hOdFc3bU1VcVhXbWtjSzlEN2lMSkMvTEtGaHhCdkM2YXVwUGNqcnNuc090YWxRVHNiZmpzWlI0UTYvZGZMN1JNanRvbGJpd2d6MGkyQT09</value> <name>BOOKSTORE_WSDL</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAGxYN1ZZaTNBaEVFWFhVSklPZEJFK2Q5QmFQVUk1TjhhbE4xOU1RUjNxL2Q0eEpQVWRzeVU1TWhxdmhoZEdlRnpKOGxpVFRLdE1aMFBOVGNOckZVZ0dwMTNCRXduU2ZPd0RNSk9rVWErdXJiRT0=</value> <name>PARABANK_OPEN_API</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFgva1dpMzRYQ05vWWh0RXB2emdsT1EvS0o2MWh2ZTRhbmRyRTRUaGxvWi9qZWllWW9xM0M1Z2xCeFNTdFMyc3M4UWgyb0NRRk9ESHZ6Nkl0SnFyMTdIZz09</value> <name>PARABANK_ENDPOINT</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAEBmQm45RFJpSFYyL3dwaU0rZmY2SkNES1F3Q2xQS3hlN2pDemIzaEtCUUZlYkcxUWlpbm9aTEJwTWNoeUx6cUVt</value> <name>PARABANK_BASE</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAACxIZm80WEwrdWRXc0ZBMFFqV2w3WnlBMkhYOCtNR3ZpM0h1SnhwRWZ3ZnVnPQ==</value> <name>PARABANK_JMS_ENDPOINT</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFhGZnRYSXRabUlLcDEzQ2JlUDNiWWRSZkZacnF5cytOa2NoQkI1NXFhWndXNFNRaml3UWZqZUFiMVhxcWZuMDIzQTJIOVhSTmkwNk5qWmtXVmNrV1FjQT09</value> <name>PARABANK_SOAP_ENDPOINT</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFhhNkorSUhZdGFpSjBZZGYvcWRLWUtOcUFiU3hFdkJHWE5WZ0FtQTVFdDVPc3dXQVhlL1RFNTVpWDhKbGZ3MUZzK1hrU0hiR2krdkdEMmxvejhDNjBjQT09</value> <name>PARABANK_WSDL</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFhzUVZoNWR5L0o2RXBCbkRuTWVudHZSN09WUkZsUVp3YkUvMHhFcThRSXFsK0UwU3htSDkvMXBLQmQxVzlwcis3aENvN3ZXSmdMVVpWQ1BIWnJJM1pJZz09</value> <name>LOANPROCESSOR_SOAP_ENDPOINT</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAGxpczdoWU5QWks3aTVQTkR3c0wxeVBBZ0lCWlhkQ2lMSTIzUVV6WWxvZGVqK0NCUDhQcDY5YlM0UTA3UHFweW1BdVEvaWlkckFvZUwxbGxqWDcxKzdjRHQ0cUJ5YjEyUkJ0SGxEdUJvaXNiZz0=</value> <name>LOANPROCESSOR_WSDL</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFhSNHYvYkpKTnM1aUpIeUN3dzVzR2ZlclNHSzdOdWd4Z211bk91cnRsNmVQTUk4RkphaDNhOTVjbGpJejNpeEZaZjRsTE5Ld1VCL2tWMmxsTDVvczFPZz09</value> <name>BOOKSTORE_DB_URL</name> </EnvironmentVariable> <EnvironmentVariable className="webtool.environment.EnvironmentVariable" version="3"> <maskValue>AwAAABhYcnZKVDV5RklaZlNicG1pUi9yeDR3PT0=</maskValue> <value>AwAAAFh6WHcrKzVVem5aeGRhekJtd284ZkRrODFWcWNuR3JSdFNnc0kxdnRESDdpOXI0NlZ3dWZCOE05dHhOL0toM20yZWd5eGoxWGhvQk1rRXNkYmM3bmtEdz09</value> <name>PARABANK_DB_URL</name> </EnvironmentVariable> </Environment> </EnvironmentConfiguration> <enabled>true</enabled> <name>Test Suite</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <rootTestSuite>true</rootTestSuite> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes>This .tst should be run against a freshly deployed ParaBank Web application or a freshly launched ParaBank Docker container.</notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>2</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>295</nextIdentifier> <testsSize>6</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>97</testID> <enabled>true</enabled> <name>Initialize ParaBank</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>106</testID> <enabled>true</enabled> <name>REST Client</name> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>Login to initialize</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <localName>root</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <attributesSize>1</attributesSize> <AttributeType className="webtool.soap.AttributeType" version="2.3.3"> <hash>3</hash> <name>type</name> <fixed>object</fixed> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>4</hash> </StringType> <required>true</required> </AttributeType> <name>rootType</name> <compositor>true</compositor> <AllCompositor className="webtool.soap.AllCompositor" version="2.1.3.3"> <hash>5</hash> </AllCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <name>anonymous</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> <propertiesSize>2</propertiesSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>john</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>demo</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> </MultiValue> </NameValuePair> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${PARABANK_BASE}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> <showRequestHeaders>true</showRequestHeaders> <showResponseHeaders>true</showResponseHeaders> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/x-www-form-urlencoded</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Table</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <httpMethod>GET</httpMethod> </RESTResourceMethod> <payloadFormat>URL Encoded</payloadFormat> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <selectedIndex>1</selectedIndex> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>12</testID> <enabled>true</enabled> <name>SOAP</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> <useDefault>false</useDefault> <wsdl>http://localhost:8080/parabank/services/store-01?wsdl</wsdl> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> <useDefault>false</useDefault> <endpoint>${ENDPOINT}</endpoint> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> <useDefault>false</useDefault> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>1</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>152</nextIdentifier> <testsSize>4</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>113</testID> <enabled>true</enabled> <name>BookStore</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> <useDefault>false</useDefault> <wsdl>http://localhost:8080/parabank/services/store-01?wsdl</wsdl> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> <useDefault>false</useDefault> <endpoint>${ENDPOINT}</endpoint> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> <useDefault>false</useDefault> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>1</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <testsSize>3</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>118</testID> <enabled>true</enabled> <name>REST Client</name> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>Check BookStore WSDL</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${BOOKSTORE_WSDL}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 18, 2022, 5:57:15 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;wsdl:definitions name=&quot;Bookstore&quot; targetNamespace=&quot;http://bookstore.parasoft.com/&quot; xmlns:ns1=&quot;http://schemas.xmlsoap.org/soap/http&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://bookstore.parasoft.com/&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;wsdl:types&gt; &lt;xs:schema attributeFormDefault=&quot;unqualified&quot; elementFormDefault=&quot;unqualified&quot; targetNamespace=&quot;http://bookstore.parasoft.com/&quot; version=&quot;1.0&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;xs:element name=&quot;addItemToCart&quot; type=&quot;tns:addItemToCart&quot;/&gt; &lt;xs:element name=&quot;addItemToCartResponse&quot; type=&quot;tns:addItemToCartResponse&quot;/&gt; &lt;xs:element name=&quot;addNewItemToInventory&quot; type=&quot;tns:addNewItemToInventory&quot;/&gt; &lt;xs:element name=&quot;addNewItemToInventoryResponse&quot; type=&quot;tns:addNewItemToInventoryResponse&quot;/&gt; &lt;xs:element name=&quot;getItemById&quot; type=&quot;tns:getItemById&quot;/&gt; &lt;xs:element name=&quot;getItemByIdResponse&quot; type=&quot;tns:getItemByIdResponse&quot;/&gt; &lt;xs:element name=&quot;getItemByTitle&quot; type=&quot;tns:getItemByTitle&quot;/&gt; &lt;xs:element name=&quot;getItemByTitleResponse&quot; type=&quot;tns:getItemByTitleResponse&quot;/&gt; &lt;xs:element name=&quot;getItemsInCart&quot; type=&quot;tns:getItemsInCart&quot;/&gt; &lt;xs:element name=&quot;getItemsInCartResponse&quot; type=&quot;tns:getItemsInCartResponse&quot;/&gt; &lt;xs:element name=&quot;submitOrder&quot; type=&quot;tns:submitOrder&quot;/&gt; &lt;xs:element name=&quot;submitOrderResponse&quot; type=&quot;tns:submitOrderResponse&quot;/&gt; &lt;xs:element name=&quot;updateItemInCart&quot; type=&quot;tns:updateItemInCart&quot;/&gt; &lt;xs:element name=&quot;updateItemInCartResponse&quot; type=&quot;tns:updateItemInCartResponse&quot;/&gt; &lt;xs:complexType name=&quot;addNewItemToInventory&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;book&quot;&gt; &lt;xs:complexContent&gt; &lt;xs:extension base=&quot;tns:item&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;authors&quot; nillable=&quot;true&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;description&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;ISBN&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;publicationDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;publisher&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:extension&gt; &lt;/xs:complexContent&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;item&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;price&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;stockQuantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;addNewItemToInventoryResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemsInCart&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemsInCartResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;cart&quot; type=&quot;tns:cartManager&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;cartManager&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;item&quot; nillable=&quot;true&quot; type=&quot;tns:order&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;order&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;xs:element name=&quot;quantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;submitOrder&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;submitOrderResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;orderInformation&quot; type=&quot;tns:submittedOrder&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;submittedOrder&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;orderTime&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element name=&quot;success&quot; type=&quot;xs:boolean&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemByTitle&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;titleKeyword&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemByTitleResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemById&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemByIdResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateItemInCart&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;itemId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;quantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateItemInCartResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;updatedItem&quot; type=&quot;tns:displayOrder&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;displayOrder&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;item&quot; type=&quot;tns:order&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;addItemToCart&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;itemId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;quantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;addItemToCartResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;itemAdded&quot; type=&quot;tns:displayOrder&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:element name=&quot;Exception&quot; type=&quot;tns:Exception&quot;/&gt; &lt;xs:complexType name=&quot;Exception&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:schema&gt; &lt;/wsdl:types&gt; &lt;wsdl:message name=&quot;getItemsInCart&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemsInCart&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;submitOrder&quot;&gt; &lt;wsdl:part element=&quot;tns:submitOrder&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addItemToCartResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:addItemToCartResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemById&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemById&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemByIdResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemByIdResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateItemInCart&quot;&gt; &lt;wsdl:part element=&quot;tns:updateItemInCart&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addNewItemToInventoryResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:addNewItemToInventoryResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemByTitleResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemByTitleResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addNewItemToInventory&quot;&gt; &lt;wsdl:part element=&quot;tns:addNewItemToInventory&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemsInCartResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemsInCartResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemByTitle&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemByTitle&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addItemToCart&quot;&gt; &lt;wsdl:part element=&quot;tns:addItemToCart&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;submitOrderResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:submitOrderResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;Exception&quot;&gt; &lt;wsdl:part element=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateItemInCartResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:updateItemInCartResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:portType name=&quot;Bookstore&quot;&gt; &lt;wsdl:operation name=&quot;addNewItemToInventory&quot;&gt; &lt;wsdl:input message=&quot;tns:addNewItemToInventory&quot; name=&quot;addNewItemToInventory&quot;/&gt; &lt;wsdl:output message=&quot;tns:addNewItemToInventoryResponse&quot; name=&quot;addNewItemToInventoryResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemsInCart&quot;&gt; &lt;wsdl:input message=&quot;tns:getItemsInCart&quot; name=&quot;getItemsInCart&quot;/&gt; &lt;wsdl:output message=&quot;tns:getItemsInCartResponse&quot; name=&quot;getItemsInCartResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;submitOrder&quot;&gt; &lt;wsdl:input message=&quot;tns:submitOrder&quot; name=&quot;submitOrder&quot;/&gt; &lt;wsdl:output message=&quot;tns:submitOrderResponse&quot; name=&quot;submitOrderResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemByTitle&quot;&gt; &lt;wsdl:input message=&quot;tns:getItemByTitle&quot; name=&quot;getItemByTitle&quot;/&gt; &lt;wsdl:output message=&quot;tns:getItemByTitleResponse&quot; name=&quot;getItemByTitleResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemById&quot;&gt; &lt;wsdl:input message=&quot;tns:getItemById&quot; name=&quot;getItemById&quot;/&gt; &lt;wsdl:output message=&quot;tns:getItemByIdResponse&quot; name=&quot;getItemByIdResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateItemInCart&quot;&gt; &lt;wsdl:input message=&quot;tns:updateItemInCart&quot; name=&quot;updateItemInCart&quot;/&gt; &lt;wsdl:output message=&quot;tns:updateItemInCartResponse&quot; name=&quot;updateItemInCartResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;addItemToCart&quot;&gt; &lt;wsdl:input message=&quot;tns:addItemToCart&quot; name=&quot;addItemToCart&quot;/&gt; &lt;wsdl:output message=&quot;tns:addItemToCartResponse&quot; name=&quot;addItemToCartResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name=&quot;BookstoreSoapBinding&quot; type=&quot;tns:Bookstore&quot;&gt; &lt;soap:binding style=&quot;document&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot;/&gt; &lt;wsdl:operation name=&quot;addNewItemToInventory&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;addNewItemToInventory&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;addNewItemToInventoryResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemsInCart&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getItemsInCart&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getItemsInCartResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;submitOrder&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;submitOrder&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;submitOrderResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemByTitle&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getItemByTitle&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getItemByTitleResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemById&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getItemById&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getItemByIdResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateItemInCart&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;updateItemInCart&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;updateItemInCartResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;addItemToCart&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;addItemToCart&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;addItemToCartResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name=&quot;Bookstore&quot;&gt; &lt;wsdl:port binding=&quot;tns:BookstoreSoapBinding&quot; name=&quot;CartServicePort&quot;&gt; &lt;soap:address location=&quot;${BOOKSTORE_SOAP_ENDPOINT}&quot;/&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;wsdl:definitions name=&quot;Bookstore&quot; targetNamespace=&quot;http://bookstore.parasoft.com/&quot; xmlns:ns1=&quot;http://schemas.xmlsoap.org/soap/http&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://bookstore.parasoft.com/&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;wsdl:types&gt; &lt;xs:schema attributeFormDefault=&quot;unqualified&quot; elementFormDefault=&quot;unqualified&quot; targetNamespace=&quot;http://bookstore.parasoft.com/&quot; version=&quot;1.0&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;xs:element name=&quot;addItemToCart&quot; type=&quot;tns:addItemToCart&quot;/&gt; &lt;xs:element name=&quot;addItemToCartResponse&quot; type=&quot;tns:addItemToCartResponse&quot;/&gt; &lt;xs:element name=&quot;addNewItemToInventory&quot; type=&quot;tns:addNewItemToInventory&quot;/&gt; &lt;xs:element name=&quot;addNewItemToInventoryResponse&quot; type=&quot;tns:addNewItemToInventoryResponse&quot;/&gt; &lt;xs:element name=&quot;getItemById&quot; type=&quot;tns:getItemById&quot;/&gt; &lt;xs:element name=&quot;getItemByIdResponse&quot; type=&quot;tns:getItemByIdResponse&quot;/&gt; &lt;xs:element name=&quot;getItemByTitle&quot; type=&quot;tns:getItemByTitle&quot;/&gt; &lt;xs:element name=&quot;getItemByTitleResponse&quot; type=&quot;tns:getItemByTitleResponse&quot;/&gt; &lt;xs:element name=&quot;getItemsInCart&quot; type=&quot;tns:getItemsInCart&quot;/&gt; &lt;xs:element name=&quot;getItemsInCartResponse&quot; type=&quot;tns:getItemsInCartResponse&quot;/&gt; &lt;xs:element name=&quot;submitOrder&quot; type=&quot;tns:submitOrder&quot;/&gt; &lt;xs:element name=&quot;submitOrderResponse&quot; type=&quot;tns:submitOrderResponse&quot;/&gt; &lt;xs:element name=&quot;updateItemInCart&quot; type=&quot;tns:updateItemInCart&quot;/&gt; &lt;xs:element name=&quot;updateItemInCartResponse&quot; type=&quot;tns:updateItemInCartResponse&quot;/&gt; &lt;xs:complexType name=&quot;addNewItemToInventory&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;book&quot;&gt; &lt;xs:complexContent&gt; &lt;xs:extension base=&quot;tns:item&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;authors&quot; nillable=&quot;true&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;description&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;ISBN&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;publicationDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;publisher&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:extension&gt; &lt;/xs:complexContent&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;item&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;price&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;stockQuantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;addNewItemToInventoryResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemsInCart&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemsInCartResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;cart&quot; type=&quot;tns:cartManager&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;cartManager&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;item&quot; nillable=&quot;true&quot; type=&quot;tns:order&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;order&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;xs:element name=&quot;quantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;submitOrder&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;submitOrderResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;orderInformation&quot; type=&quot;tns:submittedOrder&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;submittedOrder&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;orderTime&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element name=&quot;success&quot; type=&quot;xs:boolean&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemByTitle&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;titleKeyword&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemByTitleResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemById&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getItemByIdResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;book&quot; type=&quot;tns:book&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateItemInCart&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;itemId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;quantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateItemInCartResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;updatedItem&quot; type=&quot;tns:displayOrder&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;displayOrder&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;item&quot; type=&quot;tns:order&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;addItemToCart&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;cartId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;itemId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;quantity&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;addItemToCartResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;itemAdded&quot; type=&quot;tns:displayOrder&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:element name=&quot;Exception&quot; type=&quot;tns:Exception&quot;/&gt; &lt;xs:complexType name=&quot;Exception&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:schema&gt; &lt;/wsdl:types&gt; &lt;wsdl:message name=&quot;getItemsInCart&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemsInCart&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;submitOrder&quot;&gt; &lt;wsdl:part element=&quot;tns:submitOrder&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addItemToCartResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:addItemToCartResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemById&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemById&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemByIdResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemByIdResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateItemInCart&quot;&gt; &lt;wsdl:part element=&quot;tns:updateItemInCart&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addNewItemToInventoryResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:addNewItemToInventoryResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemByTitleResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemByTitleResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addNewItemToInventory&quot;&gt; &lt;wsdl:part element=&quot;tns:addNewItemToInventory&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemsInCartResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemsInCartResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getItemByTitle&quot;&gt; &lt;wsdl:part element=&quot;tns:getItemByTitle&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;addItemToCart&quot;&gt; &lt;wsdl:part element=&quot;tns:addItemToCart&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;submitOrderResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:submitOrderResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;Exception&quot;&gt; &lt;wsdl:part element=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateItemInCartResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:updateItemInCartResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:portType name=&quot;Bookstore&quot;&gt; &lt;wsdl:operation name=&quot;addNewItemToInventory&quot;&gt; &lt;wsdl:input message=&quot;tns:addNewItemToInventory&quot; name=&quot;addNewItemToInventory&quot;/&gt; &lt;wsdl:output message=&quot;tns:addNewItemToInventoryResponse&quot; name=&quot;addNewItemToInventoryResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemsInCart&quot;&gt; &lt;wsdl:input message=&quot;tns:getItemsInCart&quot; name=&quot;getItemsInCart&quot;/&gt; &lt;wsdl:output message=&quot;tns:getItemsInCartResponse&quot; name=&quot;getItemsInCartResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;submitOrder&quot;&gt; &lt;wsdl:input message=&quot;tns:submitOrder&quot; name=&quot;submitOrder&quot;/&gt; &lt;wsdl:output message=&quot;tns:submitOrderResponse&quot; name=&quot;submitOrderResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemByTitle&quot;&gt; &lt;wsdl:input message=&quot;tns:getItemByTitle&quot; name=&quot;getItemByTitle&quot;/&gt; &lt;wsdl:output message=&quot;tns:getItemByTitleResponse&quot; name=&quot;getItemByTitleResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemById&quot;&gt; &lt;wsdl:input message=&quot;tns:getItemById&quot; name=&quot;getItemById&quot;/&gt; &lt;wsdl:output message=&quot;tns:getItemByIdResponse&quot; name=&quot;getItemByIdResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateItemInCart&quot;&gt; &lt;wsdl:input message=&quot;tns:updateItemInCart&quot; name=&quot;updateItemInCart&quot;/&gt; &lt;wsdl:output message=&quot;tns:updateItemInCartResponse&quot; name=&quot;updateItemInCartResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;addItemToCart&quot;&gt; &lt;wsdl:input message=&quot;tns:addItemToCart&quot; name=&quot;addItemToCart&quot;/&gt; &lt;wsdl:output message=&quot;tns:addItemToCartResponse&quot; name=&quot;addItemToCartResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:Exception&quot; name=&quot;Exception&quot;/&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name=&quot;BookstoreSoapBinding&quot; type=&quot;tns:Bookstore&quot;&gt; &lt;soap:binding style=&quot;document&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot;/&gt; &lt;wsdl:operation name=&quot;addNewItemToInventory&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;addNewItemToInventory&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;addNewItemToInventoryResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemsInCart&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getItemsInCart&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getItemsInCartResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;submitOrder&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;submitOrder&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;submitOrderResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemByTitle&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getItemByTitle&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getItemByTitleResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getItemById&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getItemById&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getItemByIdResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateItemInCart&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;updateItemInCart&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;updateItemInCartResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;addItemToCart&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;addItemToCart&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;addItemToCartResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;Exception&quot;&gt; &lt;soap:fault name=&quot;Exception&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name=&quot;Bookstore&quot;&gt; &lt;wsdl:port binding=&quot;tns:BookstoreSoapBinding&quot; name=&quot;CartServicePort&quot;&gt; &lt;soap:address location=&quot;${BOOKSTORE_SOAP_ENDPOINT}&quot;/&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>definitions</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>26</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://schemas.xmlsoap.org/soap/http</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>tns</prefix> <uri>http://bookstore.parasoft.com/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Bookstore</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://bookstore.parasoft.com/</value> <name>targetNamespace</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>types</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>schema</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>41</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>attributeFormDefault</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>elementFormDefault</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://bookstore.parasoft.com/</value> <name>targetNamespace</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>1.0</value> <name>version</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addItemToCart</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addItemToCartResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addNewItemToInventory</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addNewItemToInventoryResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemById</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByIdResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByIdResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByTitle</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitleResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByTitleResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemsInCart</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemsInCartResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submitOrder</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrderResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submitOrderResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateItemInCart</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateItemInCartResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>book</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:book</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>book</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexContent</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>extension</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:item</value> <name>base</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>authors</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>true</value> <name>nillable</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>description</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ISBN</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>publicationDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>publisher</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>item</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>id</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>name</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>price</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>stockQuantity</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>book</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:book</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cart</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cartManager</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartManager</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>item</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>true</value> <name>nillable</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:order</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>order</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>book</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:book</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>quantity</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrderResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>orderInformation</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submittedOrder</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submittedOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>orderTime</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>success</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:boolean</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>titleKeyword</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitleResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>book</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:book</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>id</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByIdResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>book</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:book</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>itemId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>quantity</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updatedItem</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:displayOrder</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>displayOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>item</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:order</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cartId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>itemId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>quantity</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>itemAdded</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:displayOrder</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>message</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemsInCart</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submitOrder</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addItemToCartResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemById</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByIdResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByIdResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateItemInCart</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addNewItemToInventoryResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitleResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByTitleResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addNewItemToInventory</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemsInCartResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByTitle</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addItemToCart</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrderResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submitOrderResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateItemInCartResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>portType</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>8</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Bookstore</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addNewItemToInventory</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addNewItemToInventoryResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventoryResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemsInCart</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemsInCartResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCartResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submitOrder</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:submitOrderResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrderResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByTitle</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByTitleResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitleResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemById</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getItemByIdResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByIdResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateItemInCart</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateItemInCartResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCartResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addItemToCart</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:addItemToCartResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCartResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Exception</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>binding</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>10</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>BookstoreSoapBinding</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:Bookstore</value> <name>type</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>binding</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/http</value> <name>transport</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addNewItemToInventoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemsInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrder</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>submitOrderResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitle</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByTitleResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemById</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getItemByIdResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateItemInCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCart</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>addItemToCartResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Exception</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>service</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Bookstore</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>port</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:BookstoreSoapBinding</value> <name>binding</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>CartServicePort</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>address</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <valueColumnName>BOOKSTORE_SOAP_ENDPOINT</valueColumnName> <value>${BOOKSTORE_SOAP_ENDPOINT}</value> <name>location</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <httpMethod>GET</httpMethod> </RESTResourceMethod> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <selectedIndex>1</selectedIndex> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>114</testID> <enabled>true</enabled> <name>getItemById</name> <performanceGroup>2</performanceGroup> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <iconName>SOAPClient</iconName> <name>getItemById</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-01?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 15, 2022, 11:28:06 AM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByIdResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;C++ How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;99.99&lt;/price&gt; &lt;stockQuantity&gt;20&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;One of the best C++ books&lt;/description&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;publicationDate&gt;2002-08-12T00:00:00Z&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByIdResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByIdResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;C++ How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;99.99&lt;/price&gt; &lt;stockQuantity&gt;20&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;One of the best C++ books&lt;/description&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;publicationDate&gt;2002-08-12T00:00:00Z&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByIdResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemByIdResponse</name> <namespace>true</namespace> <prefix>ns2</prefix> <uri>http://bookstore.parasoft.com/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns2</prefix> <uri>http://bookstore.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>book</name> <showAttributes>true</showAttributes> <childNodesSize>11</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>1</value> <name>id</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>C++ How to Program (4th Edition)</value> <name>name</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>99.99</value> <name>price</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>20</value> <name>stockQuantity</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Harvey M. Deitel</value> <name>authors</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Paul J. Deitel</value> <name>authors</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>One of the best C++ books</value> <name>description</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0130384747</value> <name>ISBN</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2002-08-12T00:00:00Z</value> <name>publicationDate</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Prentice Hall</value> <name>publisher</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> <numIgnoredXPaths>1</numIgnoredXPaths> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByIdResponse/book/publicationDate</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Test client for operation &quot;getItemById&quot; in &quot;${WSDL}&quot;.</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${BOOKSTORE_WSDL}</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <SOAPClient_CustomEndpoint>${BOOKSTORE_SOAP_ENDPOINT}</SOAPClient_CustomEndpoint> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-01</value> </SimpleValue> </WsdlEndpointType> <mode>2</mode> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>12</size> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval(in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <beautify>false</beautify> <longName>getItemById</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemByIdResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-01</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>getItemByIdResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>getItemByIdResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <localName>book</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>book</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>9</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>8</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <minOccurs>0</minOccurs> <localName>name</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>10</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>11</hash> <minOccurs>0</minOccurs> <localName>price</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>12</hash> </DecimalType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>13</hash> <localName>stockQuantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>14</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>15</hash> <minOccurs>0</minOccurs> <maxOccurs>-1</maxOccurs> <nillable>true</nillable> <localName>authors</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>16</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>17</hash> <minOccurs>0</minOccurs> <localName>description</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>16</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>18</hash> <minOccurs>0</minOccurs> <localName>ISBN</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>16</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>19</hash> <minOccurs>0</minOccurs> <localName>publicationDate</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>20</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>21</hash> <minOccurs>0</minOccurs> <localName>publisher</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>16</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemById</inputName> <methodName>getItemById</methodName> <returnType>{http://bookstore.parasoft.com/}getItemByIdResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>getItemById</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>getItemById</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>5</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>1</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Body&gt;&lt;getItemById xmlns=&quot;http://bookstore.parasoft.com/&quot;&gt;&lt;id xmlns=&quot;&quot;&gt;0&lt;/id&gt;&lt;/getItemById&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemById</name> <namespace>true</namespace> <uri>http://bookstore.parasoft.com/</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <uri>http://bookstore.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0</value> <name>id</name> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>115</testID> <enabled>true</enabled> <name>getItemByTitle</name> <performanceGroup>3</performanceGroup> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <iconName>SOAPClient</iconName> <name>getItemByTitle</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-01?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 15, 2022, 11:28:16 AM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByTitleResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;2&lt;/id&gt; &lt;name&gt;Java How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;76.00&lt;/price&gt; &lt;stockQuantity&gt;10&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;Great for Java beginners&lt;/description&gt; &lt;ISBN&gt;0130341517&lt;/ISBN&gt; &lt;publicationDate&gt;2001-08-08T00:00:00Z&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;book&gt; &lt;id&gt;3&lt;/id&gt; &lt;name&gt;Java in a Nutshell, Fourth Edition&lt;/name&gt; &lt;price&gt;27.97&lt;/price&gt; &lt;stockQuantity&gt;5&lt;/stockQuantity&gt; &lt;authors&gt;David Flanagan&lt;/authors&gt; &lt;description&gt;contains an accelerated introduction to the Java programming language and its key APIs so you can start writing code right away. Covers Java 1.4&lt;/description&gt; &lt;ISBN&gt;0596002831&lt;/ISBN&gt; &lt;publicationDate&gt;2002-03-01T00:00:00Z&lt;/publicationDate&gt; &lt;publisher&gt;O&#39;Reilly &amp;amp; Associates&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByTitleResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByTitleResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;2&lt;/id&gt; &lt;name&gt;Java How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;76.00&lt;/price&gt; &lt;stockQuantity&gt;10&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;Great for Java beginners&lt;/description&gt; &lt;ISBN&gt;0130341517&lt;/ISBN&gt; &lt;publicationDate&gt;2001-08-08T00:00:00Z&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;book&gt; &lt;id&gt;3&lt;/id&gt; &lt;name&gt;Java in a Nutshell, Fourth Edition&lt;/name&gt; &lt;price&gt;27.97&lt;/price&gt; &lt;stockQuantity&gt;5&lt;/stockQuantity&gt; &lt;authors&gt;David Flanagan&lt;/authors&gt; &lt;description&gt;contains an accelerated introduction to the Java programming language and its key APIs so you can start writing code right away. Covers Java 1.4&lt;/description&gt; &lt;ISBN&gt;0596002831&lt;/ISBN&gt; &lt;publicationDate&gt;2002-03-01T00:00:00Z&lt;/publicationDate&gt; &lt;publisher&gt;O&#39;Reilly &amp;amp; Associates&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByTitleResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemByTitleResponse</name> <namespace>true</namespace> <prefix>ns2</prefix> <uri>http://bookstore.parasoft.com/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns2</prefix> <uri>http://bookstore.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>book</name> <showAttributes>true</showAttributes> <childNodesSize>11</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2</value> <name>id</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Java How to Program (4th Edition)</value> <name>name</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>77.00</value> <name>price</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>10</value> <name>stockQuantity</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Harvey M. Deitel</value> <name>authors</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Paul J. Deitel</value> <name>authors</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Great for Java beginners</value> <name>description</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0130341517</value> <name>ISBN</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2001-08-08T00:00:00Z</value> <name>publicationDate</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Prentice Hall</value> <name>publisher</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>book</name> <showAttributes>true</showAttributes> <childNodesSize>10</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>3</value> <name>id</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Java in a Nutshell, Fourth Edition</value> <name>name</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>28.97</value> <name>price</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>5</value> <name>stockQuantity</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>David Flanagan</value> <name>authors</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>contains an accelerated introduction to the Java programming language and its key APIs so you can start writing code right away. Covers Java 1.4</value> <name>description</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0596002831</value> <name>ISBN</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2002-03-01T00:00:00Z</value> <name>publicationDate</name> <showAttributes>true</showAttributes> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>O&#39;Reilly &amp; Associates</value> <name>publisher</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> <soapParameter>true</soapParameter> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>getItemByTitleResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>getItemByTitleResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <maxOccurs>-1</maxOccurs> <localName>book</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>book</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>9</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>8</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <minOccurs>0</minOccurs> <localName>name</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>10</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>11</hash> <minOccurs>0</minOccurs> <localName>price</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>12</hash> </DecimalType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>13</hash> <localName>stockQuantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>14</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>15</hash> <minOccurs>0</minOccurs> <maxOccurs>-1</maxOccurs> <nillable>true</nillable> <localName>authors</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>16</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>17</hash> <minOccurs>0</minOccurs> <localName>description</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>10</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>18</hash> <minOccurs>0</minOccurs> <localName>ISBN</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>10</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>19</hash> <minOccurs>0</minOccurs> <localName>publicationDate</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>20</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>21</hash> <minOccurs>0</minOccurs> <localName>publisher</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>22</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> <numIgnoredXPaths>4</numIgnoredXPaths> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/book[1]/publicationDate</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/book[2]/publicationDate</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/book[1]/price</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/book[2]/price</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Test client for operation &quot;getItemByTitle&quot; in &quot;${WSDL}&quot;.</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${BOOKSTORE_WSDL}</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <SOAPClient_CustomEndpoint>${BOOKSTORE_SOAP_ENDPOINT}</SOAPClient_CustomEndpoint> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-01</value> </SimpleValue> </WsdlEndpointType> <mode>2</mode> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>12</size> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval(in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <beautify>false</beautify> <longName>getItemByTitle</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemByTitleResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-01</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemByTitleResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemByTitle</inputName> <methodName>getItemByTitle</methodName> <returnType>{http://bookstore.parasoft.com/}getItemByTitleResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>getItemByTitle</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>getItemByTitle</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <localName>titleKeyword</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>5</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <allowArrayExclude>true</allowArrayExclude> <value>Java</value> </StringValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Body&gt;&lt;getItemByTitle xmlns=&quot;http://bookstore.parasoft.com/&quot;/&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemByTitle</name> <namespace>true</namespace> <uri>http://bookstore.parasoft.com/</uri> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <uri>http://bookstore.parasoft.com/</uri> </XMLNamespaceNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>253</testID> <loadTestConfig>true</loadTestConfig> <SimulatorConfiguration className="com.parasoft.simulator.SimulatorConfiguration" version="21"> <DependenciesConfiguration className="com.parasoft.simulator.dependencies.DependenciesConfiguration" version="1"> <DependencySetSelection className="com.parasoft.simulator.api.dependency.DependencySetSelection" version="1"> </DependencySetSelection> </DependenciesConfiguration> <RequirementsTrackingConfig className="com.parasoft.simulator.RequirementsTrackingConfig" version="1"> </RequirementsTrackingConfig> <StopMonitor className="com.parasoft.simulator.stop.StopMonitor" version="1"> <stopMethodDefined>true</stopMethodDefined> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </StopMonitor> <StopSequenceConfig className="com.parasoft.simulator.StopSequenceConfig" version="2"> <stopType>2</stopType> </StopSequenceConfig> <SimDefaultOptions className="com.parasoft.simulator.SimDefaultOptions" version="1"> </SimDefaultOptions> <MonitorContainer className="com.parasoft.simulator.MonitorContainer" version="11"> </MonitorContainer> <viewConfig>true</viewConfig> <LoadTestViewConfig className="webtool.loadtest.sim.view.LoadTestViewConfig" version="10"> <unselectedGraphs size="3"> <unselectedGraph index="0">Avg. Execution Time (ms)</unselectedGraph> <unselectedGraph index="1">Max. Execution Time (ms)</unselectedGraph> <unselectedGraph index="2">Min. Execution Time (ms)</unselectedGraph> </unselectedGraphs> <ProgressViewContainerConfig className="webtool.loadtest.sim.view.progress.ProgressViewContainerConfig" version="3"> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>4</layout> </ProgressViewContainerLayout> <highThroughputLayoutsSize>5</highThroughputLayoutsSize> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>5</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="9"> <windowIndex index="0">8</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="1">7</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="2">6</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="2" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Max. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="3">5</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="3" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Min. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="4">4</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="4" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Total Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="5">3</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="5" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="6">2</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="6" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Total Tests Start Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="7">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="7" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Tests Completion Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="8" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Total Tests Completion Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>4</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="4"> <windowIndex index="0">3</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Total Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="1">2</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="2">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="2" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Verified Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="3" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Total Tests Completion Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>3</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="2"> <windowIndex index="0">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Verified Min. Execution Time (ms)</graphTitle> <graphTitle index="1">Verified Max. Execution Time (ms)</graphTitle> <graphTitle index="2">Verified Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Total Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="1">Verified Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="2">Verified Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>2</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="2"> <windowIndex index="0">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Verified Min. Execution Time (ms)</graphTitle> <graphTitle index="1">Verified Max. Execution Time (ms)</graphTitle> <graphTitle index="2">Verified Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Total Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="1">Verified Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="2">Verified Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>1</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="1"> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Total Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="1">Verified Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="2">Verified Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <layoutsSize>5</layoutsSize> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>5</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="9"> <windowIndex index="0">8</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="1">7</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="2">6</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="2" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="3">5</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="3" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Max. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="4">4</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="4" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Min. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="5">3</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="5" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="6">2</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="6" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="7">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="7" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Tests Completion Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="8" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Tests Start Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>4</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="4"> <windowIndex index="0">3</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="1">2</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <windowIndex index="2">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="2" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Test Error Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="3" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="1"> <graphTitle index="0">Tests Completion Rate (1/sec)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>3</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="2"> <windowIndex index="0">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Min. Execution Time (ms)</graphTitle> <graphTitle index="1">Max. Execution Time (ms)</graphTitle> <graphTitle index="2">Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Tests Start Rate (1/sec)</graphTitle> <graphTitle index="1">Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="2">Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>2</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="2"> <windowIndex index="0">1</windowIndex> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Min. Execution Time (ms)</graphTitle> <graphTitle index="1">Max. Execution Time (ms)</graphTitle> <graphTitle index="2">Avg. Execution Time (ms)</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="1" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Tests Start Rate (1/sec)</graphTitle> <graphTitle index="1">Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="2">Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> <ProgressViewContainerLayout className="webtool.loadtest.sim.view.progress.ProgressViewContainerLayout" version="1"> <layout>1</layout> </ProgressViewContainerLayout> <ProgressViewLayoutConfig className="webtool.loadtest.sim.view.progress.ProgressViewLayoutConfig" version="2"> <windows size="1"> <ProgressViewTileConfig className="webtool.loadtest.sim.view.progress.ProgressViewTileConfig" index="0" version="5"> <OutputFilterViewConfig className="com.parasoft.simulator.output.view.filter.OutputFilterViewConfig" version="1"> <FilterTreeViewConfig className="com.parasoft.simulator.output.view.filter.FilterTreeViewConfig" version="1"> </FilterTreeViewConfig> </OutputFilterViewConfig> <graphTitles size="3"> <graphTitle index="0">Tests Completion Rate (1/sec)</graphTitle> <graphTitle index="1">Test Error Rate (1/sec)</graphTitle> <graphTitle index="2">Virtual Users</graphTitle> </graphTitles> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </ProgressViewTileConfig> </windows> </ProgressViewLayoutConfig> </ProgressViewContainerConfig> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> <colors size="1"> <title index="0">Test Error Rate (1/sec)</title> <colorRed index="0">255</colorRed> <colorAlpha index="0">255</colorAlpha> </colors> </ColorContainer> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> </LoadTestViewConfig> <rawOutputConfig>true</rawOutputConfig> <DetailedReportConfiguration className="webtool.loadtest.sim.DetailedReportConfiguration" version="1.4"> <RunnableOutputConfig className="com.parasoft.simulator.output.raw.RunnableOutputConfig" version="1"> <limitValue>300</limitValue> </RunnableOutputConfig> </DetailedReportConfiguration> <outputViewConfig>true</outputViewConfig> <LoadTestOutputViewConfig className="webtool.loadtest.sim.view.LoadTestOutputViewConfig" version="9"> <CommonTestOutputTableViewFactory className="com.parasoft.simulator.output.view.CommonTestOutputTableViewFactory" version="1.4.1"> <visibleColumns size="13"> <visibleColumn index="0">1001</visibleColumn> <visibleColumn index="1">1002</visibleColumn> <visibleColumn index="2">1003</visibleColumn> <visibleColumn index="3">1004</visibleColumn> <visibleColumn index="4">1005</visibleColumn> <visibleColumn index="5">1006</visibleColumn> <visibleColumn index="6">1007</visibleColumn> <visibleColumn index="7">1008</visibleColumn> <visibleColumn index="8">1009</visibleColumn> <visibleColumn index="9">1012</visibleColumn> <visibleColumn index="10">1017</visibleColumn> <visibleColumn index="11">1018</visibleColumn> <visibleColumn index="12">1020</visibleColumn> </visibleColumns> </CommonTestOutputTableViewFactory> <UnverifiedModeReportViewFactory className="webtool.loadtest.sim.view.UnverifiedModeReportViewFactory" version="1.4.1"> <visibleColumns size="9"> <visibleColumn index="0">1001</visibleColumn> <visibleColumn index="1">1002</visibleColumn> <visibleColumn index="2">1003</visibleColumn> <visibleColumn index="3">1004</visibleColumn> <visibleColumn index="4">1005</visibleColumn> <visibleColumn index="5">1006</visibleColumn> <visibleColumn index="6">1007</visibleColumn> <visibleColumn index="7">1008</visibleColumn> <visibleColumn index="8">1009</visibleColumn> </visibleColumns> </UnverifiedModeReportViewFactory> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> <ExtendedControlsOptions className="webtool.loadtest.sim.view.ExtendedControlsOptions" version="2"> <useProjectValues>true</useProjectValues> <averageValue>1</averageValue> <averageLimit>10</averageLimit> </ExtendedControlsOptions> <ColorContainer className="webtool.loadtest.sim.view.ColorContainer" version="2"> </ColorContainer> <TestReportViewFactory className="webtool.loadtest.sim.view.TestReportViewFactory" version="1.4.2"> <visibleColumns size="9"> <visibleColumn index="0">1001</visibleColumn> <visibleColumn index="1">1002</visibleColumn> <visibleColumn index="2">1003</visibleColumn> <visibleColumn index="3">1004</visibleColumn> <visibleColumn index="4">1005</visibleColumn> <visibleColumn index="5">1006</visibleColumn> <visibleColumn index="6">1007</visibleColumn> <visibleColumn index="7">1008</visibleColumn> <visibleColumn index="8">1009</visibleColumn> </visibleColumns> </TestReportViewFactory> <SOAPRPCReportViewFactory className="webtool.loadtest.sim.view.SOAPRPCReportViewFactory" version="1.4.2.1"> <visibleColumns size="8"> <visibleColumn index="0">1001</visibleColumn> <visibleColumn index="1">1002</visibleColumn> <visibleColumn index="2">1003</visibleColumn> <visibleColumn index="3">1006</visibleColumn> <visibleColumn index="4">1007</visibleColumn> <visibleColumn index="5">2003</visibleColumn> <visibleColumn index="6">2006</visibleColumn> <visibleColumn index="7">2009</visibleColumn> </visibleColumns> </SOAPRPCReportViewFactory> </LoadTestOutputViewConfig> <profilesSize>1</profilesSize> <AgentGroup className="com.parasoft.simulator.AgentGroup" version="7"> <ProfileRunnableMap className="com.parasoft.simulator.api.ProfileRunnableMap" version="4"> </ProfileRunnableMap> <id>Default User</id> <RealTimeAgentCreator className="com.parasoft.simulator.RealTimeAgentCreator" version="4.3"> <invocationPeriod>1500</invocationPeriod> </RealTimeAgentCreator> </AgentGroup> <enabledInstancesSize>1</enabledInstancesSize> <InstanceInfo className="com.parasoft.simulator.InstanceInfo" version="3"> <InstanceNetworkConfig className="com.parasoft.simulator.ip.InstanceNetworkConfig" version="1"> </InstanceNetworkConfig> <host>localhost</host> </InstanceInfo> <scenariosSize>2</scenariosSize> <Scenario className="com.parasoft.simulator.Scenario" version="11"> <metricsSize>1</metricsSize> <ReferenceMetric className="webtool.loadtest.sim.qos.metric.ReferenceMetric" version="3.2"> <name>Common</name> <details>Details</details> <theReference>true</theReference> <RelativeLocation className="com.parasoft.util.RelativeLocation" version="1.4"> <path>..\..\..\loadtester\metrics\common.ms</path> </RelativeLocation> </ReferenceMetric> <hitRandType>1</hitRandType> <durationSec>180</durationSec> <name>Steady Users</name> <enabledInstanceScenariosSize>1</enabledInstanceScenariosSize> <InstanceScenario className="com.parasoft.simulator.InstanceScenario" version="2"> <StopSequenceConfig className="com.parasoft.simulator.StopSequenceConfig" version="2"> <stopType>2</stopType> </StopSequenceConfig> <InstanceInfo className="com.parasoft.simulator.InstanceInfo" version="3"> <InstanceNetworkConfig className="com.parasoft.simulator.ip.InstanceNetworkConfig" version="1"> </InstanceNetworkConfig> <host>localhost</host> </InstanceInfo> <ConstThreadsAgentRunner className="com.parasoft.simulator.ConstThreadsAgentRunner" version="2"> <qSize>1000</qSize> </ConstThreadsAgentRunner> <RandomStaticProfileScheduler className="com.parasoft.simulator.RandomStaticProfileScheduler" version="1.2"> <weights size="1"> <key index="0">Default User</key> <LinearInterpolator className="com.parasoft.simulator.graph.LinearInterpolator" index="0" version="1.1"> <id>Default User</id> <KeySet className="com.parasoft.simulator.graph.KeySet" version="1"> <keysSize>1</keysSize> <Key className="com.parasoft.simulator.graph.Key" version="1"> <value>1.0</value> </Key> </KeySet> </LinearInterpolator> </weights> <SimpleStaticAgentScheduler className="com.parasoft.simulator.SimpleStaticAgentScheduler" version="2"> <AgentSchedulerHpsLimit className="com.parasoft.simulator.AgentSchedulerHpsLimit" version="1"> </AgentSchedulerHpsLimit> <LinearInterpolator className="com.parasoft.simulator.graph.LinearInterpolator" version="1.1"> <id>localhost</id> <KeySet className="com.parasoft.simulator.graph.KeySet" version="1"> <keysSize>1</keysSize> <Key className="com.parasoft.simulator.graph.Key" version="1"> <value>10.0</value> </Key> </KeySet> </LinearInterpolator> </SimpleStaticAgentScheduler> </RandomStaticProfileScheduler> </InstanceScenario> </Scenario> <Scenario className="com.parasoft.simulator.Scenario" version="11"> <metricsSize>1</metricsSize> <ReferenceMetric className="webtool.loadtest.sim.qos.metric.ReferenceMetric" version="3.2"> <name>Common</name> <details>There were failures!</details> <theReference>true</theReference> <RelativeLocation className="com.parasoft.util.RelativeLocation" version="1.4"> <path>..\..\..\loadtester\metrics\common.ms</path> </RelativeLocation> </ReferenceMetric> <hitRandType>1</hitRandType> <durationSec>180</durationSec> <name>Steady Hits</name> <enabledInstanceScenariosSize>1</enabledInstanceScenariosSize> <InstanceScenario className="com.parasoft.simulator.InstanceScenario" version="2"> <StopSequenceConfig className="com.parasoft.simulator.StopSequenceConfig" version="2"> <stopType>2</stopType> </StopSequenceConfig> <InstanceInfo className="com.parasoft.simulator.InstanceInfo" version="3"> <InstanceNetworkConfig className="com.parasoft.simulator.ip.InstanceNetworkConfig" version="1"> </InstanceNetworkConfig> <host>localhost</host> </InstanceInfo> <ConstThreadsAgentRunner className="com.parasoft.simulator.ConstThreadsAgentRunner" version="2"> <qSize>1000</qSize> </ConstThreadsAgentRunner> <RandomStaticProfileScheduler className="com.parasoft.simulator.RandomStaticProfileScheduler" version="1.2"> <weights size="1"> <key index="0">Default User</key> <LinearInterpolator className="com.parasoft.simulator.graph.LinearInterpolator" index="0" version="1.1"> <id>Default User</id> <KeySet className="com.parasoft.simulator.graph.KeySet" version="1"> <keysSize>1</keysSize> <Key className="com.parasoft.simulator.graph.Key" version="1"> <value>1.0</value> </Key> </KeySet> </LinearInterpolator> </weights> <SimpleStaticAgentScheduler className="com.parasoft.simulator.SimpleStaticAgentScheduler" version="2"> <AgentSchedulerHpsLimit className="com.parasoft.simulator.AgentSchedulerHpsLimit" version="1"> </AgentSchedulerHpsLimit> <LinearInterpolator className="com.parasoft.simulator.graph.LinearInterpolator" version="1.1"> <id>localhost</id> <KeySet className="com.parasoft.simulator.graph.KeySet" version="1"> <keysSize>1</keysSize> <Key className="com.parasoft.simulator.graph.Key" version="1"> <value>3.0</value> </Key> </KeySet> </LinearInterpolator> </SimpleStaticAgentScheduler> </RandomStaticProfileScheduler> </InstanceScenario> </Scenario> <currentScenarioIndex>1</currentScenarioIndex> </SimulatorConfiguration> <enabled>true</enabled> <name>BookStore - WS-Security</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> <showAllIterations>false</showAllIterations> </AdvancedExecutionOptions> <profiles size="1"> <profile index="0">Default User</profile> </profiles> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes></notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <useDefault>false</useDefault> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> <useDefault>false</useDefault> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>10</maxProfileMappingID> <testSuiteLogic>true</testSuiteLogic> <TestSuiteLogic className="webtool.test.logic.TestSuiteLogic" version="1.3"> </TestSuiteLogic> <testLogicVariablesSize>1</testLogicVariablesSize> <TestLogicInteger className="webtool.test.logic.TestLogicInteger" version="1.1.1"> <name>cartId</name> <TestLogicVariableInteger className="webtool.test.logic.TestLogicVariableInteger" version="1.3.1"> <useLocalValue>true</useLocalValue> </TestLogicVariableInteger> </TestLogicInteger> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <keyStoreDatasSize>1</keyStoreDatasSize> <KeyStoreData className="webtool.security.KeyStoreData" version="2.10"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <privateKeyPassword>true</privateKeyPassword> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAACxGNFhGZ1d4VmtkbGxER09rOTdycUFwblgxd1Qvdkh3Z1F5cVI5elc4MytjPQ==</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <publicKeyPassword>true</publicKeyPassword> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <privateStorePassword>true</privateStorePassword> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAACxGNFhGZ1d4VmtkbGxER09rOTdycUFwblgxd1Qvdkh3Z1F5cVI5elc4MytjPQ==</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <publicStorePassword>true</publicStorePassword> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <certificateStorePassword>true</certificateStorePassword> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAACxGNFhGZ1d4VmtkbGxER09rOTdycUFwblgxd1Qvdkh3Z1F5cVI5elc4MytjPQ==</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <privateKeyAlias>true</privateKeyAlias> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>soatest</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <publicKeyAlias>true</publicKeyAlias> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <certificateAlias>true</certificateAlias> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>soatest</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <privateStoreType>true</privateStoreType> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PKCS12</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <publicStoreType>true</publicStoreType> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PKCS12</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <certificateStoreType>true</certificateStoreType> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PKCS12</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <privateStorePath>true</privateStorePath> <RelativeLocationMultiValue className="webtool.data.RelativeLocationMultiValue" version="1.1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> <location>true</location> <RelativeLocation className="com.parasoft.util.RelativeLocation" version="1.4"> <path>keystores\soatest.pfx</path> </RelativeLocation> </RelativeLocationTestValue> <ParameterizedTestBooleanValue className="webtool.data.ParameterizedTestBooleanValue" version="1.3.1"> <boolValueLabel>Persist as relative path</boolValueLabel> </ParameterizedTestBooleanValue> </RelativeLocationMultiValue> <publicStorePath>true</publicStorePath> <RelativeLocationMultiValue className="webtool.data.RelativeLocationMultiValue" version="1.1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestBooleanValue className="webtool.data.ParameterizedTestBooleanValue" version="1.3.1"> <boolValueLabel>Persist as relative path</boolValueLabel> </ParameterizedTestBooleanValue> </RelativeLocationMultiValue> <certificateStorePath>true</certificateStorePath> <RelativeLocationMultiValue className="webtool.data.RelativeLocationMultiValue" version="1.1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> <location>true</location> <RelativeLocation className="com.parasoft.util.RelativeLocation" version="1.4"> <path>keystores\soatest.pfx</path> </RelativeLocation> </RelativeLocationTestValue> <ParameterizedTestBooleanValue className="webtool.data.ParameterizedTestBooleanValue" version="1.3.1"> <boolValueLabel>Persist as relative path</boolValueLabel> </ParameterizedTestBooleanValue> </RelativeLocationMultiValue> <name>Store</name> </KeyStoreData> <nextIdentifier>190</nextIdentifier> <dataSourcesSize>1</dataSourcesSize> <DataSource className="com.parasoft.data.DataSource" version="1.20"> <id>ds_-531229287_1669675553178_466849195</id> <TableDataSourceImpl className="com.parasoft.data.TableDataSourceImpl" version="1.3.5"> <SpreadsheetModel className="com.parasoft.data.SpreadsheetModel" version="1.4"> <columnIdentifiers> <columnIdentifier index="0">id</columnIdentifier> <columnIdentifier index="1">quantity</columnIdentifier> </columnIdentifiers> <rows> <rowValues index="0"> <rowValue index="0">1</rowValue> <rowValue index="1">2</rowValue> </rowValues> <rowValues index="1"> <rowValue index="0">2</rowValue> <rowValue index="1">5</rowValue> </rowValues> <rowValues index="2"> <rowValue index="0">3</rowValue> <rowValue index="1">1</rowValue> </rowValues> <rowValues index="3"> <rowValue index="0">4</rowValue> <rowValue index="1">1</rowValue> </rowValues> <rowValues index="4"> <rowValue index="0">5</rowValue> <rowValue index="1">7</rowValue> </rowValues> <rowValues index="5"> <rowValue index="0">6</rowValue> <rowValue index="1">2</rowValue> </rowValues> <rowValues index="6"> <rowValue index="0">6</rowValue> <rowValue index="1">1</rowValue> </rowValues> </rows> </SpreadsheetModel> </TableDataSourceImpl> <name>Orders by IDs</name> <useAllRows>true</useAllRows> </DataSource> <treeState>true</treeState> <TreeState className="com.parasoft.swing.TreeState" version="1"> <expandedRowsSize>16</expandedRowsSize> <expandedRow>1</expandedRow> <expandedRow>3</expandedRow> <expandedRow>5</expandedRow> <expandedRow>6</expandedRow> <expandedRow>10</expandedRow> <expandedRow>13</expandedRow> <expandedRow>14</expandedRow> <expandedRow>16</expandedRow> <expandedRow>18</expandedRow> <expandedRow>22</expandedRow> <expandedRow>23</expandedRow> <expandedRow>31</expandedRow> <expandedRow>32</expandedRow> <expandedRow>40</expandedRow> <expandedRow>41</expandedRow> <selectionRowsSize>1</selectionRowsSize> </TreeState> <toolsSize>5</toolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Encrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_OAEPEncryption className="webtool.xml.encryption.RSA_OAEPEncryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_OAEPEncryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> <keyIdentifierType>2</keyIdentifierType> <mustUnderstand>true</mustUnderstand> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> <Signer className="webtool.xml.signature.Signer" version="v.2.10.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLSigner</iconName> <name>Sign</name> <SignerKeyInfoForm className="webtool.xml.signature.SignerKeyInfoForm" version="1.1"> </SignerKeyInfoForm> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <emulationMode>2</emulationMode> <keyIdentifierType>2</keyIdentifierType> <mustUnderstand>true</mustUnderstand> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <keyStoreDataName>Store</keyStoreDataName> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <name>Signed XML Document</name> </NamedXMLToolOutputProvider> </Signer> <Signer className="webtool.xml.signature.Signer" version="v.2.10.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLSigner</iconName> <name>Sign and Encrypt</name> <SignerKeyInfoForm className="webtool.xml.signature.SignerKeyInfoForm" version="1.1"> </SignerKeyInfoForm> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <keyStoreDataName>Store</keyStoreDataName> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Encrypt</name> </ToolNamedObjectReference> </ToolReference> <name>Signed XML Document</name> </NamedXMLToolOutputProvider> </Signer> <Verifier className="webtool.xml.signature.Verifier" version="v.2.6.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLSignatureVerifier</iconName> <name>Verify</name> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>2</action> </WSSecurityOptions> <useKeyStore>true</useKeyStore> <keyStoreDataName>Store</keyStoreDataName> <ErrorViewOutputProvider className="webtool.errview.ErrorViewOutputProvider" version="1.1.2.1"> <name>Messages</name> </ErrorViewOutputProvider> <MIMESpecificNamedToolOutputProvider className="webtool.tool.MIMESpecificNamedToolOutputProvider" version="1.2.2.1"> <name>Principal Output</name> <type>text/plain</type> </MIMESpecificNamedToolOutputProvider> </Verifier> <testsSize>4</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>274</testID> <enabled>true</enabled> <name>Username Token</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> <showAllIterations>false</showAllIterations> </AdvancedExecutionOptions> <profiles size="1"> <profile index="0">Default User</profile> </profiles> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <useDefault>false</useDefault> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>1</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>3</nextIdentifier> <dataSourcesSize>1</dataSourcesSize> <DataSource className="com.parasoft.data.DataSource" version="1.20"> <id>Table: Auth Data</id> <useLimitedExcelDataFormats>true</useLimitedExcelDataFormats> <fileFilter>*</fileFilter> <TableDataSourceImpl className="com.parasoft.data.TableDataSourceImpl" version="1.3.5"> <SpreadsheetModel className="com.parasoft.data.SpreadsheetModel" version="1.4"> <columnIdentifiers> <columnIdentifier index="0">username</columnIdentifier> <columnIdentifier index="1">password</columnIdentifier> <columnIdentifier index="2">C</columnIdentifier> </columnIdentifiers> <rows> <rowValues index="0"> <rowValue index="0">soaptest</rowValue> <rowValue index="1">soaptest</rowValue> </rowValues> <rowValues index="1"> <rowValue index="0">soaptest</rowValue> <rowValue index="1">wrong</rowValue> </rowValues> <rowValues index="2"> <rowValue index="0">wrong</rowValue> <rowValue index="1">soaptest</rowValue> </rowValues> <rowValues index="3"> <rowValue index="0">wrong</rowValue> <rowValue index="1">wrong</rowValue> </rowValues> <rowValues index="4"> <rowValue index="0">admin</rowValue> <rowValue index="1">admin</rowValue> </rowValues> <rowValues index="5"> <rowValue index="0">admin</rowValue> <rowValue index="1">wrong</rowValue> </rowValues> <rowValues index="6"> <rowValue index="0">wrong</rowValue> <rowValue index="1">admin</rowValue> </rowValues> </rows> </SpreadsheetModel> </TableDataSourceImpl> <name>Auth Data</name> <useAllRows>true</useAllRows> <lastRow>-1</lastRow> </DataSource> <treeState>true</treeState> <TreeState className="com.parasoft.swing.TreeState" version="1"> <expandedRowsSize>7</expandedRowsSize> <expandedRow>1</expandedRow> <expandedRow>3</expandedRow> <expandedRow>4</expandedRow> <expandedRow>7</expandedRow> <expandedRow>10</expandedRow> <expandedRow>13</expandedRow> <selectionRowsSize>1</selectionRowsSize> <selectionRow>3</selectionRow> </TreeState> <testsSize>1</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>275</testID> <enabled>true</enabled> <name>SearchBooks</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> <showAllIterations>false</showAllIterations> </AdvancedExecutionOptions> <profiles size="1"> <profile index="0">Default User</profile> </profiles> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes>Test Username Token authentication/authorization (Store 5)</notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <useDefault>false</useDefault> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>2</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>8</nextIdentifier> <testsSize>2</testsSize> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>276</testID> <enabled>true</enabled> <name>getItemByTitle(string)</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Auth Data</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>getItemByTitle(string)</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-01?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <dataSourceNames size="1"> <dataSourceName index="0">Auth Data</dataSourceName> </dataSourceNames> <iconName>Diff</iconName> <name>Diff control generated on Feb 20, 2012 4:25:53 PM.</name> <differsSize>3</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="7"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">soaptest</val> <col index="1">username</col> <val index="1">soaptest</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <dataSourceName>Auth Data</dataSourceName> <row>1</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByTitleResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;C++ How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;356.99&lt;/price&gt; &lt;stockQuantity&gt;20&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;One of the best C++ books&lt;/description&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;publicationDate&gt;2002-08-12T00:00:00-07:00&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByTitleResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="1" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">wrong</val> <col index="1">username</col> <val index="1">soaptest</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>2</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="1">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="2" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">soaptest</val> <col index="1">username</col> <val index="1">wrong</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>3</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="2">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="3" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">wrong</val> <col index="1">username</col> <val index="1">wrong</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>4</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="3">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="4" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">admin</val> <col index="1">username</col> <val index="1">admin</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>5</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="4">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByTitleResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;C++ How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;356.99&lt;/price&gt; &lt;stockQuantity&gt;20&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;One of the best C++ books&lt;/description&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;publicationDate&gt;2002-08-12T00:00:00-07:00&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByTitleResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="5" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">wrong</val> <col index="1">username</col> <val index="1">admin</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>6</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="5">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="6" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">admin</val> <col index="1">username</col> <val index="1">wrong</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <last>true</last> <dataSourceName>Auth Data</dataSourceName> <row>7</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="6">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> <optionsType>1</optionsType> <dataSourceColumn>username</dataSourceColumn> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="7"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">soaptest</val> <col index="1">username</col> <val index="1">soaptest</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <dataSourceName>Auth Data</dataSourceName> <row>1</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByTitleResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;C++ How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;356.99&lt;/price&gt; &lt;stockQuantity&gt;20&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;One of the best C++ books&lt;/description&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;publicationDate&gt;2002-08-12T00:00:00-07:00&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByTitleResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="1" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">wrong</val> <col index="1">username</col> <val index="1">soaptest</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>2</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="1">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="2" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">soaptest</val> <col index="1">username</col> <val index="1">wrong</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>3</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="2">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="3" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">wrong</val> <col index="1">username</col> <val index="1">wrong</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>4</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="3">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="4" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">admin</val> <col index="1">username</col> <val index="1">admin</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>5</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="4">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getItemByTitleResponse xmlns:ns2=&quot;http://bookstore.parasoft.com/&quot;&gt; &lt;book&gt; &lt;id&gt;1&lt;/id&gt; &lt;name&gt;C++ How to Program (4th Edition)&lt;/name&gt; &lt;price&gt;356.99&lt;/price&gt; &lt;stockQuantity&gt;20&lt;/stockQuantity&gt; &lt;authors&gt;Harvey M. Deitel&lt;/authors&gt; &lt;authors&gt;Paul J. Deitel&lt;/authors&gt; &lt;description&gt;One of the best C++ books&lt;/description&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;publicationDate&gt;2002-08-12T00:00:00-07:00&lt;/publicationDate&gt; &lt;publisher&gt;Prentice Hall&lt;/publisher&gt; &lt;/book&gt; &lt;/ns2:getItemByTitleResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="5" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">wrong</val> <col index="1">username</col> <val index="1">admin</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <dataSourceName>Auth Data</dataSourceName> <row>6</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="5">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> <ControlKey className="com.parasoft.data.ControlKey" index="6" version="1.6"> <keys size="2"> <col index="0">password</col> <val index="0">admin</val> <col index="1">username</col> <val index="1">wrong</val> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <first>false</first> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> <first>false</first> <last>true</last> <dataSourceName>Auth Data</dataSourceName> <row>7</row> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="6">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode xmlns:ns1=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;ns1:FailedAuthentication&lt;/faultcode&gt; &lt;faultstring&gt;The security token could not be authenticated or authorized&lt;/faultstring&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> <optionsType>1</optionsType> <dataSourceColumn>username</dataSourceColumn> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <engineMode>1</engineMode> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>soapenv</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soapenv</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <excludeColumnName>username</excludeColumnName> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>soapenv</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemByTitleResponse</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>3</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>soapenv</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemByTitleReturn</name> <childNodesSize>6</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns2</prefix> <uri>http://ws2.parasoft.com/axis/services/store</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soapenc</prefix> <uri>http://schemas.xmlsoap.org/soap/encoding/</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ns1:Book[1]</value> <name>arrayType</name> <namespace>true</namespace> <prefix>soapenc</prefix> <uri>http://schemas.xmlsoap.org/soap/encoding/</uri> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ns2:ArrayOf_tns1_Book</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>item</name> <childNodesSize>10</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ns1:Book</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0130384747</value> <name>ISBN</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>authors</name> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string[2]</value> <name>arrayType</name> <namespace>true</namespace> <prefix>soapenc</prefix> <uri>http://schemas.xmlsoap.org/soap/encoding/</uri> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:Array</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Harvey M. Deitel</value> <name>item</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Paul J. Deitel</value> <name>item</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>One of the best C++ books</value> <name>description</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>1</value> <name>id</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>C++ How to Program (4th Edition)</value> <name>name</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <excludeColumnName>username</excludeColumnName> <value>101.99</value> <name>price</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:float</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2002-08-12</value> <name>publicationDate</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:date</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Prentice Hall</value> <name>publisher</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>soapenc:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>20</value> <name>stockQuantity</name> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <numIgnoredXPaths>3</numIgnoredXPaths> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/getItemByTitleReturn/item/price</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>7</operation1> <operation2>7</operation2> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/book/price</xpath> <diff>1</diff> <operation0>1</operation0> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getItemByTitleResponse/book/publicationDate</xpath> <diff>1</diff> <operation0>1</operation0> </IgnoredXPath> </XMLDifferNew> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-01?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-01</value> <columnName>username</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <showMessages>false</showMessages> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>getItemByTitle</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>getItemByTitle</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemByTitleResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-01</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemByTitleResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemByTitle</inputName> <soapHeadersSize>1</soapHeadersSize> <SoapHeader className="webtool.soap.SoapHeader" version="1.4"> <WSSecurityHeader className="webtool.soap.header.WSSecurityHeader" version="1.3.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> <AnyAttribute className="webtool.soap.AnyAttribute" version="1.1"> </AnyAttribute> <BSTHeaderCollection className="webtool.soap.header.BSTHeaderCollection" version="1.1.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> </BSTHeaderCollection> <TimestampHeader className="webtool.soap.header.TimestampHeader" version="1.1.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> <sendTimestamp>false</sendTimestamp> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>2012-02-21T00:23:56Z</value> </SimpleValue> </TimestampHeader> <UsernameTokenHeader className="webtool.soap.header.UsernameTokenHeader" version="1.8.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> <XMLAnyElementArray className="webtool.xml.XMLAnyElementArray" version="1"> </XMLAnyElementArray> <sendToken>true</sendToken> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <columnName>username</columnName> <parameterized>true</parameterized> </SimpleValue> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <columnName>password</columnName> <parameterized>true</parameterized> </SimpleValue> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>Bp7WlljHenF/V5YsmjOBY1yvF7E=</value> </SimpleValue> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>2012-02-21T00:23:56Z</value> </SimpleValue> <passwordType>PasswordText</passwordType> </UsernameTokenHeader> </WSSecurityHeader> </SoapHeader> <methodName>getItemByTitle</methodName> <returnType>{http://bookstore.parasoft.com/}getItemByTitleResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemByTitle</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <allowArrayExclude>true</allowArrayExclude> <value>C++</value> <xmlEncoding>2</xmlEncoding> </StringValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Header&gt;&lt;wsse:Security xmlns:wsse=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot; xmlns:wsu=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&quot;&gt;&lt;wsse:UsernameToken xmlns:wsse=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot;&gt;&lt;wsse:Username/&gt;&lt;wsse:Password Type=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest&quot;/&gt;&lt;wsse:Nonce EncodingType=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary&quot;&gt;vSEfSPiuPaqMiMqvoCO/Pvprmx4=&lt;/wsse:Nonce&gt;&lt;wsu:Created xmlns:wsu=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&quot;/&gt;&lt;/wsse:UsernameToken&gt;&lt;/wsse:Security&gt;&lt;/SOAP-ENV:Header&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:getItemByTitle SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;&gt; &lt;title xsi:type=&quot;xsd:string&quot;&gt;C++&lt;/title&gt; &lt;/ns1:getItemByTitle&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>5</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Header</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Security</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>3</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsu</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>UsernameToken</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Username</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Password</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest</value> <name>Type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2zZfOp/P5C7JLJkL2Z0vDfZok98=</value> <name>Nonce</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary</value> <name>EncodingType</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Created</name> <namespace>true</namespace> <prefix>wsu</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd</uri> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemByTitle</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>3</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>C++</value> <name>title</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:string</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>277</testID> <enabled>true</enabled> <name>getItemById(int)</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Auth Data</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>getItemById(int)</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-01?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <dataSourceNames size="1"> <dataSourceName index="0">Auth Data</dataSourceName> </dataSourceNames> <iconName>Diff</iconName> <name>Diff control generated on Aug 4, 2004 4:57:20 PM.</name> <differsSize>3</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <file>true</file> <RelativeLocation className="com.parasoft.util.RelativeLocation" version="1.4"> <path>..\..\..\..\Program Files\Parasoft\SOAtest\2022.2\plugins\com.parasoft.ptest.libs.web_10.6.1.202210032000\root\home\rjaamour\eclipse-workspaces\runtime-workspace\tests_soaptest\wss\tests</path> </RelativeLocation> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode&gt;soap:Server&lt;/faultcode&gt; &lt;faultstring&gt;no book with the id 1000 was found&lt;/faultstring&gt; &lt;detail&gt; &lt;ns1:Exception xmlns:ns1=&quot;http://bookstore.parasoft.com/&quot;/&gt; &lt;/detail&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> <optionsType>2</optionsType> <dataSourceColumn>username</dataSourceColumn> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <file>true</file> <RelativeLocation className="com.parasoft.util.RelativeLocation" version="1.4"> <path>..\..\..\..\Program Files\Parasoft\SOAtest\2022.2\plugins\com.parasoft.ptest.libs.web_10.6.1.202210032000\root\home\rjaamour\eclipse-workspaces\runtime-workspace\tests_soaptest\wss\tests</path> </RelativeLocation> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;soap:Fault&gt; &lt;faultcode&gt;soap:Server&lt;/faultcode&gt; &lt;faultstring&gt;no book with the id 1000 was found&lt;/faultstring&gt; &lt;detail&gt; &lt;ns1:Exception xmlns:ns1=&quot;http://bookstore.parasoft.com/&quot;/&gt; &lt;/detail&gt; &lt;/soap:Fault&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> <optionsType>2</optionsType> <dataSourceColumn>username</dataSourceColumn> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <engineMode>1</engineMode> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-01?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-01</value> <columnName>username</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <showMessages>false</showMessages> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>getItemById</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>getItemById</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemByIdResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-01</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemByIdResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemById</inputName> <soapHeadersSize>1</soapHeadersSize> <SoapHeader className="webtool.soap.SoapHeader" version="1.4"> <WSSecurityHeader className="webtool.soap.header.WSSecurityHeader" version="1.3.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> <AnyAttribute className="webtool.soap.AnyAttribute" version="1.1"> </AnyAttribute> <BSTHeaderCollection className="webtool.soap.header.BSTHeaderCollection" version="1.1.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> </BSTHeaderCollection> <TimestampHeader className="webtool.soap.header.TimestampHeader" version="1.1.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> <sendTimestamp>false</sendTimestamp> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>2012-02-21T00:28:28Z</value> </SimpleValue> </TimestampHeader> <UsernameTokenHeader className="webtool.soap.header.UsernameTokenHeader" version="1.8.4"> <MustUnderstandAttribute className="webtool.soap.header.MustUnderstandAttribute" version="1.1"> <namespace>http://schemas.xmlsoap.org/soap/envelope/</namespace> <value>true</value> <useDefaultNS>true</useDefaultNS> </MustUnderstandAttribute> <WSSecurityURIOptions className="webtool.soap.header.WSSecurityURIOptions" version="1.1"> </WSSecurityURIOptions> <XMLAnyElementArray className="webtool.xml.XMLAnyElementArray" version="1"> </XMLAnyElementArray> <sendToken>true</sendToken> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>soatest</value> </SimpleValue> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>soatest</value> </SimpleValue> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>V2HBWrlKOBDoCpqTetCIhly3o2Q=</value> </SimpleValue> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>2012-02-21T00:28:28Z</value> </SimpleValue> <passwordType>PasswordText</passwordType> </UsernameTokenHeader> </WSSecurityHeader> </SoapHeader> <methodName>getItemById</methodName> <returnType>{http://bookstore.parasoft.com/}getItemByIdResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemById</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>1000</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Header&gt;&lt;wsse:Security xmlns:wsse=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd&quot; xmlns:wsu=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd&quot;&gt;&lt;wsse:UsernameToken&gt;&lt;wsse:Username&gt;soaptest&lt;/wsse:Username&gt;&lt;wsse:Password Type=&quot;http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest&quot;&gt;soaptest&lt;/wsse:Password&gt;&lt;wsse:Nonce&gt;VJBFHLELVF0XOoZXtVxyvR6LGtc=&lt;/wsse:Nonce&gt;&lt;wsu:Created/&gt;&lt;/wsse:UsernameToken&gt;&lt;/wsse:Security&gt;&lt;/SOAP-ENV:Header&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:getItemById SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;&gt; &lt;id xsi:type=&quot;xsd:int&quot;&gt;7&lt;/id&gt; &lt;/ns1:getItemById&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>5</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Header</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Security</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>3</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsu</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>UsernameToken</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>soaptest</value> <name>Username</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>soaptest</value> <name>Password</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordDigest</value> <name>Type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>uL1MEhy4JZLPzluveFmwmV9nNjU=</value> <name>Nonce</name> <namespace>true</namespace> <prefix>wsse</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</uri> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Created</name> <namespace>true</namespace> <prefix>wsu</prefix> <uri>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd</uri> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getItemById</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>3</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>7</value> <name>id</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>278</testID> <enabled>true</enabled> <name>Signature</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> <showAllIterations>false</showAllIterations> </AdvancedExecutionOptions> <profiles size="1"> <profile index="0">Default User</profile> </profiles> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes>&#xD; </notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <useDefault>false</useDefault> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>4</profileMappingID> <testLogicVariablesSize>1</testLogicVariablesSize> <TestLogicInteger className="webtool.test.logic.TestLogicInteger" version="1.1.1"> <name>cartId</name> <TestLogicVariableInteger className="webtool.test.logic.TestLogicVariableInteger" version="1.3.1"> <useLocalValue>true</useLocalValue> </TestLogicVariableInteger> </TestLogicInteger> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <treeState>true</treeState> <TreeState className="com.parasoft.swing.TreeState" version="1"> <expandedRowsSize>16</expandedRowsSize> <expandedRow>1</expandedRow> <expandedRow>2</expandedRow> <expandedRow>4</expandedRow> <expandedRow>7</expandedRow> <expandedRow>10</expandedRow> <expandedRow>13</expandedRow> <expandedRow>16</expandedRow> <expandedRow>19</expandedRow> <expandedRow>22</expandedRow> <expandedRow>23</expandedRow> <expandedRow>25</expandedRow> <expandedRow>29</expandedRow> <expandedRow>32</expandedRow> <expandedRow>35</expandedRow> <expandedRow>38</expandedRow> <selectionRowsSize>1</selectionRowsSize> </TreeState> <testsSize>3</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>279</testID> <enabled>true</enabled> <name>OrderMultiple</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="2"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>280</testID> <enabled>true</enabled> <name>placeOrder(placeOrder) 2</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>addItemToCart</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-02?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>2</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Verify</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Verify</name> </ToolNamedObjectReference> </ToolReference> <XMLtoDataSource className="webtool.xml.XMLtoDataSource" version="v.2.8.15.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <allowToolbar>false</allowToolbar> <iconName>XMLDataBank</iconName> <name>XML Data Bank</name> <selectedXPathsSize>1</selectedXPathsSize> <SelectedXPath className="webtool.xml.SelectedXPath" version="1.3"> <elementOption>1</elementOption> <contentOption>1</contentOption> <XMLDataBank_ExtractXPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;][1]/*[local-name(.)=&quot;addItemToCartResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;][1]/*[local-name(.)=&quot;itemAdded&quot; and namespace-uri(.)=&quot;&quot;][1]/*[local-name(.)=&quot;cartId&quot; and namespace-uri(.)=&quot;&quot;][1]/text()</XMLDataBank_ExtractXPath> <mode>1</mode> </SelectedXPath> <xmlMessage>true</xmlMessage> <VirtualDataSourceCreatorImpl className="webtool.data.VirtualDataSourceCreatorImpl" version="1.1"> <writableColumnsSize>1</writableColumnsSize> <WritableColumn className="webtool.data.WritableColumn" version="1.5"> <testVariableName>cartId</testVariableName> <mode>3</mode> <customName>Test 1: cartId</customName> </WritableColumn> </VirtualDataSourceCreatorImpl> </XMLtoDataSource> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-02?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-02</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Sign</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Sign</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>placeOrder</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>addItemToCart</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>addItemToCartResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-02</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>addItemToCartResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>addItemToCartResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <localName>itemAdded</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>displayOrder</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>2</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <localName>cartId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>8</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <minOccurs>0</minOccurs> <localName>item</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>10</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>order</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>11</hash> <paramTypesSize>2</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>12</hash> <minOccurs>0</minOccurs> <localName>book</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>13</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>book</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>14</hash> <paramTypesSize>9</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>15</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>16</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>17</hash> <minOccurs>0</minOccurs> <localName>name</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>18</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>19</hash> <minOccurs>0</minOccurs> <localName>price</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>20</hash> </DecimalType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>21</hash> <localName>stockQuantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2"> <hash>16</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>22</hash> <minOccurs>0</minOccurs> <maxOccurs>-1</maxOccurs> <nillable>true</nillable> <localName>authors</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>23</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>24</hash> <minOccurs>0</minOccurs> <localName>description</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>23</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>25</hash> <minOccurs>0</minOccurs> <localName>ISBN</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>23</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>26</hash> <minOccurs>0</minOccurs> <localName>publicationDate</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>27</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>28</hash> <minOccurs>0</minOccurs> <localName>publisher</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>23</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>29</hash> <localName>quantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2"> <hash>16</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>addItemToCart</inputName> <methodName>addItemToCart</methodName> <returnType>{http://bookstore.parasoft.com/}addItemToCartResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>addItemToCart</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>addItemToCart</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>3</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <localName>cartId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>5</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>6</hash> <localName>itemId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>7</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>8</hash> <localName>quantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2"> <hash>7</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>3</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <allowArrayExclude>true</allowArrayExclude> <mode>3</mode> <columnName>cartId</columnName> <value>1</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>id</columnName> <value>6</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>quantity</columnName> <value>1</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:placeOrder SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;&gt; &lt;itemId xsi:type=&quot;xsd:int&quot;&gt;${id}&lt;/itemId&gt; &lt;count xsi:type=&quot;xsd:int&quot;&gt;${quantity}&lt;/count&gt; &lt;/ns1:placeOrder&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>placeOrder</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <valueColumnName>quantity</valueColumnName> <value>${id}</value> <name>itemId</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>${quantity}</value> <name>count</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>281</testID> <enabled>true</enabled> <name>getPendingOrders(getPendingOrders) 2</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>getItemsInCart</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-02?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>2</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Verify</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Verify</name> </ToolNamedObjectReference> </ToolReference> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <OccurrenceAssertion className="webtool.assertion.xml.OccurrenceAssertion" version="2.6.2"> <timestamp>1329785034396</timestamp> <name>Occurrence Assertion</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;getItemsInCartResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;]/*[local-name(.)=&quot;cart&quot; and namespace-uri(.)=&quot;&quot;]/*[local-name(.)=&quot;item&quot; and namespace-uri(.)=&quot;&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Count</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>6</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </OccurrenceAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-02?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-02</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Sign</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Sign</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>getPendingOrders</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>getItemsInCart</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemsInCartResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-02</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>getItemsInCartResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>getItemsInCartResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <localName>cart</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>cartManager</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>2</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <localName>cartId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>8</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <minOccurs>0</minOccurs> <maxOccurs>-1</maxOccurs> <nillable>true</nillable> <localName>item</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>10</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>order</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>11</hash> <paramTypesSize>2</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>12</hash> <minOccurs>0</minOccurs> <localName>book</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>13</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>book</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>14</hash> <paramTypesSize>9</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>15</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>16</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>17</hash> <minOccurs>0</minOccurs> <localName>name</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>18</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>19</hash> <minOccurs>0</minOccurs> <localName>price</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>20</hash> </DecimalType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>21</hash> <localName>stockQuantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2"> <hash>16</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>22</hash> <minOccurs>0</minOccurs> <maxOccurs>-1</maxOccurs> <nillable>true</nillable> <localName>authors</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>23</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>24</hash> <minOccurs>0</minOccurs> <localName>description</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>23</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>25</hash> <minOccurs>0</minOccurs> <localName>ISBN</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>23</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>26</hash> <minOccurs>0</minOccurs> <localName>publicationDate</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>27</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>28</hash> <minOccurs>0</minOccurs> <localName>publisher</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>23</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>29</hash> <localName>quantity</localName> <IntegerType className="webtool.soap.IntegerType" version="2"> <hash>16</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemsInCart</inputName> <methodName>getItemsInCart</methodName> <returnType>{http://bookstore.parasoft.com/}getItemsInCartResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>getItemsInCart</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>getItemsInCart</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <localName>cartId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>5</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>cartId</columnName> <value>1</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:getPendingOrders SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;/&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getPendingOrders</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>282</testID> <enabled>true</enabled> <name>SOAP Client - confirm multiple orders (should return true)</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>submitOrder</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-02?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>2</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Verify</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Verify</name> </ToolNamedObjectReference> </ToolReference> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <ValueAssertion className="webtool.assertion.xml.ValueAssertion" version="1.6.2"> <timestamp>1329784968468</timestamp> <name>Value Assertion</name> <Assertion_XPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;submitOrderResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;]/*[local-name(.)=&quot;orderInformation&quot; and namespace-uri(.)=&quot;&quot;]/*[local-name(.)=&quot;success&quot; and namespace-uri(.)=&quot;&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Value</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>true</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ValueAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes></notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-02?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-02</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Sign</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Sign</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>confirm</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>submitOrder</longName> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>submitOrderResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-02</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>submitOrderResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>submitOrderResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <minOccurs>0</minOccurs> <localName>orderInformation</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>submittedOrder</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>2</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <minOccurs>0</minOccurs> <localName>orderTime</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>8</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <localName>success</localName> <BooleanType className="webtool.soap.BooleanType" version="2.2.3"> <hash>10</hash> </BooleanType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>submitOrder</inputName> <methodName>submitOrder</methodName> <returnType>{http://bookstore.parasoft.com/}submitOrderResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://bookstore.parasoft.com/</namespace> <localName>submitOrder</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://bookstore.parasoft.com/</namespace> <name>submitOrder</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <localName>cartId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>5</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>cartId</columnName> <value>1</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:confirm SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;/&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>confirm</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>283</testID> <enabled>true</enabled> <name>Encryption</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> <showAllIterations>false</showAllIterations> </AdvancedExecutionOptions> <profiles size="1"> <profile index="0">Default User</profile> </profiles> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes>&#xD; </notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <useDefault>false</useDefault> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>4</profileMappingID> <testLogicVariablesSize>1</testLogicVariablesSize> <TestLogicInteger className="webtool.test.logic.TestLogicInteger" version="1.1.1"> <name>cartId</name> <TestLogicVariableInteger className="webtool.test.logic.TestLogicVariableInteger" version="1.3.1"> <useLocalValue>true</useLocalValue> </TestLogicVariableInteger> </TestLogicInteger> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <treeState>true</treeState> <TreeState className="com.parasoft.swing.TreeState" version="1"> <expandedRowsSize>16</expandedRowsSize> <expandedRow>1</expandedRow> <expandedRow>2</expandedRow> <expandedRow>4</expandedRow> <expandedRow>7</expandedRow> <expandedRow>10</expandedRow> <expandedRow>13</expandedRow> <expandedRow>16</expandedRow> <expandedRow>19</expandedRow> <expandedRow>22</expandedRow> <expandedRow>23</expandedRow> <expandedRow>25</expandedRow> <expandedRow>29</expandedRow> <expandedRow>32</expandedRow> <expandedRow>35</expandedRow> <expandedRow>38</expandedRow> <selectionRowsSize>1</selectionRowsSize> </TreeState> <testsSize>3</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>284</testID> <enabled>true</enabled> <name>OrderMultiple</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="2"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>285</testID> <enabled>true</enabled> <name>placeOrder(placeOrder) 2</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>addItemToCart</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-03?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <XMLtoDataSource className="webtool.xml.XMLtoDataSource" version="v.2.8.15.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <allowToolbar>false</allowToolbar> <iconName>XMLDataBank</iconName> <name>XML Data Bank</name> <selectedXPathsSize>1</selectedXPathsSize> <SelectedXPath className="webtool.xml.SelectedXPath" version="1.3"> <elementOption>1</elementOption> <contentOption>1</contentOption> <XMLDataBank_ExtractXPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;][1]/*[local-name(.)=&quot;addItemToCartResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;][1]/*[local-name(.)=&quot;itemAdded&quot; and namespace-uri(.)=&quot;&quot;][1]/*[local-name(.)=&quot;cartId&quot; and namespace-uri(.)=&quot;&quot;][1]/text()</XMLDataBank_ExtractXPath> <mode>1</mode> </SelectedXPath> <xmlMessage>true</xmlMessage> <VirtualDataSourceCreatorImpl className="webtool.data.VirtualDataSourceCreatorImpl" version="1.1"> <writableColumnsSize>1</writableColumnsSize> <WritableColumn className="webtool.data.WritableColumn" version="1.5"> <testVariableName>cartId</testVariableName> <mode>3</mode> <customName>Test 1: cartId</customName> </WritableColumn> </VirtualDataSourceCreatorImpl> </XMLtoDataSource> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-03?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-03</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Reference to Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Encrypt</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>placeOrder</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>addItemToCart</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>addItemToCartResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-03</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:addItemToCartResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>addItemToCart</inputName> <methodName>addItemToCart</methodName> <returnType>{http://bookstore.parasoft.com/}addItemToCartResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:addItemToCart</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>3</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <allowArrayExclude>true</allowArrayExclude> <mode>3</mode> <columnName>cartId</columnName> <value>2</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>id</columnName> <value>6</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>quantity</columnName> <value>1</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:placeOrder SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;&gt; &lt;itemId xsi:type=&quot;xsd:int&quot;&gt;${id}&lt;/itemId&gt; &lt;count xsi:type=&quot;xsd:int&quot;&gt;${quantity}&lt;/count&gt; &lt;/ns1:placeOrder&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>placeOrder</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <valueColumnName>quantity</valueColumnName> <value>${id}</value> <name>itemId</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>${quantity}</value> <name>count</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>286</testID> <enabled>true</enabled> <name>getPendingOrders(getPendingOrders) 2</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>getItemsInCart</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-03?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <OccurrenceAssertion className="webtool.assertion.xml.OccurrenceAssertion" version="2.6.2"> <timestamp>1329785034396</timestamp> <name>Occurrence Assertion</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;getItemsInCartResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;]/*[local-name(.)=&quot;cart&quot; and namespace-uri(.)=&quot;&quot;]/*[local-name(.)=&quot;item&quot; and namespace-uri(.)=&quot;&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Count</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>6</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </OccurrenceAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-03?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-03</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Reference to Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Encrypt</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>getPendingOrders</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>getItemsInCart</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemsInCartResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-03</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemsInCartResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemsInCart</inputName> <methodName>getItemsInCart</methodName> <returnType>{http://bookstore.parasoft.com/}getItemsInCartResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemsInCart</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>cartId</columnName> <value>2</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:getPendingOrders SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;/&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getPendingOrders</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>287</testID> <enabled>true</enabled> <name>SOAP Client - confirm multiple orders (should return true)</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>submitOrder</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-03?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <ValueAssertion className="webtool.assertion.xml.ValueAssertion" version="1.6.2"> <timestamp>1329784968468</timestamp> <name>Value Assertion</name> <Assertion_XPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;submitOrderResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;]/*[local-name(.)=&quot;orderInformation&quot; and namespace-uri(.)=&quot;&quot;]/*[local-name(.)=&quot;success&quot; and namespace-uri(.)=&quot;&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Value</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>true</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ValueAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes></notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-03?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-03</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Reference to Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Encrypt</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>confirm</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>submitOrder</longName> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>submitOrderResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-03</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:submitOrderResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>submitOrder</inputName> <methodName>submitOrder</methodName> <returnType>{http://bookstore.parasoft.com/}submitOrderResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:submitOrder</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>cartId</columnName> <value>2</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:confirm SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;/&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>confirm</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>288</testID> <enabled>true</enabled> <name>Encryption and Signature</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> <showAllIterations>false</showAllIterations> </AdvancedExecutionOptions> <profiles size="1"> <profile index="0">Default User</profile> </profiles> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes>&#xD; </notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <useDefault>false</useDefault> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>4</profileMappingID> <testLogicVariablesSize>1</testLogicVariablesSize> <TestLogicInteger className="webtool.test.logic.TestLogicInteger" version="1.1.1"> <name>cartId</name> <TestLogicVariableInteger className="webtool.test.logic.TestLogicVariableInteger" version="1.3.1"> <useLocalValue>true</useLocalValue> </TestLogicVariableInteger> </TestLogicInteger> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <treeState>true</treeState> <TreeState className="com.parasoft.swing.TreeState" version="1"> <expandedRowsSize>16</expandedRowsSize> <expandedRow>1</expandedRow> <expandedRow>2</expandedRow> <expandedRow>4</expandedRow> <expandedRow>7</expandedRow> <expandedRow>10</expandedRow> <expandedRow>13</expandedRow> <expandedRow>16</expandedRow> <expandedRow>19</expandedRow> <expandedRow>22</expandedRow> <expandedRow>23</expandedRow> <expandedRow>25</expandedRow> <expandedRow>29</expandedRow> <expandedRow>32</expandedRow> <expandedRow>35</expandedRow> <expandedRow>38</expandedRow> <selectionRowsSize>1</selectionRowsSize> </TreeState> <testsSize>3</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>289</testID> <enabled>true</enabled> <name>OrderMultiple</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="2"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>290</testID> <enabled>true</enabled> <name>placeOrder(placeOrder) 2</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>addItemToCart</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-04?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <XMLtoDataSource className="webtool.xml.XMLtoDataSource" version="v.2.8.15.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <allowToolbar>false</allowToolbar> <iconName>XMLDataBank</iconName> <name>XML Data Bank</name> <selectedXPathsSize>1</selectedXPathsSize> <SelectedXPath className="webtool.xml.SelectedXPath" version="1.3"> <elementOption>1</elementOption> <contentOption>1</contentOption> <XMLDataBank_ExtractXPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;][1]/*[local-name(.)=&quot;addItemToCartResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;][1]/*[local-name(.)=&quot;itemAdded&quot; and namespace-uri(.)=&quot;&quot;][1]/*[local-name(.)=&quot;cartId&quot; and namespace-uri(.)=&quot;&quot;][1]/text()</XMLDataBank_ExtractXPath> <mode>1</mode> </SelectedXPath> <xmlMessage>true</xmlMessage> <VirtualDataSourceCreatorImpl className="webtool.data.VirtualDataSourceCreatorImpl" version="1.1"> <writableColumnsSize>1</writableColumnsSize> <WritableColumn className="webtool.data.WritableColumn" version="1.5"> <testVariableName>cartId</testVariableName> <mode>3</mode> <customName>Test 1: cartId</customName> </WritableColumn> </VirtualDataSourceCreatorImpl> </XMLtoDataSource> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-04?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-04</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Reference to Sign and Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Sign and Encrypt</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>placeOrder</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>addItemToCart</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>addItemToCartResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-04</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:addItemToCartResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>addItemToCart</inputName> <methodName>addItemToCart</methodName> <returnType>{http://bookstore.parasoft.com/}addItemToCartResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:addItemToCart</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>3</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <allowArrayExclude>true</allowArrayExclude> <mode>3</mode> <columnName>cartId</columnName> <value>3</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>id</columnName> <value>6</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>quantity</columnName> <value>1</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:placeOrder SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;&gt; &lt;itemId xsi:type=&quot;xsd:int&quot;&gt;${id}&lt;/itemId&gt; &lt;count xsi:type=&quot;xsd:int&quot;&gt;${quantity}&lt;/count&gt; &lt;/ns1:placeOrder&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>placeOrder</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <valueColumnName>quantity</valueColumnName> <value>${id}</value> <name>itemId</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>${quantity}</value> <name>count</name> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xsd:int</value> <name>type</name> <namespace>true</namespace> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>291</testID> <enabled>true</enabled> <name>getPendingOrders(getPendingOrders) 2</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>getItemsInCart</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-04?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <OccurrenceAssertion className="webtool.assertion.xml.OccurrenceAssertion" version="2.6.2"> <timestamp>1329785034396</timestamp> <name>Occurrence Assertion</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;getItemsInCartResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;]/*[local-name(.)=&quot;cart&quot; and namespace-uri(.)=&quot;&quot;]/*[local-name(.)=&quot;item&quot; and namespace-uri(.)=&quot;&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Count</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>6</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </OccurrenceAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Automatically generated</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-04?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-04</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Reference to Sign and Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Sign and Encrypt</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>getPendingOrders</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>getItemsInCart</longName> <faults size="1"> <fault index="0">Exception</fault> </faults> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>getItemsInCartResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-04</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemsInCartResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getItemsInCart</inputName> <methodName>getItemsInCart</methodName> <returnType>{http://bookstore.parasoft.com/}getItemsInCartResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:getItemsInCart</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>cartId</columnName> <value>3</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:getPendingOrders SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;/&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getPendingOrders</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>292</testID> <enabled>true</enabled> <name>SOAP Client - confirm multiple orders (should return true)</name> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <dataSourceNames size="1"> <dataSourceName index="0">Orders by IDs</dataSourceName> </dataSourceNames> <iconName>SOAPClient</iconName> <name>submitOrder</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/store-wss-04?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <EncryptionTool className="webtool.xml.encryption.EncryptionTool" version="v.2.8.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLEncryption</iconName> <name>Decrypt</name> <verifiedKeyStoreDataName>Store</verifiedKeyStoreDataName> <EncryptionMethod className="webtool.xml.encryption.EncryptionMethod" version="1.1"> <RSA_v1_5Encryption className="webtool.xml.encryption.RSA_v1_5Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <AES256Encryption className="webtool.xml.encryption.AES256Encryption" version="1.1.3.3"> <keyStoreDataName>Store</keyStoreDataName> <keySource>3</keySource> </AES256Encryption> </RSA_v1_5Encryption> </EncryptionMethod> <WSSecurityOptions className="webtool.xml.encryption.WSSecurityOptions" version="1.10"> <action>3</action> </WSSecurityOptions> <ElementSelectionData className="webtool.xml.encryption.ElementSelectionData" version="1.1"> </ElementSelectionData> <encryptionMode>1</encryptionMode> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <dataSourceNames size="1"> <dataSourceName index="0">Project Table</dataSourceName> </dataSourceNames> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <ValueAssertion className="webtool.assertion.xml.ValueAssertion" version="1.6.2"> <timestamp>1329784968468</timestamp> <name>Value Assertion</name> <Assertion_XPath>/*[local-name(.)=&quot;Envelope&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;Body&quot; and namespace-uri(.)=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;]/*[local-name(.)=&quot;submitOrderResponse&quot; and namespace-uri(.)=&quot;http://bookstore.parasoft.com/&quot;]/*[local-name(.)=&quot;orderInformation&quot; and namespace-uri(.)=&quot;&quot;]/*[local-name(.)=&quot;success&quot; and namespace-uri(.)=&quot;&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Value</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>true</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ValueAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> <name>XML Document</name> </NamedXMLToolOutputProvider> </EncryptionTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes></notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_BASE}/services/store-wss-04?wsdl</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/store-wss-04</value> <columnName>id</columnName> </SimpleValue> </WsdlEndpointType> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> <useDefault>false</useDefault> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <requestString>Request MIME Attachment</requestString> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <ToolReference className="com.parasoft.tool.ToolReference" version="v.2.5"> <name>Reference to Sign and Encrypt</name> <ToolNamedObjectReference className="com.parasoft.tool.ToolNamedObjectReference" version="1"> <name>Sign and Encrypt</name> </ToolNamedObjectReference> </ToolReference> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Object Output</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <size>12</size> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>null</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval (in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JavaCode className="com.parasoft.scripting.java.JavaCode" version="2.1.1"> </JavaCode> <methodId>true</methodId> <JavaMethodIdentifier className="com.parasoft.scripting.java.JavaMethodIdentifier" version="2.2.1"> </JavaMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>From Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>To Email</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> <autoGunzip>false</autoGunzip> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> <useDefault>false</useDefault> <customType>1</customType> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> <useDefault>false</useDefault> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <soapAction>confirm</soapAction> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <longName>submitOrder</longName> <portTypeNamespace>http://bookstore.parasoft.com/</portTypeNamespace> <outputName>submitOrderResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://bookstore.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>Bookstore</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>CartServicePort</portName> <address>http://localhost:8080/parabank/services/store-wss-04</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:submitOrderResponse</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>submitOrder</inputName> <methodName>submitOrder</methodName> <returnType>{http://bookstore.parasoft.com/}submitOrderResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>http://bookstore.parasoft.com/:submitOrder</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <mode>3</mode> <columnName>cartId</columnName> <value>3</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <populateable>true</populateable> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt; &lt;SOAP-ENV:Body&gt; &lt;ns1:confirm SOAP-ENV:encodingStyle=&quot;http://schemas.xmlsoap.org/soap/encoding/&quot; xmlns:ns1=&quot;http://store.examples.soap.webtool&quot;/&gt; &lt;/SOAP-ENV:Body&gt; &lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>confirm</name> <namespace>true</namespace> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://store.examples.soap.webtool</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/encoding/</value> <name>encodingStyle</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>121</testID> <enabled>true</enabled> <name>ParaBank</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> <useDefault>false</useDefault> <wsdl>http://localhost:8080/parabank/services/ParaBank?wsdl</wsdl> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> <useDefault>false</useDefault> <endpoint>${ENDPOINT}</endpoint> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> <useDefault>false</useDefault> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>1</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <testsSize>3</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>150</testID> <enabled>true</enabled> <name>REST Client</name> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>Check ParaBank WSDL</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${PARABANK_WSDL}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 18, 2022, 5:41:26 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;wsdl:definitions name=&quot;ParaBank&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; xmlns:ns1=&quot;http://schemas.xmlsoap.org/soap/http&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;wsdl:types&gt; &lt;xs:schema attributeFormDefault=&quot;unqualified&quot; elementFormDefault=&quot;qualified&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; version=&quot;1.0&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;xs:element name=&quot;account&quot; type=&quot;tns:account&quot;/&gt; &lt;xs:element name=&quot;billPay&quot; type=&quot;tns:billPay&quot;/&gt; &lt;xs:element name=&quot;billPayResponse&quot; type=&quot;tns:billPayResponse&quot;/&gt; &lt;xs:element name=&quot;billPayResult&quot; type=&quot;tns:billPayResult&quot;/&gt; &lt;xs:element name=&quot;buyPosition&quot; type=&quot;tns:buyPosition&quot;/&gt; &lt;xs:element name=&quot;buyPositionResponse&quot; type=&quot;tns:buyPositionResponse&quot;/&gt; &lt;xs:element name=&quot;cleanDB&quot; type=&quot;tns:cleanDB&quot;/&gt; &lt;xs:element name=&quot;cleanDBResponse&quot; type=&quot;tns:cleanDBResponse&quot;/&gt; &lt;xs:element name=&quot;createAccount&quot; type=&quot;tns:createAccount&quot;/&gt; &lt;xs:element name=&quot;createAccountResponse&quot; type=&quot;tns:createAccountResponse&quot;/&gt; &lt;xs:element name=&quot;customer&quot; type=&quot;tns:customer&quot;/&gt; &lt;xs:element name=&quot;deposit&quot; type=&quot;tns:deposit&quot;/&gt; &lt;xs:element name=&quot;depositResponse&quot; type=&quot;tns:depositResponse&quot;/&gt; &lt;xs:element name=&quot;getAccount&quot; type=&quot;tns:getAccount&quot;/&gt; &lt;xs:element name=&quot;getAccountResponse&quot; type=&quot;tns:getAccountResponse&quot;/&gt; &lt;xs:element name=&quot;getAccounts&quot; type=&quot;tns:getAccounts&quot;/&gt; &lt;xs:element name=&quot;getAccountsResponse&quot; type=&quot;tns:getAccountsResponse&quot;/&gt; &lt;xs:element name=&quot;getCustomer&quot; type=&quot;tns:getCustomer&quot;/&gt; &lt;xs:element name=&quot;getCustomerResponse&quot; type=&quot;tns:getCustomerResponse&quot;/&gt; &lt;xs:element name=&quot;getPosition&quot; type=&quot;tns:getPosition&quot;/&gt; &lt;xs:element name=&quot;getPositionHistory&quot; type=&quot;tns:getPositionHistory&quot;/&gt; &lt;xs:element name=&quot;getPositionHistoryResponse&quot; type=&quot;tns:getPositionHistoryResponse&quot;/&gt; &lt;xs:element name=&quot;getPositionResponse&quot; type=&quot;tns:getPositionResponse&quot;/&gt; &lt;xs:element name=&quot;getPositions&quot; type=&quot;tns:getPositions&quot;/&gt; &lt;xs:element name=&quot;getPositionsResponse&quot; type=&quot;tns:getPositionsResponse&quot;/&gt; &lt;xs:element name=&quot;getTransaction&quot; type=&quot;tns:getTransaction&quot;/&gt; &lt;xs:element name=&quot;getTransactionResponse&quot; type=&quot;tns:getTransactionResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactions&quot; type=&quot;tns:getTransactions&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByAmount&quot; type=&quot;tns:getTransactionsByAmount&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByAmountResponse&quot; type=&quot;tns:getTransactionsByAmountResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByMonthAndType&quot; type=&quot;tns:getTransactionsByMonthAndType&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByMonthAndTypeResponse&quot; type=&quot;tns:getTransactionsByMonthAndTypeResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByToFromDate&quot; type=&quot;tns:getTransactionsByToFromDate&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByToFromDateResponse&quot; type=&quot;tns:getTransactionsByToFromDateResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsOnDate&quot; type=&quot;tns:getTransactionsOnDate&quot;/&gt; &lt;xs:element name=&quot;getTransactionsOnDateResponse&quot; type=&quot;tns:getTransactionsOnDateResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsResponse&quot; type=&quot;tns:getTransactionsResponse&quot;/&gt; &lt;xs:element name=&quot;historyPoint&quot; type=&quot;tns:historyPoint&quot;/&gt; &lt;xs:element name=&quot;initializeDB&quot; type=&quot;tns:initializeDB&quot;/&gt; &lt;xs:element name=&quot;initializeDBResponse&quot; type=&quot;tns:initializeDBResponse&quot;/&gt; &lt;xs:element name=&quot;loanResponse&quot; type=&quot;tns:loanResponse&quot;/&gt; &lt;xs:element name=&quot;login&quot; type=&quot;tns:login&quot;/&gt; &lt;xs:element name=&quot;loginResponse&quot; type=&quot;tns:loginResponse&quot;/&gt; &lt;xs:element name=&quot;payee&quot; type=&quot;tns:payee&quot;/&gt; &lt;xs:element name=&quot;position&quot; type=&quot;tns:position&quot;/&gt; &lt;xs:element name=&quot;requestLoan&quot; type=&quot;tns:requestLoan&quot;/&gt; &lt;xs:element name=&quot;requestLoanResponse&quot; type=&quot;tns:requestLoanResponse&quot;/&gt; &lt;xs:element name=&quot;sellPosition&quot; type=&quot;tns:sellPosition&quot;/&gt; &lt;xs:element name=&quot;sellPositionResponse&quot; type=&quot;tns:sellPositionResponse&quot;/&gt; &lt;xs:element name=&quot;setParameter&quot; type=&quot;tns:setParameter&quot;/&gt; &lt;xs:element name=&quot;setParameterResponse&quot; type=&quot;tns:setParameterResponse&quot;/&gt; &lt;xs:element name=&quot;shutdownJmsListener&quot; type=&quot;tns:shutdownJmsListener&quot;/&gt; &lt;xs:element name=&quot;shutdownJmsListenerResponse&quot; type=&quot;tns:shutdownJmsListenerResponse&quot;/&gt; &lt;xs:element name=&quot;startupJmsListener&quot; type=&quot;tns:startupJmsListener&quot;/&gt; &lt;xs:element name=&quot;startupJmsListenerResponse&quot; type=&quot;tns:startupJmsListenerResponse&quot;/&gt; &lt;xs:element name=&quot;transaction&quot; type=&quot;tns:transaction&quot;/&gt; &lt;xs:element name=&quot;transfer&quot; type=&quot;tns:transfer&quot;/&gt; &lt;xs:element name=&quot;transferResponse&quot; type=&quot;tns:transferResponse&quot;/&gt; &lt;xs:element name=&quot;updateCustomer&quot; type=&quot;tns:updateCustomer&quot;/&gt; &lt;xs:element name=&quot;updateCustomerResponse&quot; type=&quot;tns:updateCustomerResponse&quot;/&gt; &lt;xs:element name=&quot;withdraw&quot; type=&quot;tns:withdraw&quot;/&gt; &lt;xs:element name=&quot;withdrawResponse&quot; type=&quot;tns:withdrawResponse&quot;/&gt; &lt;xs:complexType name=&quot;startupJmsListener&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;startupJmsListenerResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;buyPosition&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;symbol&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;shares&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;pricePerShare&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;buyPositionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;position&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;symbol&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;shares&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;purchasePrice&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getCustomer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getCustomerResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:customer&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;customer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;firstName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;lastName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;address&quot; type=&quot;tns:address&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;phoneNumber&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;ssn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;address&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;street&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;city&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;state&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;zipCode&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;initializeDB&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;initializeDBResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;createAccount&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;newAccountType&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;fromAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;createAccountResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:account&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;account&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;type&quot; type=&quot;tns:accountType&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;balance&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccounts&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccountsResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:account&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactions&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;transaction&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;type&quot; type=&quot;tns:transactionType&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;date&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;description&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsOnDate&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;onDate&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsOnDateResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;withdraw&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;withdrawResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;withdrawReturn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateCustomer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;firstName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;lastName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;street&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;city&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;state&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;zipCode&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;phoneNumber&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;ssn&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;username&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;password&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateCustomerResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerUpdateResult&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;deposit&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;depositResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;depositReturn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;fromDate&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;toDate&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByToFromDateResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;shutdownJmsListener&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;shutdownJmsListenerResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPosition&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;transfer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;fromAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;toAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;transferResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;transferReturn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;login&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;username&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;password&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loginResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;tns:customer&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;month&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;type&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByMonthAndTypeResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionHistory&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;startDate&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;endDate&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionHistoryResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:historyPoint&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;historyPoint&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;symbol&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;date&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;closingPrice&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransaction&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;transactionId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;setParameter&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;value&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;setParameterResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositions&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionsResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByAmount&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByAmountResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;sellPosition&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;shares&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;pricePerShare&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;sellPositionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;cleanDB&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;cleanDBResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;requestLoan&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;downPayment&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;fromAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;requestLoanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:loanResponse&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;responseDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;loanProviderName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;approved&quot; type=&quot;xs:boolean&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccount&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccountResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:account&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;billPay&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;arg0&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;arg1&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;arg2&quot; type=&quot;tns:payee&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;payee&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;accountNumber&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;address&quot; type=&quot;tns:address&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;phoneNumber&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;billPayResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;return&quot; type=&quot;tns:billPayResult&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;billPayResult&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;payeeName&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:simpleType name=&quot;accountType&quot;&gt; &lt;xs:restriction base=&quot;xs:string&quot;&gt; &lt;xs:enumeration value=&quot;CHECKING&quot;/&gt; &lt;xs:enumeration value=&quot;SAVINGS&quot;/&gt; &lt;xs:enumeration value=&quot;LOAN&quot;/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;xs:simpleType name=&quot;transactionType&quot;&gt; &lt;xs:restriction base=&quot;xs:string&quot;&gt; &lt;xs:enumeration value=&quot;Credit&quot;/&gt; &lt;xs:enumeration value=&quot;Debit&quot;/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;xs:element name=&quot;ParaBankServiceException&quot; type=&quot;tns:ParaBankServiceException&quot;/&gt; &lt;xs:complexType name=&quot;ParaBankServiceException&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:schema&gt; &lt;/wsdl:types&gt; &lt;wsdl:message name=&quot;buyPosition&quot;&gt; &lt;wsdl:part element=&quot;tns:buyPosition&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getCustomer&quot;&gt; &lt;wsdl:part element=&quot;tns:getCustomer&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;initializeDB&quot;&gt; &lt;wsdl:part element=&quot;tns:initializeDB&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;initializeDBResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:initializeDBResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;sellPositionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:sellPositionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;createAccount&quot;&gt; &lt;wsdl:part element=&quot;tns:createAccount&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccounts&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccounts&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccountsResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccountsResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactions&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactions&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;loginResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:loginResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionHistoryResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionHistoryResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateCustomer&quot;&gt; &lt;wsdl:part element=&quot;tns:updateCustomer&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;deposit&quot;&gt; &lt;wsdl:part element=&quot;tns:deposit&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsOnDateResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsOnDateResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;transfer&quot;&gt; &lt;wsdl:part element=&quot;tns:transfer&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByToFromDateResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByToFromDateResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionsResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionsResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;depositResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:depositResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;cleanDBResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:cleanDBResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByMonthAndType&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;withdrawResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:withdrawResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionHistory&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionHistory&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositions&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositions&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByAmount&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByAmount&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;cleanDB&quot;&gt; &lt;wsdl:part element=&quot;tns:cleanDB&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;requestLoan&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoan&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;startupJmsListener&quot;&gt; &lt;wsdl:part element=&quot;tns:startupJmsListener&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;setParameterResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:setParameterResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;billPayResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:billPayResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;createAccountResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:createAccountResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsOnDate&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsOnDate&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccountResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccountResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;withdraw&quot;&gt; &lt;wsdl:part element=&quot;tns:withdraw&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateCustomerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:updateCustomerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByAmountResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByAmountResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByToFromDate&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByMonthAndTypeResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByMonthAndTypeResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;shutdownJmsListener&quot;&gt; &lt;wsdl:part element=&quot;tns:shutdownJmsListener&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPosition&quot;&gt; &lt;wsdl:part element=&quot;tns:getPosition&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;login&quot;&gt; &lt;wsdl:part element=&quot;tns:login&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getCustomerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getCustomerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;startupJmsListenerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:startupJmsListenerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransaction&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransaction&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;setParameter&quot;&gt; &lt;wsdl:part element=&quot;tns:setParameter&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;requestLoanResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoanResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;ParaBankServiceException&quot;&gt; &lt;wsdl:part element=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;transferResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:transferResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;shutdownJmsListenerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:shutdownJmsListenerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;buyPositionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:buyPositionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;sellPosition&quot;&gt; &lt;wsdl:part element=&quot;tns:sellPosition&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccount&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccount&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;billPay&quot;&gt; &lt;wsdl:part element=&quot;tns:billPay&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:portType name=&quot;ParaBankService&quot;&gt; &lt;wsdl:operation name=&quot;startupJmsListener&quot;&gt; &lt;wsdl:input message=&quot;tns:startupJmsListener&quot; name=&quot;startupJmsListener&quot;/&gt; &lt;wsdl:output message=&quot;tns:startupJmsListenerResponse&quot; name=&quot;startupJmsListenerResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;buyPosition&quot;&gt; &lt;wsdl:input message=&quot;tns:buyPosition&quot; name=&quot;buyPosition&quot;/&gt; &lt;wsdl:output message=&quot;tns:buyPositionResponse&quot; name=&quot;buyPositionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getCustomer&quot;&gt; &lt;wsdl:input message=&quot;tns:getCustomer&quot; name=&quot;getCustomer&quot;/&gt; &lt;wsdl:output message=&quot;tns:getCustomerResponse&quot; name=&quot;getCustomerResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;initializeDB&quot;&gt; &lt;wsdl:input message=&quot;tns:initializeDB&quot; name=&quot;initializeDB&quot;/&gt; &lt;wsdl:output message=&quot;tns:initializeDBResponse&quot; name=&quot;initializeDBResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;createAccount&quot;&gt; &lt;wsdl:input message=&quot;tns:createAccount&quot; name=&quot;createAccount&quot;/&gt; &lt;wsdl:output message=&quot;tns:createAccountResponse&quot; name=&quot;createAccountResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccounts&quot;&gt; &lt;wsdl:input message=&quot;tns:getAccounts&quot; name=&quot;getAccounts&quot;/&gt; &lt;wsdl:output message=&quot;tns:getAccountsResponse&quot; name=&quot;getAccountsResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactions&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactions&quot; name=&quot;getTransactions&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsResponse&quot; name=&quot;getTransactionsResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsOnDate&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsOnDate&quot; name=&quot;getTransactionsOnDate&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsOnDateResponse&quot; name=&quot;getTransactionsOnDateResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;withdraw&quot;&gt; &lt;wsdl:input message=&quot;tns:withdraw&quot; name=&quot;withdraw&quot;/&gt; &lt;wsdl:output message=&quot;tns:withdrawResponse&quot; name=&quot;withdrawResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateCustomer&quot;&gt; &lt;wsdl:input message=&quot;tns:updateCustomer&quot; name=&quot;updateCustomer&quot;/&gt; &lt;wsdl:output message=&quot;tns:updateCustomerResponse&quot; name=&quot;updateCustomerResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;deposit&quot;&gt; &lt;wsdl:input message=&quot;tns:deposit&quot; name=&quot;deposit&quot;/&gt; &lt;wsdl:output message=&quot;tns:depositResponse&quot; name=&quot;depositResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsByToFromDate&quot; name=&quot;getTransactionsByToFromDate&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsByToFromDateResponse&quot; name=&quot;getTransactionsByToFromDateResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;shutdownJmsListener&quot;&gt; &lt;wsdl:input message=&quot;tns:shutdownJmsListener&quot; name=&quot;shutdownJmsListener&quot;/&gt; &lt;wsdl:output message=&quot;tns:shutdownJmsListenerResponse&quot; name=&quot;shutdownJmsListenerResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPosition&quot;&gt; &lt;wsdl:input message=&quot;tns:getPosition&quot; name=&quot;getPosition&quot;/&gt; &lt;wsdl:output message=&quot;tns:getPositionResponse&quot; name=&quot;getPositionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;transfer&quot;&gt; &lt;wsdl:input message=&quot;tns:transfer&quot; name=&quot;transfer&quot;/&gt; &lt;wsdl:output message=&quot;tns:transferResponse&quot; name=&quot;transferResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;login&quot;&gt; &lt;wsdl:input message=&quot;tns:login&quot; name=&quot;login&quot;/&gt; &lt;wsdl:output message=&quot;tns:loginResponse&quot; name=&quot;loginResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsByMonthAndType&quot; name=&quot;getTransactionsByMonthAndType&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsByMonthAndTypeResponse&quot; name=&quot;getTransactionsByMonthAndTypeResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositionHistory&quot;&gt; &lt;wsdl:input message=&quot;tns:getPositionHistory&quot; name=&quot;getPositionHistory&quot;/&gt; &lt;wsdl:output message=&quot;tns:getPositionHistoryResponse&quot; name=&quot;getPositionHistoryResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransaction&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransaction&quot; name=&quot;getTransaction&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionResponse&quot; name=&quot;getTransactionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;setParameter&quot;&gt; &lt;wsdl:input message=&quot;tns:setParameter&quot; name=&quot;setParameter&quot;/&gt; &lt;wsdl:output message=&quot;tns:setParameterResponse&quot; name=&quot;setParameterResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositions&quot;&gt; &lt;wsdl:input message=&quot;tns:getPositions&quot; name=&quot;getPositions&quot;/&gt; &lt;wsdl:output message=&quot;tns:getPositionsResponse&quot; name=&quot;getPositionsResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByAmount&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsByAmount&quot; name=&quot;getTransactionsByAmount&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsByAmountResponse&quot; name=&quot;getTransactionsByAmountResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;sellPosition&quot;&gt; &lt;wsdl:input message=&quot;tns:sellPosition&quot; name=&quot;sellPosition&quot;/&gt; &lt;wsdl:output message=&quot;tns:sellPositionResponse&quot; name=&quot;sellPositionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;cleanDB&quot;&gt; &lt;wsdl:input message=&quot;tns:cleanDB&quot; name=&quot;cleanDB&quot;/&gt; &lt;wsdl:output message=&quot;tns:cleanDBResponse&quot; name=&quot;cleanDBResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;wsdl:input message=&quot;tns:requestLoan&quot; name=&quot;requestLoan&quot;/&gt; &lt;wsdl:output message=&quot;tns:requestLoanResponse&quot; name=&quot;requestLoanResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccount&quot;&gt; &lt;wsdl:input message=&quot;tns:getAccount&quot; name=&quot;getAccount&quot;/&gt; &lt;wsdl:output message=&quot;tns:getAccountResponse&quot; name=&quot;getAccountResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;billPay&quot;&gt; &lt;wsdl:input message=&quot;tns:billPay&quot; name=&quot;billPay&quot;/&gt; &lt;wsdl:output message=&quot;tns:billPayResponse&quot; name=&quot;billPayResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name=&quot;ParaBankSoapBinding&quot; type=&quot;tns:ParaBankService&quot;&gt; &lt;soap:binding style=&quot;document&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot;/&gt; &lt;wsdl:operation name=&quot;startupJmsListener&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;startupJmsListener&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;startupJmsListenerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;buyPosition&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;buyPosition&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;buyPositionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getCustomer&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getCustomer&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getCustomerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;initializeDB&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;initializeDB&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;initializeDBResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;createAccount&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;createAccount&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;createAccountResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccounts&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getAccounts&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getAccountsResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactions&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactions&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsOnDate&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsOnDate&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsOnDateResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;withdraw&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;withdraw&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;withdrawResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateCustomer&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;updateCustomer&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;updateCustomerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;deposit&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;deposit&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;depositResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsByToFromDateResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;shutdownJmsListener&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;shutdownJmsListener&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;shutdownJmsListenerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPosition&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getPosition&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getPositionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;transfer&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;transfer&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;transferResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;login&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;login&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;loginResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsByMonthAndTypeResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositionHistory&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getPositionHistory&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getPositionHistoryResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransaction&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransaction&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;setParameter&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;setParameter&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;setParameterResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositions&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getPositions&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getPositionsResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByAmount&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsByAmount&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsByAmountResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;sellPosition&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;sellPosition&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;sellPositionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;cleanDB&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;cleanDB&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;cleanDBResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;requestLoan&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;requestLoanResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccount&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getAccount&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getAccountResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;billPay&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;billPay&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;billPayResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name=&quot;ParaBank&quot;&gt; &lt;wsdl:port binding=&quot;tns:ParaBankSoapBinding&quot; name=&quot;ParaBankServiceImplPort&quot;&gt; &lt;soap:address location=&quot;http://localhost:8080/parabank/services/ParaBank&quot;/&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;wsdl:definitions name=&quot;ParaBank&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; xmlns:ns1=&quot;http://schemas.xmlsoap.org/soap/http&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;wsdl:types&gt; &lt;xs:schema attributeFormDefault=&quot;unqualified&quot; elementFormDefault=&quot;qualified&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; version=&quot;1.0&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;xs:element name=&quot;account&quot; type=&quot;tns:account&quot;/&gt; &lt;xs:element name=&quot;billPay&quot; type=&quot;tns:billPay&quot;/&gt; &lt;xs:element name=&quot;billPayResponse&quot; type=&quot;tns:billPayResponse&quot;/&gt; &lt;xs:element name=&quot;billPayResult&quot; type=&quot;tns:billPayResult&quot;/&gt; &lt;xs:element name=&quot;buyPosition&quot; type=&quot;tns:buyPosition&quot;/&gt; &lt;xs:element name=&quot;buyPositionResponse&quot; type=&quot;tns:buyPositionResponse&quot;/&gt; &lt;xs:element name=&quot;cleanDB&quot; type=&quot;tns:cleanDB&quot;/&gt; &lt;xs:element name=&quot;cleanDBResponse&quot; type=&quot;tns:cleanDBResponse&quot;/&gt; &lt;xs:element name=&quot;createAccount&quot; type=&quot;tns:createAccount&quot;/&gt; &lt;xs:element name=&quot;createAccountResponse&quot; type=&quot;tns:createAccountResponse&quot;/&gt; &lt;xs:element name=&quot;customer&quot; type=&quot;tns:customer&quot;/&gt; &lt;xs:element name=&quot;deposit&quot; type=&quot;tns:deposit&quot;/&gt; &lt;xs:element name=&quot;depositResponse&quot; type=&quot;tns:depositResponse&quot;/&gt; &lt;xs:element name=&quot;getAccount&quot; type=&quot;tns:getAccount&quot;/&gt; &lt;xs:element name=&quot;getAccountResponse&quot; type=&quot;tns:getAccountResponse&quot;/&gt; &lt;xs:element name=&quot;getAccounts&quot; type=&quot;tns:getAccounts&quot;/&gt; &lt;xs:element name=&quot;getAccountsResponse&quot; type=&quot;tns:getAccountsResponse&quot;/&gt; &lt;xs:element name=&quot;getCustomer&quot; type=&quot;tns:getCustomer&quot;/&gt; &lt;xs:element name=&quot;getCustomerResponse&quot; type=&quot;tns:getCustomerResponse&quot;/&gt; &lt;xs:element name=&quot;getPosition&quot; type=&quot;tns:getPosition&quot;/&gt; &lt;xs:element name=&quot;getPositionHistory&quot; type=&quot;tns:getPositionHistory&quot;/&gt; &lt;xs:element name=&quot;getPositionHistoryResponse&quot; type=&quot;tns:getPositionHistoryResponse&quot;/&gt; &lt;xs:element name=&quot;getPositionResponse&quot; type=&quot;tns:getPositionResponse&quot;/&gt; &lt;xs:element name=&quot;getPositions&quot; type=&quot;tns:getPositions&quot;/&gt; &lt;xs:element name=&quot;getPositionsResponse&quot; type=&quot;tns:getPositionsResponse&quot;/&gt; &lt;xs:element name=&quot;getTransaction&quot; type=&quot;tns:getTransaction&quot;/&gt; &lt;xs:element name=&quot;getTransactionResponse&quot; type=&quot;tns:getTransactionResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactions&quot; type=&quot;tns:getTransactions&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByAmount&quot; type=&quot;tns:getTransactionsByAmount&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByAmountResponse&quot; type=&quot;tns:getTransactionsByAmountResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByMonthAndType&quot; type=&quot;tns:getTransactionsByMonthAndType&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByMonthAndTypeResponse&quot; type=&quot;tns:getTransactionsByMonthAndTypeResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByToFromDate&quot; type=&quot;tns:getTransactionsByToFromDate&quot;/&gt; &lt;xs:element name=&quot;getTransactionsByToFromDateResponse&quot; type=&quot;tns:getTransactionsByToFromDateResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsOnDate&quot; type=&quot;tns:getTransactionsOnDate&quot;/&gt; &lt;xs:element name=&quot;getTransactionsOnDateResponse&quot; type=&quot;tns:getTransactionsOnDateResponse&quot;/&gt; &lt;xs:element name=&quot;getTransactionsResponse&quot; type=&quot;tns:getTransactionsResponse&quot;/&gt; &lt;xs:element name=&quot;historyPoint&quot; type=&quot;tns:historyPoint&quot;/&gt; &lt;xs:element name=&quot;initializeDB&quot; type=&quot;tns:initializeDB&quot;/&gt; &lt;xs:element name=&quot;initializeDBResponse&quot; type=&quot;tns:initializeDBResponse&quot;/&gt; &lt;xs:element name=&quot;loanResponse&quot; type=&quot;tns:loanResponse&quot;/&gt; &lt;xs:element name=&quot;login&quot; type=&quot;tns:login&quot;/&gt; &lt;xs:element name=&quot;loginResponse&quot; type=&quot;tns:loginResponse&quot;/&gt; &lt;xs:element name=&quot;payee&quot; type=&quot;tns:payee&quot;/&gt; &lt;xs:element name=&quot;position&quot; type=&quot;tns:position&quot;/&gt; &lt;xs:element name=&quot;requestLoan&quot; type=&quot;tns:requestLoan&quot;/&gt; &lt;xs:element name=&quot;requestLoanResponse&quot; type=&quot;tns:requestLoanResponse&quot;/&gt; &lt;xs:element name=&quot;sellPosition&quot; type=&quot;tns:sellPosition&quot;/&gt; &lt;xs:element name=&quot;sellPositionResponse&quot; type=&quot;tns:sellPositionResponse&quot;/&gt; &lt;xs:element name=&quot;setParameter&quot; type=&quot;tns:setParameter&quot;/&gt; &lt;xs:element name=&quot;setParameterResponse&quot; type=&quot;tns:setParameterResponse&quot;/&gt; &lt;xs:element name=&quot;shutdownJmsListener&quot; type=&quot;tns:shutdownJmsListener&quot;/&gt; &lt;xs:element name=&quot;shutdownJmsListenerResponse&quot; type=&quot;tns:shutdownJmsListenerResponse&quot;/&gt; &lt;xs:element name=&quot;startupJmsListener&quot; type=&quot;tns:startupJmsListener&quot;/&gt; &lt;xs:element name=&quot;startupJmsListenerResponse&quot; type=&quot;tns:startupJmsListenerResponse&quot;/&gt; &lt;xs:element name=&quot;transaction&quot; type=&quot;tns:transaction&quot;/&gt; &lt;xs:element name=&quot;transfer&quot; type=&quot;tns:transfer&quot;/&gt; &lt;xs:element name=&quot;transferResponse&quot; type=&quot;tns:transferResponse&quot;/&gt; &lt;xs:element name=&quot;updateCustomer&quot; type=&quot;tns:updateCustomer&quot;/&gt; &lt;xs:element name=&quot;updateCustomerResponse&quot; type=&quot;tns:updateCustomerResponse&quot;/&gt; &lt;xs:element name=&quot;withdraw&quot; type=&quot;tns:withdraw&quot;/&gt; &lt;xs:element name=&quot;withdrawResponse&quot; type=&quot;tns:withdrawResponse&quot;/&gt; &lt;xs:complexType name=&quot;startupJmsListener&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;startupJmsListenerResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;buyPosition&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;symbol&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;shares&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;pricePerShare&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;buyPositionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;position&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;symbol&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;shares&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;purchasePrice&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getCustomer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getCustomerResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:customer&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;customer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;firstName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;lastName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;address&quot; type=&quot;tns:address&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;phoneNumber&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;ssn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;address&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;street&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;city&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;state&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;zipCode&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;initializeDB&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;initializeDBResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;createAccount&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;newAccountType&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;fromAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;createAccountResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:account&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;account&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;type&quot; type=&quot;tns:accountType&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;balance&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccounts&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccountsResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:account&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactions&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;transaction&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;id&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;type&quot; type=&quot;tns:transactionType&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;date&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;description&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsOnDate&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;onDate&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsOnDateResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;withdraw&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;withdrawResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;withdrawReturn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateCustomer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;firstName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;lastName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;street&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;city&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;state&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;zipCode&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;phoneNumber&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;ssn&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;username&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;password&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;updateCustomerResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerUpdateResult&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;deposit&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;depositResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;depositReturn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;fromDate&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;toDate&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByToFromDateResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;shutdownJmsListener&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;shutdownJmsListenerResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPosition&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;transfer&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;fromAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;toAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;transferResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;transferReturn&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;login&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;username&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;password&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loginResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;tns:customer&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;month&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;type&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByMonthAndTypeResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionHistory&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;startDate&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;endDate&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionHistoryResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:historyPoint&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;historyPoint&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;symbol&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;date&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;closingPrice&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransaction&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;transactionId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;setParameter&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element name=&quot;value&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;setParameterResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositions&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getPositionsResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByAmount&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getTransactionsByAmountResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:transaction&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;sellPosition&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;positionId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;shares&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;pricePerShare&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;sellPositionResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element maxOccurs=&quot;unbounded&quot; ref=&quot;tns:position&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;cleanDB&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;cleanDBResponse&quot;&gt; &lt;xs:sequence/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;requestLoan&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;downPayment&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;fromAccountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;requestLoanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:loanResponse&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;responseDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;loanProviderName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;approved&quot; type=&quot;xs:boolean&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccount&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;getAccountResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:account&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;billPay&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;arg0&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element name=&quot;arg1&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element name=&quot;arg2&quot; type=&quot;tns:payee&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;payee&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;accountNumber&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;address&quot; type=&quot;tns:address&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;name&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;phoneNumber&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;billPayResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element name=&quot;return&quot; type=&quot;tns:billPayResult&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;billPayResult&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;amount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;payeeName&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:simpleType name=&quot;accountType&quot;&gt; &lt;xs:restriction base=&quot;xs:string&quot;&gt; &lt;xs:enumeration value=&quot;CHECKING&quot;/&gt; &lt;xs:enumeration value=&quot;SAVINGS&quot;/&gt; &lt;xs:enumeration value=&quot;LOAN&quot;/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;xs:simpleType name=&quot;transactionType&quot;&gt; &lt;xs:restriction base=&quot;xs:string&quot;&gt; &lt;xs:enumeration value=&quot;Credit&quot;/&gt; &lt;xs:enumeration value=&quot;Debit&quot;/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;xs:element name=&quot;ParaBankServiceException&quot; type=&quot;tns:ParaBankServiceException&quot;/&gt; &lt;xs:complexType name=&quot;ParaBankServiceException&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:schema&gt; &lt;/wsdl:types&gt; &lt;wsdl:message name=&quot;buyPosition&quot;&gt; &lt;wsdl:part element=&quot;tns:buyPosition&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getCustomer&quot;&gt; &lt;wsdl:part element=&quot;tns:getCustomer&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;initializeDB&quot;&gt; &lt;wsdl:part element=&quot;tns:initializeDB&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;initializeDBResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:initializeDBResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;sellPositionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:sellPositionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;createAccount&quot;&gt; &lt;wsdl:part element=&quot;tns:createAccount&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccounts&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccounts&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccountsResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccountsResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactions&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactions&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;loginResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:loginResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionHistoryResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionHistoryResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateCustomer&quot;&gt; &lt;wsdl:part element=&quot;tns:updateCustomer&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;deposit&quot;&gt; &lt;wsdl:part element=&quot;tns:deposit&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsOnDateResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsOnDateResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;transfer&quot;&gt; &lt;wsdl:part element=&quot;tns:transfer&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByToFromDateResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByToFromDateResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionsResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionsResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;depositResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:depositResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;cleanDBResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:cleanDBResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByMonthAndType&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;withdrawResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:withdrawResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionHistory&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionHistory&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositions&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositions&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByAmount&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByAmount&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;cleanDB&quot;&gt; &lt;wsdl:part element=&quot;tns:cleanDB&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;requestLoan&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoan&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;startupJmsListener&quot;&gt; &lt;wsdl:part element=&quot;tns:startupJmsListener&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;setParameterResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:setParameterResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;billPayResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:billPayResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;createAccountResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:createAccountResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsOnDate&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsOnDate&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccountResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccountResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;withdraw&quot;&gt; &lt;wsdl:part element=&quot;tns:withdraw&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;updateCustomerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:updateCustomerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByAmountResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByAmountResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByToFromDate&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsByMonthAndTypeResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsByMonthAndTypeResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;shutdownJmsListener&quot;&gt; &lt;wsdl:part element=&quot;tns:shutdownJmsListener&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPosition&quot;&gt; &lt;wsdl:part element=&quot;tns:getPosition&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;login&quot;&gt; &lt;wsdl:part element=&quot;tns:login&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getPositionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getPositionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getCustomerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getCustomerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;startupJmsListenerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:startupJmsListenerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransaction&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransaction&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;setParameter&quot;&gt; &lt;wsdl:part element=&quot;tns:setParameter&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;requestLoanResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoanResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;ParaBankServiceException&quot;&gt; &lt;wsdl:part element=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;transferResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:transferResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getTransactionsResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:getTransactionsResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;shutdownJmsListenerResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:shutdownJmsListenerResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;buyPositionResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:buyPositionResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;sellPosition&quot;&gt; &lt;wsdl:part element=&quot;tns:sellPosition&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;getAccount&quot;&gt; &lt;wsdl:part element=&quot;tns:getAccount&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;billPay&quot;&gt; &lt;wsdl:part element=&quot;tns:billPay&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:portType name=&quot;ParaBankService&quot;&gt; &lt;wsdl:operation name=&quot;startupJmsListener&quot;&gt; &lt;wsdl:input message=&quot;tns:startupJmsListener&quot; name=&quot;startupJmsListener&quot;/&gt; &lt;wsdl:output message=&quot;tns:startupJmsListenerResponse&quot; name=&quot;startupJmsListenerResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;buyPosition&quot;&gt; &lt;wsdl:input message=&quot;tns:buyPosition&quot; name=&quot;buyPosition&quot;/&gt; &lt;wsdl:output message=&quot;tns:buyPositionResponse&quot; name=&quot;buyPositionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getCustomer&quot;&gt; &lt;wsdl:input message=&quot;tns:getCustomer&quot; name=&quot;getCustomer&quot;/&gt; &lt;wsdl:output message=&quot;tns:getCustomerResponse&quot; name=&quot;getCustomerResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;initializeDB&quot;&gt; &lt;wsdl:input message=&quot;tns:initializeDB&quot; name=&quot;initializeDB&quot;/&gt; &lt;wsdl:output message=&quot;tns:initializeDBResponse&quot; name=&quot;initializeDBResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;createAccount&quot;&gt; &lt;wsdl:input message=&quot;tns:createAccount&quot; name=&quot;createAccount&quot;/&gt; &lt;wsdl:output message=&quot;tns:createAccountResponse&quot; name=&quot;createAccountResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccounts&quot;&gt; &lt;wsdl:input message=&quot;tns:getAccounts&quot; name=&quot;getAccounts&quot;/&gt; &lt;wsdl:output message=&quot;tns:getAccountsResponse&quot; name=&quot;getAccountsResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactions&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactions&quot; name=&quot;getTransactions&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsResponse&quot; name=&quot;getTransactionsResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsOnDate&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsOnDate&quot; name=&quot;getTransactionsOnDate&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsOnDateResponse&quot; name=&quot;getTransactionsOnDateResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;withdraw&quot;&gt; &lt;wsdl:input message=&quot;tns:withdraw&quot; name=&quot;withdraw&quot;/&gt; &lt;wsdl:output message=&quot;tns:withdrawResponse&quot; name=&quot;withdrawResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateCustomer&quot;&gt; &lt;wsdl:input message=&quot;tns:updateCustomer&quot; name=&quot;updateCustomer&quot;/&gt; &lt;wsdl:output message=&quot;tns:updateCustomerResponse&quot; name=&quot;updateCustomerResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;deposit&quot;&gt; &lt;wsdl:input message=&quot;tns:deposit&quot; name=&quot;deposit&quot;/&gt; &lt;wsdl:output message=&quot;tns:depositResponse&quot; name=&quot;depositResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsByToFromDate&quot; name=&quot;getTransactionsByToFromDate&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsByToFromDateResponse&quot; name=&quot;getTransactionsByToFromDateResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;shutdownJmsListener&quot;&gt; &lt;wsdl:input message=&quot;tns:shutdownJmsListener&quot; name=&quot;shutdownJmsListener&quot;/&gt; &lt;wsdl:output message=&quot;tns:shutdownJmsListenerResponse&quot; name=&quot;shutdownJmsListenerResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPosition&quot;&gt; &lt;wsdl:input message=&quot;tns:getPosition&quot; name=&quot;getPosition&quot;/&gt; &lt;wsdl:output message=&quot;tns:getPositionResponse&quot; name=&quot;getPositionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;transfer&quot;&gt; &lt;wsdl:input message=&quot;tns:transfer&quot; name=&quot;transfer&quot;/&gt; &lt;wsdl:output message=&quot;tns:transferResponse&quot; name=&quot;transferResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;login&quot;&gt; &lt;wsdl:input message=&quot;tns:login&quot; name=&quot;login&quot;/&gt; &lt;wsdl:output message=&quot;tns:loginResponse&quot; name=&quot;loginResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsByMonthAndType&quot; name=&quot;getTransactionsByMonthAndType&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsByMonthAndTypeResponse&quot; name=&quot;getTransactionsByMonthAndTypeResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositionHistory&quot;&gt; &lt;wsdl:input message=&quot;tns:getPositionHistory&quot; name=&quot;getPositionHistory&quot;/&gt; &lt;wsdl:output message=&quot;tns:getPositionHistoryResponse&quot; name=&quot;getPositionHistoryResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransaction&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransaction&quot; name=&quot;getTransaction&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionResponse&quot; name=&quot;getTransactionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;setParameter&quot;&gt; &lt;wsdl:input message=&quot;tns:setParameter&quot; name=&quot;setParameter&quot;/&gt; &lt;wsdl:output message=&quot;tns:setParameterResponse&quot; name=&quot;setParameterResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositions&quot;&gt; &lt;wsdl:input message=&quot;tns:getPositions&quot; name=&quot;getPositions&quot;/&gt; &lt;wsdl:output message=&quot;tns:getPositionsResponse&quot; name=&quot;getPositionsResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByAmount&quot;&gt; &lt;wsdl:input message=&quot;tns:getTransactionsByAmount&quot; name=&quot;getTransactionsByAmount&quot;/&gt; &lt;wsdl:output message=&quot;tns:getTransactionsByAmountResponse&quot; name=&quot;getTransactionsByAmountResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;sellPosition&quot;&gt; &lt;wsdl:input message=&quot;tns:sellPosition&quot; name=&quot;sellPosition&quot;/&gt; &lt;wsdl:output message=&quot;tns:sellPositionResponse&quot; name=&quot;sellPositionResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;cleanDB&quot;&gt; &lt;wsdl:input message=&quot;tns:cleanDB&quot; name=&quot;cleanDB&quot;/&gt; &lt;wsdl:output message=&quot;tns:cleanDBResponse&quot; name=&quot;cleanDBResponse&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;wsdl:input message=&quot;tns:requestLoan&quot; name=&quot;requestLoan&quot;/&gt; &lt;wsdl:output message=&quot;tns:requestLoanResponse&quot; name=&quot;requestLoanResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccount&quot;&gt; &lt;wsdl:input message=&quot;tns:getAccount&quot; name=&quot;getAccount&quot;/&gt; &lt;wsdl:output message=&quot;tns:getAccountResponse&quot; name=&quot;getAccountResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;billPay&quot;&gt; &lt;wsdl:input message=&quot;tns:billPay&quot; name=&quot;billPay&quot;/&gt; &lt;wsdl:output message=&quot;tns:billPayResponse&quot; name=&quot;billPayResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name=&quot;ParaBankSoapBinding&quot; type=&quot;tns:ParaBankService&quot;&gt; &lt;soap:binding style=&quot;document&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot;/&gt; &lt;wsdl:operation name=&quot;startupJmsListener&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;startupJmsListener&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;startupJmsListenerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;buyPosition&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;buyPosition&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;buyPositionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getCustomer&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getCustomer&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getCustomerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;initializeDB&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;initializeDB&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;initializeDBResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;createAccount&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;createAccount&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;createAccountResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccounts&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getAccounts&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getAccountsResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactions&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactions&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsOnDate&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsOnDate&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsOnDateResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;withdraw&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;withdraw&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;withdrawResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;updateCustomer&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;updateCustomer&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;updateCustomerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;deposit&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;deposit&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;depositResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsByToFromDate&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsByToFromDateResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;shutdownJmsListener&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;shutdownJmsListener&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;shutdownJmsListenerResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPosition&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getPosition&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getPositionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;transfer&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;transfer&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;transferResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;login&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;login&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;loginResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsByMonthAndType&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsByMonthAndTypeResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositionHistory&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getPositionHistory&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getPositionHistoryResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransaction&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransaction&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;setParameter&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;setParameter&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;setParameterResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getPositions&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getPositions&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getPositionsResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getTransactionsByAmount&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getTransactionsByAmount&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getTransactionsByAmountResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;sellPosition&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;sellPosition&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;sellPositionResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;cleanDB&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;cleanDB&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;cleanDBResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;requestLoan&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;requestLoanResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;getAccount&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;getAccount&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;getAccountResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;wsdl:operation name=&quot;billPay&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;billPay&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;billPayResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name=&quot;ParaBank&quot;&gt; &lt;wsdl:port binding=&quot;tns:ParaBankSoapBinding&quot; name=&quot;ParaBankServiceImplPort&quot;&gt; &lt;soap:address location=&quot;http://localhost:8080/parabank/services/ParaBank&quot;/&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> <ignoreOrder>true</ignoreOrder> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <excludeColumnName>cartId</excludeColumnName> <value></value> <name>definitions</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>66</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://schemas.xmlsoap.org/soap/http</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>tns</prefix> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBank</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://service.parabank.parasoft.com/</value> <name>targetNamespace</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>types</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>schema</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>134</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>attributeFormDefault</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>qualified</value> <name>elementFormDefault</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://service.parabank.parasoft.com/</value> <name>targetNamespace</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>1.0</value> <name>version</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>account</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:account</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPay</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPayResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResult</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPayResult</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:buyPosition</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:buyPositionResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cleanDB</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cleanDBResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:createAccount</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:createAccountResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customer</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:customer</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:deposit</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>depositResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:depositResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccount</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccountResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccounts</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountsResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccountsResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getCustomer</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getCustomerResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPosition</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionHistory</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionHistoryResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositions</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionsResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransaction</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactions</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByAmount</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmountResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByAmountResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByMonthAndType</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndTypeResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByMonthAndTypeResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByToFromDate</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByToFromDateResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsOnDate</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsOnDateResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>historyPoint</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:historyPoint</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:initializeDB</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:initializeDBResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loanResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:login</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loginResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loginResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>payee</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:payee</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>position</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:position</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoan</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoanResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:sellPosition</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:sellPositionResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:setParameter</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameterResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:setParameterResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:shutdownJmsListener</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:shutdownJmsListenerResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:startupJmsListener</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:startupJmsListenerResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transaction</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transfer</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transferResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transferResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateCustomer</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateCustomerResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:withdraw</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdrawResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:withdrawResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>6</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>name</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>symbol</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shares</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>pricePerShare</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:position</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>position</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>6</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>positionId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>name</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>symbol</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shares</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>purchasePrice</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:customer</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>6</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>id</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>firstName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>lastName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>address</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:address</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>phoneNumber</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ssn</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>address</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>street</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>city</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>state</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>zipCode</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>newAccountType</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>fromAccountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:account</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>account</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>id</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>type</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:accountType</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>balance</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:account</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transaction</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>6</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>id</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>type</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transactionType</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>date</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>description</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>onDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdrawResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdrawReturn</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>11</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>firstName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>lastName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>street</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>city</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>state</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>zipCode</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>phoneNumber</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ssn</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>username</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>password</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerUpdateResult</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>depositResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>depositReturn</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>fromDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>toDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>positionId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:position</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>fromAccountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>toAccountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transferResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transferReturn</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>username</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>password</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loginResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:customer</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>month</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>type</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndTypeResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>positionId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>endDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:historyPoint</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>historyPoint</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>symbol</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>date</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>closingPrice</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transactionId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>name</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>value</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameterResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:position</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transaction</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>positionId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shares</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>pricePerShare</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unbounded</value> <name>maxOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:position</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>downPayment</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>fromAccountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loanResponse</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>responseDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanProviderName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>approved</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:boolean</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>message</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:account</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>arg0</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>arg1</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>arg2</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:payee</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>payee</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountNumber</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>address</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:address</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>name</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>phoneNumber</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>return</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPayResult</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResult</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>amount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>payeeName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>simpleType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>restriction</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>base</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>enumeration</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>CHECKING</value> <name>value</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>enumeration</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>SAVINGS</value> <name>value</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>enumeration</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>LOAN</value> <name>value</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>simpleType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transactionType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>restriction</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>base</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>enumeration</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Credit</value> <name>value</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>enumeration</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>Debit</value> <name>value</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>message</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:buyPosition</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getCustomer</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:initializeDB</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:initializeDBResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:sellPositionResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:createAccount</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccounts</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccountsResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactions</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loginResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loginResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionHistoryResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateCustomer</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:deposit</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsOnDateResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transfer</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByToFromDateResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionsResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>depositResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:depositResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cleanDBResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByMonthAndType</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdrawResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:withdrawResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionHistory</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositions</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByAmount</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cleanDB</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoan</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:startupJmsListener</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameterResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:setParameterResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPayResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:createAccountResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsOnDate</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccountResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:withdraw</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateCustomerResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByAmountResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByToFromDate</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndTypeResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByMonthAndTypeResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:shutdownJmsListener</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPosition</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:login</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getCustomerResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:startupJmsListenerResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransaction</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:setParameter</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoanResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transferResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transferResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:shutdownJmsListenerResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:buyPositionResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:sellPosition</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccount</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPay</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>portType</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>28</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankService</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:startupJmsListener</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:startupJmsListenerResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:buyPosition</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:buyPositionResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPositionResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getCustomer</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getCustomerResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomerResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:initializeDB</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:initializeDBResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDBResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:createAccount</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:createAccountResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccountResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccounts</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccountsResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountsResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactions</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsOnDate</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsOnDateResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDateResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:withdraw</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:withdrawResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdrawResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateCustomer</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:updateCustomerResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomerResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:deposit</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:depositResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>depositResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByToFromDate</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByToFromDateResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDateResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:shutdownJmsListener</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:shutdownJmsListenerResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPosition</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transfer</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:transferResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transferResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:login</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loginResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loginResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByMonthAndType</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByMonthAndTypeResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndTypeResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionHistory</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionHistoryResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistoryResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransaction</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:setParameter</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:setParameterResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameterResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositions</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getPositionsResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionsResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByAmount</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getTransactionsByAmountResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmountResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:sellPosition</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:sellPositionResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPositionResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cleanDB</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:cleanDBResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDBResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoan</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoanResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccount</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:getAccountResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPay</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:billPayResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>binding</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>30</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankSoapBinding</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankService</value> <name>type</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>binding</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/http</value> <name>transport</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>startupJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>buyPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>initializeDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>createAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccounts</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsOnDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdraw</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>withdrawResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>updateCustomerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>deposit</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>depositResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDate</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByToFromDateResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListener</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>shutdownJmsListenerResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transfer</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>transferResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>login</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loginResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndType</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByMonthAndTypeResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistory</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionHistoryResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransaction</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameter</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>setParameterResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositions</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getPositionsResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getTransactionsByAmountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPosition</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>sellPositionResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDB</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>cleanDBResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccount</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>getAccountResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPay</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>billPayResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>service</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBank</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>port</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankSoapBinding</value> <name>binding</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceImplPort</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>address</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>${PARABANK_SOAP_ENDPOINT}</value> <name>location</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> <numIgnoredXPaths>3</numIgnoredXPaths> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/definitions/types/schema/complexType*/sequence/element*</xpath> <attributeName>name</attributeName> <diff>4</diff> <operation2>1</operation2> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/definitions/types/schema/complexType*/sequence/element*</xpath> <attributeName>type</attributeName> <diff>4</diff> <operation2>1</operation2> </IgnoredXPath> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/definitions/types/schema/complexType*</xpath> <diff>2</diff> <operation1>2</operation1> </IgnoredXPath> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <httpMethod>GET</httpMethod> </RESTResourceMethod> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <selectedIndex>1</selectedIndex> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>127</testID> <enabled>true</enabled> <name>getAccount</name> <performanceGroup>5</performanceGroup> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <iconName>SOAPClient</iconName> <name>getAccount</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/ParaBank?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 18, 2022, 5:29:04 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getAccountResponse xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt; &lt;ns2:account&gt; &lt;id&gt;12345&lt;/id&gt; &lt;customerId&gt;12212&lt;/customerId&gt; &lt;type&gt;CHECKING&lt;/type&gt; &lt;balance&gt;-2300.00&lt;/balance&gt; &lt;/ns2:account&gt; &lt;/ns2:getAccountResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getAccountResponse xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt; &lt;ns2:account&gt; &lt;id&gt;12345&lt;/id&gt; &lt;customerId&gt;12212&lt;/customerId&gt; &lt;type&gt;CHECKING&lt;/type&gt; &lt;balance&gt;-2300.00&lt;/balance&gt; &lt;/ns2:account&gt; &lt;/ns2:getAccountResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getAccountResponse</name> <namespace>true</namespace> <prefix>ns2</prefix> <uri>http://service.parabank.parasoft.com/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns2</prefix> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>account</name> <namespace>true</namespace> <prefix>ns2</prefix> <uri>http://service.parabank.parasoft.com/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>12345</value> <name>id</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>12212</value> <name>customerId</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>CHECKING</value> <name>type</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>-2300.00</value> <name>balance</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> <numIgnoredXPaths>1</numIgnoredXPaths> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/getAccountResponse/account/balance</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Test client for operation &quot;getAccount&quot; in &quot;${WSDL}&quot;.</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_WSDL}</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <SOAPClient_CustomEndpoint>${PARABANK_SOAP_ENDPOINT}</SOAPClient_CustomEndpoint> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/ParaBank</value> </SimpleValue> </WsdlEndpointType> <mode>2</mode> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>12</size> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval(in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <beautify>false</beautify> <longName>getAccount</longName> <faults size="1"> <fault index="0">ParaBankServiceException</fault> </faults> <portTypeNamespace>http://service.parabank.parasoft.com/</portTypeNamespace> <outputName>getAccountResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://service.parabank.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>ParaBankService</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>ParaBankServiceImplPort</portName> <address>http://localhost:8080/parabank/services/ParaBank</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>getAccountResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>getAccountResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>account</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>account</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>4</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>8</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <localName>customerId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>10</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>11</hash> <minOccurs>0</minOccurs> <localName>type</localName> <EnumType className="webtool.soap.EnumType" version="2.5.3"> <hash>12</hash> <values size="3"> <value index="0">CHECKING</value> <value index="1">SAVINGS</value> <value index="2">LOAN</value> </values> <typeName>accountType</typeName> <tns>http://service.parabank.parasoft.com/</tns> <baseType>string</baseType> </EnumType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>13</hash> <minOccurs>0</minOccurs> <localName>balance</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>14</hash> </DecimalType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>4</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>0</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>0</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getAccount</inputName> <methodName>getAccount</methodName> <returnType>{http://service.parabank.parasoft.com/}getAccountResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>getAccount</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>getAccount</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>accountId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>5</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>12345</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Body&gt;&lt;getAccount xmlns=&quot;http://service.parabank.parasoft.com/&quot;&gt;&lt;accountId&gt;0&lt;/accountId&gt;&lt;/getAccount&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getAccount</name> <namespace>true</namespace> <uri>http://service.parabank.parasoft.com/</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0</value> <name>accountId</name> <namespace>true</namespace> <uri>http://service.parabank.parasoft.com/</uri> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>129</testID> <enabled>true</enabled> <name>getCustomer</name> <performanceGroup>7</performanceGroup> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <iconName>SOAPClient</iconName> <name>getCustomer</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/ParaBank?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 18, 2022, 5:28:56 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getCustomerResponse xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt; &lt;ns2:customer&gt; &lt;id&gt;12212&lt;/id&gt; &lt;firstName&gt;John&lt;/firstName&gt; &lt;lastName&gt;Smith&lt;/lastName&gt; &lt;address&gt; &lt;street&gt;1431 Main St&lt;/street&gt; &lt;city&gt;Beverly Hills&lt;/city&gt; &lt;state&gt;CA&lt;/state&gt; &lt;zipCode&gt;90210&lt;/zipCode&gt; &lt;/address&gt; &lt;phoneNumber&gt;310-447-4121&lt;/phoneNumber&gt; &lt;ssn&gt;622-11-9999&lt;/ssn&gt; &lt;/ns2:customer&gt; &lt;/ns2:getCustomerResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:getCustomerResponse xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt; &lt;ns2:customer&gt; &lt;id&gt;12212&lt;/id&gt; &lt;firstName&gt;John&lt;/firstName&gt; &lt;lastName&gt;Smith&lt;/lastName&gt; &lt;address&gt; &lt;street&gt;1431 Main St&lt;/street&gt; &lt;city&gt;Beverly Hills&lt;/city&gt; &lt;state&gt;CA&lt;/state&gt; &lt;zipCode&gt;90210&lt;/zipCode&gt; &lt;/address&gt; &lt;phoneNumber&gt;310-447-4121&lt;/phoneNumber&gt; &lt;ssn&gt;622-11-9999&lt;/ssn&gt; &lt;/ns2:customer&gt; &lt;/ns2:getCustomerResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Test client for operation &quot;getCustomer&quot; in &quot;${WSDL}&quot;.</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${PARABANK_WSDL}</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <SOAPClient_CustomEndpoint>${PARABANK_SOAP_ENDPOINT}</SOAPClient_CustomEndpoint> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/ParaBank</value> </SimpleValue> </WsdlEndpointType> <mode>2</mode> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>12</size> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval(in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <beautify>false</beautify> <longName>getCustomer</longName> <faults size="1"> <fault index="0">ParaBankServiceException</fault> </faults> <portTypeNamespace>http://service.parabank.parasoft.com/</portTypeNamespace> <outputName>getCustomerResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://service.parabank.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>ParaBankService</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>ParaBankServiceImplPort</portName> <address>http://localhost:8080/parabank/services/ParaBank</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>getCustomerResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>getCustomerResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>customer</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>customer</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>6</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <localName>id</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>8</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <minOccurs>0</minOccurs> <localName>firstName</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>10</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>11</hash> <minOccurs>0</minOccurs> <localName>lastName</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>12</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>13</hash> <minOccurs>0</minOccurs> <localName>address</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>14</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>address</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>15</hash> <paramTypesSize>4</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>16</hash> <minOccurs>0</minOccurs> <localName>street</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>12</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>17</hash> <minOccurs>0</minOccurs> <localName>city</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>12</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>18</hash> <minOccurs>0</minOccurs> <localName>state</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>12</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>19</hash> <minOccurs>0</minOccurs> <localName>zipCode</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>12</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>20</hash> <minOccurs>0</minOccurs> <localName>phoneNumber</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>12</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>21</hash> <minOccurs>0</minOccurs> <localName>ssn</localName> <StringType className="webtool.soap.StringType" version="2"> <hash>12</hash> </StringType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>6</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>0</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>getCustomer</inputName> <methodName>getCustomer</methodName> <returnType>{http://service.parabank.parasoft.com/}getCustomerResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>getCustomer</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>getCustomer</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>customerId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>5</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>12212</value> </IntegerValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Body&gt;&lt;getCustomer xmlns=&quot;http://service.parabank.parasoft.com/&quot;&gt;&lt;customerId&gt;0&lt;/customerId&gt;&lt;/getCustomer&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>getCustomer</name> <namespace>true</namespace> <uri>http://service.parabank.parasoft.com/</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0</value> <name>customerId</name> <namespace>true</namespace> <uri>http://service.parabank.parasoft.com/</uri> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>152</testID> <enabled>true</enabled> <name>LoanProcessor</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> <useDefault>false</useDefault> <wsdl>http://localhost:8080/parabank/services/LoanProcessor?wsdl</wsdl> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> <useDefault>false</useDefault> <endpoint>${ENDPOINT}</endpoint> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> <useDefault>false</useDefault> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>1</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <testsSize>2</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>155</testID> <enabled>true</enabled> <name>REST Client</name> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>Check LoanProcessor WSDL</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${LOANPROCESSOR_WSDL}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 18, 2022, 5:49:24 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;wsdl:definitions name=&quot;LoanProcessorServiceImplService&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; xmlns:ns1=&quot;http://schemas.xmlsoap.org/soap/http&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;wsdl:types&gt; &lt;xs:schema attributeFormDefault=&quot;unqualified&quot; elementFormDefault=&quot;qualified&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; version=&quot;1.0&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;xs:element name=&quot;loanRequest&quot; type=&quot;tns:loanRequest&quot;/&gt; &lt;xs:element name=&quot;loanResponse&quot; type=&quot;tns:loanResponse&quot;/&gt; &lt;xs:element name=&quot;requestLoan&quot; type=&quot;tns:requestLoan&quot;/&gt; &lt;xs:element name=&quot;requestLoanResponse&quot; type=&quot;tns:requestLoanResponse&quot;/&gt; &lt;xs:complexType name=&quot;requestLoan&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:loanRequest&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loanRequest&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;requestDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;availableFunds&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;loanAmount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;downPayment&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;requestLoanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:loanResponse&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;responseDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;loanProviderName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;approved&quot; type=&quot;xs:boolean&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:element name=&quot;ParaBankServiceException&quot; type=&quot;tns:ParaBankServiceException&quot;/&gt; &lt;xs:complexType name=&quot;ParaBankServiceException&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:schema&gt; &lt;/wsdl:types&gt; &lt;wsdl:message name=&quot;requestLoanResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoanResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;ParaBankServiceException&quot;&gt; &lt;wsdl:part element=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;requestLoan&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoan&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:portType name=&quot;LoanProcessorService&quot;&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;wsdl:input message=&quot;tns:requestLoan&quot; name=&quot;requestLoan&quot;/&gt; &lt;wsdl:output message=&quot;tns:requestLoanResponse&quot; name=&quot;requestLoanResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name=&quot;LoanProcessorServiceImplServiceSoapBinding&quot; type=&quot;tns:LoanProcessorService&quot;&gt; &lt;soap:binding style=&quot;document&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot;/&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;requestLoan&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;requestLoanResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name=&quot;LoanProcessorServiceImplService&quot;&gt; &lt;wsdl:port binding=&quot;tns:LoanProcessorServiceImplServiceSoapBinding&quot; name=&quot;LoanProcessorServiceImplPort&quot;&gt; &lt;soap:address location=&quot;http://localhost:8080/parabank/services/LoanProcessor&quot;/&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;wsdl:definitions name=&quot;LoanProcessorServiceImplService&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; xmlns:ns1=&quot;http://schemas.xmlsoap.org/soap/http&quot; xmlns:soap=&quot;http://schemas.xmlsoap.org/wsdl/soap/&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:wsdl=&quot;http://schemas.xmlsoap.org/wsdl/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;wsdl:types&gt; &lt;xs:schema attributeFormDefault=&quot;unqualified&quot; elementFormDefault=&quot;qualified&quot; targetNamespace=&quot;http://service.parabank.parasoft.com/&quot; version=&quot;1.0&quot; xmlns:tns=&quot;http://service.parabank.parasoft.com/&quot; xmlns:xs=&quot;http://www.w3.org/2001/XMLSchema&quot;&gt; &lt;xs:element name=&quot;loanRequest&quot; type=&quot;tns:loanRequest&quot;/&gt; &lt;xs:element name=&quot;loanResponse&quot; type=&quot;tns:loanResponse&quot;/&gt; &lt;xs:element name=&quot;requestLoan&quot; type=&quot;tns:requestLoan&quot;/&gt; &lt;xs:element name=&quot;requestLoanResponse&quot; type=&quot;tns:requestLoanResponse&quot;/&gt; &lt;xs:complexType name=&quot;requestLoan&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:loanRequest&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loanRequest&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;requestDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;customerId&quot; type=&quot;xs:int&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;availableFunds&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;loanAmount&quot; type=&quot;xs:decimal&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;downPayment&quot; type=&quot;xs:decimal&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;requestLoanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element ref=&quot;tns:loanResponse&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name=&quot;loanResponse&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;responseDate&quot; type=&quot;xs:dateTime&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;loanProviderName&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; name=&quot;approved&quot; type=&quot;xs:boolean&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;xs:element form=&quot;unqualified&quot; minOccurs=&quot;0&quot; name=&quot;accountId&quot; type=&quot;xs:int&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:element name=&quot;ParaBankServiceException&quot; type=&quot;tns:ParaBankServiceException&quot;/&gt; &lt;xs:complexType name=&quot;ParaBankServiceException&quot;&gt; &lt;xs:sequence&gt; &lt;xs:element minOccurs=&quot;0&quot; name=&quot;message&quot; type=&quot;xs:string&quot;/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:schema&gt; &lt;/wsdl:types&gt; &lt;wsdl:message name=&quot;requestLoanResponse&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoanResponse&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;ParaBankServiceException&quot;&gt; &lt;wsdl:part element=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:message name=&quot;requestLoan&quot;&gt; &lt;wsdl:part element=&quot;tns:requestLoan&quot; name=&quot;parameters&quot;/&gt; &lt;/wsdl:message&gt; &lt;wsdl:portType name=&quot;LoanProcessorService&quot;&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;wsdl:input message=&quot;tns:requestLoan&quot; name=&quot;requestLoan&quot;/&gt; &lt;wsdl:output message=&quot;tns:requestLoanResponse&quot; name=&quot;requestLoanResponse&quot;/&gt; &lt;wsdl:fault message=&quot;tns:ParaBankServiceException&quot; name=&quot;ParaBankServiceException&quot;/&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:portType&gt; &lt;wsdl:binding name=&quot;LoanProcessorServiceImplServiceSoapBinding&quot; type=&quot;tns:LoanProcessorService&quot;&gt; &lt;soap:binding style=&quot;document&quot; transport=&quot;http://schemas.xmlsoap.org/soap/http&quot;/&gt; &lt;wsdl:operation name=&quot;requestLoan&quot;&gt; &lt;soap:operation soapAction=&quot;&quot; style=&quot;document&quot;/&gt; &lt;wsdl:input name=&quot;requestLoan&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:input&gt; &lt;wsdl:output name=&quot;requestLoanResponse&quot;&gt; &lt;soap:body use=&quot;literal&quot;/&gt; &lt;/wsdl:output&gt; &lt;wsdl:fault name=&quot;ParaBankServiceException&quot;&gt; &lt;soap:fault name=&quot;ParaBankServiceException&quot; use=&quot;literal&quot;/&gt; &lt;/wsdl:fault&gt; &lt;/wsdl:operation&gt; &lt;/wsdl:binding&gt; &lt;wsdl:service name=&quot;LoanProcessorServiceImplService&quot;&gt; &lt;wsdl:port binding=&quot;tns:LoanProcessorServiceImplServiceSoapBinding&quot; name=&quot;LoanProcessorServiceImplPort&quot;&gt; &lt;soap:address location=&quot;http://localhost:8080/parabank/services/LoanProcessor&quot;/&gt; &lt;/wsdl:port&gt; &lt;/wsdl:service&gt; &lt;/wsdl:definitions&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>definitions</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>14</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns1</prefix> <uri>http://schemas.xmlsoap.org/soap/http</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>tns</prefix> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>LoanProcessorServiceImplService</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://service.parabank.parasoft.com/</value> <name>targetNamespace</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>types</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>schema</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>15</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>attributeFormDefault</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>qualified</value> <name>elementFormDefault</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://service.parabank.parasoft.com/</value> <name>targetNamespace</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>1.0</value> <name>version</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanRequest</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loanRequest</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loanResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoan</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoanResponse</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loanRequest</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanRequest</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>customerId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>availableFunds</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanAmount</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>downPayment</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:decimal</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:loanResponse</value> <name>ref</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>responseDate</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:dateTime</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>loanProviderName</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>approved</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:boolean</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>message</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>unqualified</value> <name>form</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>accountId</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:int</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>complexType</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>sequence</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>element</name> <namespace>true</namespace> <prefix>xs</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>0</value> <name>minOccurs</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>message</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>xs:string</value> <name>type</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoanResponse</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>message</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>part</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoan</value> <name>element</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>parameters</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>portType</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>LoanProcessorService</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoan</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:requestLoanResponse</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:ParaBankServiceException</value> <name>message</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>binding</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>4</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>LoanProcessorServiceImplServiceSoapBinding</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:LoanProcessorService</value> <name>type</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>binding</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>http://schemas.xmlsoap.org/soap/http</value> <name>transport</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>5</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>operation</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value></value> <name>soapAction</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>document</value> <name>style</name> </XMLAttributeNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>input</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoan</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>output</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>requestLoanResponse</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>fault</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>ParaBankServiceException</value> <name>name</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>literal</value> <name>use</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>service</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>LoanProcessorServiceImplService</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>port</name> <namespace>true</namespace> <prefix>wsdl</prefix> <uri>http://schemas.xmlsoap.org/wsdl/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>tns:LoanProcessorServiceImplServiceSoapBinding</value> <name>binding</name> </XMLAttributeNode> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>LoanProcessorServiceImplPort</value> <name>name</name> </XMLAttributeNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>address</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/wsdl/soap/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLAttributeNode className="webtool.xml.builder.XMLAttributeNode" version="1.3.6"> <value>${LOANPROCESSOR_SOAP_ENDPOINT}</value> <name>location</name> </XMLAttributeNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <httpMethod>GET</httpMethod> </RESTResourceMethod> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <selectedIndex>1</selectedIndex> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> <SOAPRPCToolTest className="webtool.soap.SOAPRPCToolTest" version="3.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>153</testID> <enabled>true</enabled> <name>requestLoan</name> <performanceGroup>0</performanceGroup> <SOAPRPCTool className="webtool.soap.SOAPRPCTool" version="v.2.47.14"> <iconName>SOAPClient</iconName> <name>requestLoan</name> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/LoanProcessor?wsdl</location> </StandardServiceDescriptor> </ServiceInfo> <SOAPOutputProviderImpl className="webtool.soap.SOAPOutputProviderImpl" version="1.1.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 18, 2022, 5:45:44 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:requestLoanResponse xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt; &lt;ns2:loanResponse&gt; &lt;responseDate&gt;2022-11-19T00:45:44.172Z&lt;/responseDate&gt; &lt;loanProviderName&gt;Wealth Securities Dynamic Loans (WSDL)&lt;/loanProviderName&gt; &lt;approved&gt;true&lt;/approved&gt; &lt;/ns2:loanResponse&gt; &lt;/ns2:requestLoanResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;soap:Envelope xmlns:soap=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot;&gt; &lt;soap:Body&gt; &lt;ns2:requestLoanResponse xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt; &lt;ns2:loanResponse&gt; &lt;responseDate&gt;2022-11-19T00:45:44.172Z&lt;/responseDate&gt; &lt;loanProviderName&gt;Wealth Securities Dynamic Loans (WSDL)&lt;/loanProviderName&gt; &lt;approved&gt;true&lt;/approved&gt; &lt;/ns2:loanResponse&gt; &lt;/ns2:requestLoanResponse&gt; &lt;/soap:Body&gt; &lt;/soap:Envelope&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>soap</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>requestLoanResponse</name> <namespace>true</namespace> <prefix>ns2</prefix> <uri>http://service.parabank.parasoft.com/</uri> <showAttributes>true</showAttributes> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>ns2</prefix> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>loanResponse</name> <namespace>true</namespace> <prefix>ns2</prefix> <uri>http://service.parabank.parasoft.com/</uri> <showAttributes>true</showAttributes> <childNodesSize>3</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>2022-11-19T00:45:44.172Z</value> <name>responseDate</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>Wealth Securities Dynamic Loans (WSDL)</value> <name>loanProviderName</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>true</value> <name>approved</name> <showAttributes>true</showAttributes> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> <controlSourceMode>1</controlSourceMode> <numIgnoredXPaths>1</numIgnoredXPaths> <IgnoredXPath className="webtool.diff.IgnoredXPath" version="1.2"> <xpath>/Envelope/Body/requestLoanResponse/loanResponse/responseDate</xpath> <diff>1</diff> <operation0>1</operation0> <operation1>6</operation1> <operation2>7</operation2> </IgnoredXPath> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> </SOAPOutputProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <notes>Test client for operation &quot;requestLoan&quot; in &quot;${WSDL}&quot;.</notes> <WsdlProperties className="webtool.soap.WsdlProperties" version="1.1"> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <SOAPClient_WSDLLocation>${LOANPROCESSOR_WSDL}</SOAPClient_WSDLLocation> </LocationObject> </WsdlProperties> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <EndpointProperties className="webtool.soap.EndpointProperties" version="1.4"> <DefaultEndpointType className="webtool.soap.DefaultEndpointType" version="1.1.1"> </DefaultEndpointType> <UDDIEndpointType className="webtool.soap.UDDIEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> </SimpleValue> </UDDIEndpointType> <CustomEndpointType className="webtool.soap.CustomEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <SOAPClient_CustomEndpoint>${LOANPROCESSOR_SOAP_ENDPOINT}</SOAPClient_CustomEndpoint> </SimpleValue> </CustomEndpointType> <WsdlEndpointType className="webtool.soap.WsdlEndpointType" version="1.1.1"> <SimpleValue className="webtool.data.SimpleValue" version="2.4"> <value>http://localhost:8080/parabank/services/LoanProcessor</value> </SimpleValue> </WsdlEndpointType> <mode>2</mode> </EndpointProperties> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <MIMEOutputProvider className="webtool.soap.mime.MIMEOutputProvider" version="3.4.1"> <AttachmentOutputProvider className="webtool.soap.mime.AttachmentOutputProvider" version="3.2"> <menuName>Attachment</menuName> <name>Response Attachment</name> </AttachmentOutputProvider> </MIMEOutputProvider> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>SOAP Envelope</menuName> <name>Request SOAP Envelope</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <CallContainer className="webtool.soap.CallContainer" version="22"> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>12</size> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientHTTPProperties className="webtool.soap.SoapClientHTTPProperties" version="4.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <SOAPActionProperties className="webtool.soap.SOAPActionProperties" version="1.2"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <sendSoapAction>true</sendSoapAction> </SOAPActionProperties> </SoapClientHTTPProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>7</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <SoapClientWcfProperties className="webtool.soap.SoapClientWcfProperties" version="1.5"> <protocol>8</protocol> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </SoapClientWcfProperties> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>MQ_JMS_MANAGER</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sun.jndi.fscontext.RefFSContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>file:/C:/JNDI-Directory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval(in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <soapCall>true</soapCall> <SoapCall className="webtool.soap.SoapCall" version="11"> <soapMethod>true</soapMethod> <SoapMethod className="webtool.soap.SoapMethod" version="20"> <beautify>false</beautify> <longName>requestLoan</longName> <faults size="1"> <fault index="0">ParaBankServiceException</fault> </faults> <portTypeNamespace>http://service.parabank.parasoft.com/</portTypeNamespace> <outputName>requestLoanResponse</outputName> <OperationStyleUseProperties className="webtool.soap.OperationStyleUseProperties" version="1.2"> <targetObjectURI>http://service.parabank.parasoft.com/</targetObjectURI> <encodingStyleURI></encodingStyleURI> </OperationStyleUseProperties> <portTypeName>LoanProcessorService</portTypeName> <SOAPServiceAddress className="com.parasoft.ws.wsdl.SOAPServiceAddress" version="1.5"> <portName>LoanProcessorServiceImplPort</portName> <address>http://localhost:8080/parabank/services/LoanProcessor</address> </SOAPServiceAddress> <returnParam>true</returnParam> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>requestLoanResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>requestLoanResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>loanResponse</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>loanResponse</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>5</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <minOccurs>0</minOccurs> <localName>responseDate</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>8</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <localName>loanProviderName</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>10</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>11</hash> <localName>approved</localName> <BooleanType className="webtool.soap.BooleanType" version="2.2.3"> <hash>12</hash> </BooleanType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>13</hash> <minOccurs>0</minOccurs> <localName>message</localName> <StringType className="webtool.soap.StringType" version="2.5.3"> <hash>14</hash> </StringType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>15</hash> <minOccurs>0</minOccurs> <localName>accountId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>16</hash> </IntegerType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>5</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value></value> </StringValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <BooleanValue className="webtool.soap.BooleanValue" version="1.2.13"> <value>true</value> </BooleanValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> <inputName>requestLoan</inputName> <methodName>requestLoan</methodName> <returnType>{http://service.parabank.parasoft.com/}requestLoanResponse</returnType> <soapParametersSize>1</soapParametersSize> <SoapParameter className="webtool.soap.SoapParameter" version="10"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>requestLoan</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>2</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>requestLoan</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>3</hash> <paramTypesSize>1</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>4</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <localName>loanRequest</localName> <ComplexType className="webtool.soap.ComplexType" version="2.10.3"> <hash>5</hash> <namespace>http://service.parabank.parasoft.com/</namespace> <name>loanRequest</name> <compositor>true</compositor> <SequenceCompositor className="webtool.soap.SequenceCompositor" version="2.1.3.3"> <hash>6</hash> <paramTypesSize>5</paramTypesSize> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>7</hash> <minOccurs>0</minOccurs> <localName>requestDate</localName> <DateTimeType className="webtool.soap.DateTimeType" version="2.2.3"> <hash>8</hash> </DateTimeType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>9</hash> <localName>customerId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>10</hash> </IntegerType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>11</hash> <localName>availableFunds</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>12</hash> </DecimalType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>13</hash> <localName>loanAmount</localName> <DecimalType className="webtool.soap.DecimalType" version="2.2.3"> <hash>14</hash> </DecimalType> </ElementType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>15</hash> <localName>downPayment</localName> <DecimalType className="webtool.soap.DecimalType" version="2"> <hash>14</hash> </DecimalType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> </SequenceCompositor> </ComplexType> </ElementType> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>1</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> <valuesSize>5</valuesSize> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>0</value> </IntegerValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <DecimalValue className="webtool.soap.DecimalValue" version="1.4.1.13"> <value>5000</value> </DecimalValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <DecimalValue className="webtool.soap.DecimalValue" version="1.4.1.13"> <value>100</value> </DecimalValue> </ElementValue> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <size>1</size> <DecimalValue className="webtool.soap.DecimalValue" version="1.4.1.13"> <value>1</value> </DecimalValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <name>parameters</name> </SoapParameter> </SoapMethod> <inputMode>1</inputMode> <inputUsable>true</inputUsable> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <SOAPClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;SOAP-ENV:Envelope xmlns:SOAP-ENV=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; xmlns:xsd=&quot;http://www.w3.org/2001/XMLSchema&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;&lt;SOAP-ENV:Body&gt;&lt;requestLoan xmlns=&quot;http://service.parabank.parasoft.com/&quot;&gt;&lt;loanRequest&gt;&lt;customerId xmlns=&quot;&quot;&gt;0&lt;/customerId&gt;&lt;availableFunds xmlns=&quot;&quot;&gt;0.0&lt;/availableFunds&gt;&lt;loanAmount xmlns=&quot;&quot;&gt;0.0&lt;/loanAmount&gt;&lt;downPayment xmlns=&quot;&quot;&gt;0.0&lt;/downPayment&gt;&lt;/loanRequest&gt;&lt;/requestLoan&gt;&lt;/SOAP-ENV:Body&gt;&lt;/SOAP-ENV:Envelope&gt;</SOAPClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <userMethod>true</userMethod> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <xmlBuilder>true</xmlBuilder> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Envelope</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>4</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsd</prefix> <uri>http://www.w3.org/2001/XMLSchema</uri> </XMLNamespaceNode> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <prefix>xsi</prefix> <uri>http://www.w3.org/2001/XMLSchema-instance</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>Body</name> <namespace>true</namespace> <prefix>SOAP-ENV</prefix> <uri>http://schemas.xmlsoap.org/soap/envelope/</uri> <childNodesSize>1</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>requestLoan</name> <namespace>true</namespace> <uri>http://service.parabank.parasoft.com/</uri> <childNodesSize>2</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> <uri>http://service.parabank.parasoft.com/</uri> </XMLNamespaceNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>loanRequest</name> <namespace>true</namespace> <uri>http://service.parabank.parasoft.com/</uri> <childNodesSize>4</childNodesSize> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0</value> <name>customerId</name> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0.0</value> <name>availableFunds</name> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0.0</value> <name>loanAmount</name> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value>0.0</value> <name>downPayment</name> <childNodesSize>1</childNodesSize> <XMLNamespaceNode className="webtool.xml.builder.XMLNamespaceNode" version="1.1.6"> </XMLNamespaceNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLElementNode> </XMLBuilder> </SoapCall> </CallContainer> <responseFormat>2</responseFormat> <mimeType>text/plain</mimeType> </SOAPRPCTool> </SOAPRPCToolTest> </TestSuite> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>22</testID> <enabled>true</enabled> <name>REST</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <groupss size="27"> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="0" version="1.2"> <name>/accounts/{accountId} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="1" version="1.2"> <id>1</id> <name>/accounts/{accountId}/transactions - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="2" version="1.2"> <id>2</id> <name>/accounts/{accountId}/transactions/amount/{amount} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="3" version="1.2"> <id>3</id> <name>/accounts/{accountId}/transactions/fromDate/{fromDate}/toDate/{toDate} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="4" version="1.2"> <id>4</id> <name>/accounts/{accountId}/transactions/month/{month}/type/{type} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="5" version="1.2"> <id>5</id> <name>/accounts/{accountId}/transactions/onDate/{onDate} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="6" version="1.2"> <id>6</id> <name>/billpay - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="7" version="1.2"> <id>7</id> <name>/cleanDB - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="8" version="1.2"> <id>8</id> <name>/createAccount - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="9" version="1.2"> <id>9</id> <name>/customers/update/{customerId} - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="10" version="1.2"> <id>10</id> <name>/customers/{customerId} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="11" version="1.2"> <id>11</id> <name>/customers/{customerId}/accounts - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="12" version="1.2"> <id>12</id> <name>/customers/{customerId}/buyPosition - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="13" version="1.2"> <id>13</id> <name>/customers/{customerId}/positions - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="14" version="1.2"> <id>14</id> <name>/customers/{customerId}/sellPosition - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="15" version="1.2"> <id>15</id> <name>/deposit - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="16" version="1.2"> <id>16</id> <name>/initializeDB - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="17" version="1.2"> <id>17</id> <name>/login/{username}/{password} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="18" version="1.2"> <id>18</id> <name>/positions/{positionId} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="19" version="1.2"> <id>19</id> <name>/positions/{positionId}/{startDate}/{endDate} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="20" version="1.2"> <id>20</id> <name>/requestLoan - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="21" version="1.2"> <id>21</id> <name>/setParameter/{name}/{value} - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="22" version="1.2"> <id>22</id> <name>/shutdownJmsListener - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="23" version="1.2"> <id>23</id> <name>/startupJmsListener - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="24" version="1.2"> <id>24</id> <name>/transactions/{transactionId} - GET</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="25" version="1.2"> <id>25</id> <name>/transfer - POST</name> </PerformanceGroup> <PerformanceGroup className="webtool.test.performance.PerformanceGroup" index="26" version="1.2"> <id>26</id> <name>/withdraw - POST</name> </PerformanceGroup> </groupss> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <notes>Created from: http://localhost:8080/parabank/services/bank/swagger.yaml&#xD; Timestamp: 2022-11-15 11:25:00</notes> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>29</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>66</nextIdentifier> <testsSize>1</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>65</testID> <enabled>true</enabled> <name>ParaBank</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>3</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>160</testID> <enabled>true</enabled> <name>REST Client</name> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>Check OpenAPI</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${PARABANK_OPEN_API}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> <showRequestHeaders>true</showRequestHeaders> <showResponseHeaders>true</showResponseHeaders> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 21, 2022, 3:20:00 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">{ &quot;swagger&quot; : &quot;2.0&quot;, &quot;info&quot; : { &quot;description&quot; : &quot;This API provides access to various ParaBank internal operations&quot;, &quot;version&quot; : &quot;3.0.0&quot;, &quot;title&quot; : &quot;The ParaBank REST API&quot;, &quot;termsOfService&quot; : &quot;/parabank/about.htm&quot;, &quot;contact&quot; : { &quot;name&quot; : &quot;ParaBank Web Administrator&quot;, &quot;url&quot; : &quot;http://www.parasoft.com&quot;, &quot;email&quot; : &quot;webadmin@parabank.parasoft.com&quot; }, &quot;license&quot; : { &quot;name&quot; : &quot;Apache 2.0 License&quot;, &quot;url&quot; : &quot;http://www.apache.org/licenses/LICENSE-2.0.html&quot; } }, &quot;basePath&quot; : &quot;/parabank/services/bank&quot;, &quot;tags&quot; : [ { &quot;name&quot; : &quot;Accounts&quot;, &quot;description&quot; : &quot;account centric operations&quot; }, { &quot;name&quot; : &quot;Customers&quot;, &quot;description&quot; : &quot;customer centric operations&quot; }, { &quot;name&quot; : &quot;Database&quot;, &quot;description&quot; : &quot;data management operations&quot; }, { &quot;name&quot; : &quot;JMS&quot;, &quot;description&quot; : &quot;message service operations&quot; }, { &quot;name&quot; : &quot;Loans&quot;, &quot;description&quot; : &quot;request loan operations&quot; }, { &quot;name&quot; : &quot;Misc&quot;, &quot;description&quot; : &quot;miscelaneous operations&quot; }, { &quot;name&quot; : &quot;Positions&quot;, &quot;description&quot; : &quot;stock centric operations&quot; }, { &quot;name&quot; : &quot;Transactions&quot;, &quot;description&quot; : &quot;banking transactions centric operations&quot; } ], &quot;schemes&quot; : [ &quot;http&quot; ], &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;paths&quot; : { &quot;/transfer&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Transfer funds&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;transfer_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;fromAccountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds source account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;toAccountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds target account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;amount&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Amount&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;string&quot; } } } } }, &quot;/setParameter/{name}/{value}&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Misc&quot; ], &quot;summary&quot; : &quot;Set Parameters&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;setParameter_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;name&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Parameter Name&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;value&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Parameter Value&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;default&quot; : { &quot;description&quot; : &quot;successful operation&quot; } } } }, &quot;/positions/{positionId}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Positions&quot; ], &quot;summary&quot; : &quot;Get Position by id&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getPosition_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;positionId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Unique identifier for the position&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Position&quot; } } } } }, &quot;/transactions/{transactionId}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Transactions&quot; ], &quot;summary&quot; : &quot;Get the transaction for the id&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getTransaction_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;transactionId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Unique identifier for the transaction&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Transaction&quot; } } } } }, &quot;/login/{username}/{password}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Misc&quot; ], &quot;summary&quot; : &quot;Login (john/demo)&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;login_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;username&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s user name&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;password&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s password&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Customer&quot; } } } } }, &quot;/accounts/{accountId}/transactions&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot;, &quot;Transactions&quot; ], &quot;summary&quot; : &quot;Get the list of Transactions for the account&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getTransactions_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Account id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Transaction&quot; } } } } } }, &quot;/requestLoan&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Loans&quot; ], &quot;summary&quot; : &quot;Request a loan&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;requestLoan_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;amount&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Amount&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; }, { &quot;name&quot; : &quot;downPayment&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Downpayment for the loan&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; }, { &quot;name&quot; : &quot;fromAccountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds source account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/LoanResponse&quot; } } } } }, &quot;/createAccount&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Customers&quot;, &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Create a new account&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;createAccount_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;newAccountType&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Account type (CHECKING, SAVINGS, LOAN)&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;fromAccountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds source account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Account&quot; } } } } }, &quot;/deposit&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Deposit funds&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;deposit_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds target account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;amount&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Amount&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;string&quot; } } } } }, &quot;/accounts/{accountId}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Get Account by Id&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getAccount_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Account id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Account&quot; } } } } }, &quot;/customers/{customerId}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Customers&quot; ], &quot;summary&quot; : &quot;Get Customer Details&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getCustomer_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Customer&quot; } } } } }, &quot;/positions/{positionId}/{startDate}/{endDate}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Positions&quot; ], &quot;summary&quot; : &quot;Get Position history by id within a date range&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getPositionHistory_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;positionId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Unique identifier for the position&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;startDate&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Search starting date&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;endDate&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Search ending date&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/HistoryPoint&quot; } } } } } }, &quot;/customers/{customerId}/sellPosition&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Positions&quot; ], &quot;summary&quot; : &quot;Sell a Position&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;sellPosition_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds target account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;positionId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Unique identifier for the position&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;shares&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;number of shares&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;pricePerShare&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Price of each share&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Position&quot; } } } } } }, &quot;/customers/update/{customerId}&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Customers&quot; ], &quot;summary&quot; : &quot;Update customer information&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;updateCustomer_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;firstName&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer&#39;s given (first) name&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;lastName&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer&#39;s surname (last name)&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;street&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Street Address including bilding number and apartment (if any)&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;city&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;City&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;state&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;US state or Region name&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;zipCode&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;ZIP code or province id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;phoneNumber&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Contact Phone Number&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;ssn&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Social Security Number&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;username&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer&#39;s user name&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;password&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer&#39;s password&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;string&quot; } } } } }, &quot;/withdraw&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Withdraw funds&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;withdraw_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds source account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;amount&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Amount&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;string&quot; } } } } }, &quot;/cleanDB&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Database&quot; ], &quot;summary&quot; : &quot;Clean the Database&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;cleanDB_1&quot;, &quot;parameters&quot; : [ ], &quot;responses&quot; : { &quot;default&quot; : { &quot;description&quot; : &quot;successful operation&quot; } } } }, &quot;/initializeDB&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Database&quot; ], &quot;summary&quot; : &quot;Initialize the Database&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;initializeDB_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ ], &quot;responses&quot; : { &quot;default&quot; : { &quot;description&quot; : &quot;successful operation&quot; } } } }, &quot;/shutdownJmsListener&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;JMS&quot; ], &quot;summary&quot; : &quot;Stop JMS Listener&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;shutdownJmsListener_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ ], &quot;responses&quot; : { &quot;default&quot; : { &quot;description&quot; : &quot;successful operation&quot; } } } }, &quot;/startupJmsListener&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;JMS&quot; ], &quot;summary&quot; : &quot;Start JMS Listener&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;startupJmsListener_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ ], &quot;responses&quot; : { &quot;default&quot; : { &quot;description&quot; : &quot;successful operation&quot; } } } }, &quot;/customers/{customerId}/buyPosition&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Positions&quot; ], &quot;summary&quot; : &quot;Buy a Position&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;buyPosition_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Customer funds source account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;name&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Instrument&#39;s Name&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;symbol&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Instrument&#39;s exchange symbol&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;shares&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;number of shares&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;pricePerShare&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Price of each share&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Position&quot; } } } } } }, &quot;/customers/{customerId}/accounts&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Customers&quot;, &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Get Customer Accounts&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getAccounts_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Account&quot; } } } } } }, &quot;/customers/{customerId}/positions&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Customers&quot;, &quot;Positions&quot; ], &quot;summary&quot; : &quot;Get Positions for Customer&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getPositions_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;customerId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Customer&#39;s id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Position&quot; } } } } } }, &quot;/accounts/{accountId}/transactions/amount/{amount}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot;, &quot;Transactions&quot; ], &quot;summary&quot; : &quot;Create transactions by amount for account&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getTransactionsByAmount_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Account id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;amount&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Amount&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Transaction&quot; } } } } } }, &quot;/accounts/{accountId}/transactions/month/{month}/type/{type}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot;, &quot;Transactions&quot; ], &quot;summary&quot; : &quot;Fetch transactions by month and type for account&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getTransactionsByMonthAndType_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Account id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;month&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Month to use for the search range&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;type&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Transaction type (CREDIT, DEBIT)&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Transaction&quot; } } } } } }, &quot;/accounts/{accountId}/transactions/fromDate/{fromDate}/toDate/{toDate}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot;, &quot;Transactions&quot; ], &quot;summary&quot; : &quot;Fetch transactions for date range for account&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getTransactionsByToFromDate_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Account id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;fromDate&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Search starting date&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; }, { &quot;name&quot; : &quot;toDate&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Search ending date&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Transaction&quot; } } } } } }, &quot;/accounts/{accountId}/transactions/onDate/{onDate}&quot; : { &quot;get&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot;, &quot;Transactions&quot; ], &quot;summary&quot; : &quot;Fetch transactions for a specific date for account&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;getTransactionsOnDate_1&quot;, &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Account id&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;onDate&quot;, &quot;in&quot; : &quot;path&quot;, &quot;description&quot; : &quot;Search specific date&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;string&quot; } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;type&quot; : &quot;array&quot;, &quot;items&quot; : { &quot;$ref&quot; : &quot;#/definitions/Transaction&quot; } } } } } }, &quot;/billpay&quot; : { &quot;post&quot; : { &quot;tags&quot; : [ &quot;Accounts&quot; ], &quot;summary&quot; : &quot;Pay bill&quot;, &quot;description&quot; : &quot;&quot;, &quot;operationId&quot; : &quot;billPay_1&quot;, &quot;consumes&quot; : [ &quot;application/json&quot;, &quot;application/xml&quot; ], &quot;produces&quot; : [ &quot;application/xml&quot;, &quot;application/json&quot; ], &quot;parameters&quot; : [ { &quot;name&quot; : &quot;accountId&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Bill payment source account&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, { &quot;name&quot; : &quot;amount&quot;, &quot;in&quot; : &quot;query&quot;, &quot;description&quot; : &quot;Amount&quot;, &quot;required&quot; : true, &quot;type&quot; : &quot;number&quot; }, { &quot;in&quot; : &quot;body&quot;, &quot;name&quot; : &quot;body&quot;, &quot;description&quot; : &quot;Payee&quot;, &quot;required&quot; : true, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/Payee&quot; } } ], &quot;responses&quot; : { &quot;200&quot; : { &quot;description&quot; : &quot;successful operation&quot;, &quot;schema&quot; : { &quot;$ref&quot; : &quot;#/definitions/BillPayResult&quot; } } } } } }, &quot;definitions&quot; : { &quot;Position&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;positionId&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;customerId&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;name&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;symbol&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;shares&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;purchasePrice&quot; : { &quot;type&quot; : &quot;number&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;position&quot; } }, &quot;Transaction&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;id&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;accountId&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;type&quot; : { &quot;type&quot; : &quot;string&quot;, &quot;enum&quot; : [ &quot;Credit&quot;, &quot;Debit&quot; ] }, &quot;date&quot; : { &quot;type&quot; : &quot;string&quot;, &quot;format&quot; : &quot;date-time&quot; }, &quot;amount&quot; : { &quot;type&quot; : &quot;number&quot; }, &quot;description&quot; : { &quot;type&quot; : &quot;string&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;transaction&quot; } }, &quot;Address&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;street&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;city&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;state&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;zipCode&quot; : { &quot;type&quot; : &quot;string&quot; } } }, &quot;Customer&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;id&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;firstName&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;lastName&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;address&quot; : { &quot;$ref&quot; : &quot;#/definitions/Address&quot; }, &quot;phoneNumber&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;ssn&quot; : { &quot;type&quot; : &quot;string&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;customer&quot; } }, &quot;LoanResponse&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;required&quot; : [ &quot;loanProviderName&quot; ], &quot;properties&quot; : { &quot;responseDate&quot; : { &quot;type&quot; : &quot;string&quot;, &quot;format&quot; : &quot;date-time&quot; }, &quot;loanProviderName&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;approved&quot; : { &quot;type&quot; : &quot;boolean&quot; }, &quot;message&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;accountId&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;loanResponse&quot;, &quot;namespace&quot; : &quot;http://service.parabank.parasoft.com/&quot; } }, &quot;Account&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;id&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;customerId&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; }, &quot;type&quot; : { &quot;type&quot; : &quot;string&quot;, &quot;enum&quot; : [ &quot;CHECKING&quot;, &quot;SAVINGS&quot;, &quot;LOAN&quot; ] }, &quot;balance&quot; : { &quot;type&quot; : &quot;number&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;account&quot; } }, &quot;HistoryPoint&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;symbol&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;date&quot; : { &quot;type&quot; : &quot;string&quot;, &quot;format&quot; : &quot;date-time&quot; }, &quot;closingPrice&quot; : { &quot;type&quot; : &quot;number&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;historyPoint&quot;, &quot;namespace&quot; : &quot;http://service.parabank.parasoft.com/&quot; } }, &quot;BillPayResult&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;payeeName&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;amount&quot; : { &quot;type&quot; : &quot;number&quot; }, &quot;accountId&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } }, &quot;xml&quot; : { &quot;name&quot; : &quot;billPayResult&quot; } }, &quot;Payee&quot; : { &quot;type&quot; : &quot;object&quot;, &quot;properties&quot; : { &quot;name&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;address&quot; : { &quot;$ref&quot; : &quot;#/definitions/Address&quot; }, &quot;phoneNumber&quot; : { &quot;type&quot; : &quot;string&quot; }, &quot;accountNumber&quot; : { &quot;type&quot; : &quot;integer&quot;, &quot;format&quot; : &quot;int32&quot; } } } } }</DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <ignoredJSONDiffsSize>2</ignoredJSONDiffsSize> <IgnoredJSONDiff className="webtool.ecmascript.json.IgnoredJSONDiff" version="1.2"> <operations size="3"> <operation index="1">true</operation> </operations> <identifier>definitions</identifier> </IgnoredJSONDiff> <IgnoredJSONDiff className="webtool.ecmascript.json.IgnoredJSONDiff" version="1.2"> <operations size="3"> <operation index="1">true</operation> <operation index="2">true</operation> </operations> <identifier>definitions.Payee.properties</identifier> </IgnoredJSONDiff> </JSONDiffer> <mode>3</mode> </DiffTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <httpMethod>GET</httpMethod> </RESTResourceMethod> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <selectedIndex>1</selectedIndex> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>66</testID> <enabled>true</enabled> <name>/accounts/{accountId}</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>2</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <testsSize>1</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>67</testID> <enabled>true</enabled> <name>/accounts/{accountId} - GET</name> <performanceGroup>0</performanceGroup> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>/accounts/{accountId} - GET</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/bank/swagger.yaml</location> </StandardServiceDescriptor> </ServiceInfo> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <MessagingClient_SchemaLocation>${PARABANK_OPEN_API}</MessagingClient_SchemaLocation> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <validResponseRange>200</validResponseRange> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${BASEURL}/accounts/{accountId}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> <propertiesSize>1</propertiesSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Accept</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>application/json</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> <propertiesSize>1</propertiesSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Accept</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>application/json</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 15, 2022, 11:27:46 AM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">{ &quot;id&quot; : 12345, &quot;customerId&quot; : 12212, &quot;type&quot; : &quot;CHECKING&quot;, &quot;balance&quot; : -2300.00 }</DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <ignoredJSONDiffsSize>1</ignoredJSONDiffsSize> <IgnoredJSONDiff className="webtool.ecmascript.json.IgnoredJSONDiff" version="1.2"> <operations size="3"> <operation index="0">true</operation> </operations> <identifier>balance</identifier> </IgnoredJSONDiff> </JSONDiffer> <mode>3</mode> </DiffTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> <pathElementss size="2"> <MultiValue className="webtool.data.MultiValue" index="0" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>accounts</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" index="1" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>{accountId}</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </pathElementss> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> <pathParameters size="1"> <ElementValue className="webtool.soap.ElementValue" index="0" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <defaultValue>0</defaultValue> <localName>accountId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>2</hash> </IntegerType> </ElementType> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>12345</value> </IntegerValue> </ElementValue> </pathParameters> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <resourceId>/accounts/{accountId}</resourceId> <httpMethod>GET</httpMethod> </RESTResourceMethod> <resourceMode>3</resourceMode> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>${PARABANK_ENDPOINT}</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> <value>http://localhost:8080/parabank/services/bank</value> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>86</testID> <enabled>true</enabled> <name>/customers/{customerId}</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>12</profileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <testsSize>1</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>87</testID> <enabled>true</enabled> <name>/customers/{customerId} - GET</name> <performanceGroup>10</performanceGroup> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>/customers/{customerId} - GET</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location>http://localhost:8080/parabank/services/bank/swagger.yaml</location> </StandardServiceDescriptor> </ServiceInfo> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> <MessagingClient_SchemaLocation>${PARABANK_OPEN_API}</MessagingClient_SchemaLocation> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <validResponseRange>200</validResponseRange> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${BASEURL}/customers/{customerId}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> <propertiesSize>1</propertiesSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Accept</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>application/json</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> <propertiesSize>1</propertiesSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Accept</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>application/json</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 16, 2022, 7:23:57 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">{&quot;id&quot;:12212,&quot;firstName&quot;:&quot;John&quot;,&quot;lastName&quot;:&quot;Smith&quot;,&quot;address&quot;:{&quot;street&quot;:&quot;1431 Main St&quot;,&quot;city&quot;:&quot;Beverly Hills&quot;,&quot;state&quot;:&quot;CA&quot;,&quot;zipCode&quot;:&quot;90210&quot;},&quot;phoneNumber&quot;:&quot;310-447-4121&quot;,&quot;ssn&quot;:&quot;622-11-9999&quot;}</DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>3</mode> </DiffTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> <pathElementss size="2"> <MultiValue className="webtool.data.MultiValue" index="0" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>customers</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" index="1" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>{customerId}</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </pathElementss> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> <pathParameters size="1"> <ElementValue className="webtool.soap.ElementValue" index="0" version="1.11.13"> <writeType>true</writeType> <ElementType className="webtool.soap.ElementType" version="2.12.3"> <hash>1</hash> <defaultValue>0</defaultValue> <localName>customerId</localName> <IntegerType className="webtool.soap.IntegerType" version="2.2.3"> <hash>2</hash> </IntegerType> </ElementType> <size>1</size> <IntegerValue className="webtool.soap.IntegerValue" version="1.3.1.13"> <value>12212</value> </IntegerValue> </ElementValue> </pathParameters> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <resourceId>/customers/{customerId}</resourceId> <httpMethod>GET</httpMethod> </RESTResourceMethod> <resourceMode>3</resourceMode> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>${PARABANK_ENDPOINT}</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> <value>http://localhost:8080/parabank/services/bank</value> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> </TestSuite> </TestSuite> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>68</testID> <enabled>true</enabled> <name>Web</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <RESTClientToolTest className="webtool.soap.http.RESTClientToolTest" version="2.1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>158</testID> <enabled>true</enabled> <name>REST Client</name> <RESTClient className="webtool.soap.http.RESTClient" version="v.2.15.30.14"> <iconName>RESTClient</iconName> <name>Front Page</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <HTTPClient_Endpoint>${PARABANK_BASE}</HTTPClient_Endpoint> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>1</protocol> <size>3</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>GET</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <HTMLCleanup className="webtool.html.cleanup.HTMLCleanup" version="v.2.11.14"> <iconName>HTMLCleanup</iconName> <name>HTML Cleanup</name> <updateDTD>true</updateDTD> <verbose>false</verbose> <ErrorViewOutputProvider className="webtool.errview.ErrorViewOutputProvider" version="1.1.2.1"> <name>Messages</name> </ErrorViewOutputProvider> <addVersionHeader>false</addVersionHeader> <docType>1</docType> <MIMESpecificNamedToolOutputProvider className="webtool.tool.MIMESpecificNamedToolOutputProvider" version="1.2.2.1"> <outputToolsSize>1</outputToolsSize> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>4</assertionsSize> <ValueAssertion className="webtool.assertion.xml.ValueAssertion" version="1.6.2"> <timestamp>1668821812926</timestamp> <name>Page Title</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>/html/head/title/string()</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Value</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ParaBank | Welcome | Online Banking</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ValueAssertion> <OccurrenceAssertion className="webtool.assertion.xml.OccurrenceAssertion" version="2.6.2"> <timestamp>1668822092350</timestamp> <name>Login Panel</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>//div[@id=&quot;loginPanel&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Count</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </OccurrenceAssertion> <ValueOccurrenceAssertion className="webtool.assertion.xml.ValueOccurrenceAssertion" version="2.6.2"> <timestamp>1668822522734</timestamp> <name>Latest News</name> <Assertion_XPath>//h4[text()=&quot;Latest News&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Value</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Latest News</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Occurrence</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ValueOccurrenceAssertion> <OccurrenceAssertion className="webtool.assertion.xml.OccurrenceAssertion" version="2.6.2"> <timestamp>1668822739221</timestamp> <name>Page Footer</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>//div[@id=&quot;footermainPanel&quot;]</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Count</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </OccurrenceAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> <name>Transformed Source</name> <type>application/xhtml+xml</type> </MIMESpecificNamedToolOutputProvider> </HTMLCleanup> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage></MessagingClient_LiteralMessage> <type>application/json</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> <QueryParametersLiteral className="webtool.soap.http.QueryParametersLiteral" version="1.1"> <isPropertiesRef>true</isPropertiesRef> </QueryParametersLiteral> <QueryParametersWadl className="webtool.soap.http.QueryParametersWadl" version="1.1"> </QueryParametersWadl> <UrlPathParametersLiteral className="webtool.soap.http.UrlPathParametersLiteral" version="1.1"> </UrlPathParametersLiteral> <UrlPathParametersWadl className="webtool.soap.http.UrlPathParametersWadl" version="1.1"> </UrlPathParametersWadl> <RESTResourceMethod className="webtool.soap.http.RESTResourceMethod" version="2.2"> <httpMethod>GET</httpMethod> </RESTResourceMethod> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <selectedIndex>1</selectedIndex> <valuesSize>2</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <ScriptCode className="com.parasoft.scripting.jsr223.ScriptCode" version="2.1.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> <ScriptEngineIdentifier className="com.parasoft.scripting.jsr223.ScriptEngineIdentifier" version="1.1"> </ScriptEngineIdentifier> </ScriptCode> <methodId>true</methodId> <ScriptMethodIdentifier className="com.parasoft.scripting.jsr223.ScriptMethodIdentifier" version="2.1.1"> </ScriptMethodIdentifier> </UserMethod> </ScriptedValue> <WadlTestValue className="webtool.messaging.wadl.WadlTestValue" version="1.1"> </WadlTestValue> </MultiValue> </RESTClient> </RESTClientToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>75</testID> <enabled>true</enabled> <name>JMS</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>230</nextIdentifier> <testsSize>1</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>229</testID> <enabled>true</enabled> <name>LoanProcessor</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <HTTPClientToolTest className="webtool.soap.http.HTTPClientToolTest" version="1.4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>230</testID> <enabled>true</enabled> <name>Messaging Client</name> <HTTPClient className="webtool.soap.http.HTTPClient" version="v.2.30.14"> <iconName>HTTPClient</iconName> <name>Request Loan JMS</name> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:root</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <attributesSize>1</attributesSize> <AttributeValue className="webtool.soap.AttributeValue" version="1.3.13"> <StringValue className="webtool.soap.StringValue" version="1.9.1.13"> <value>object</value> </StringValue> <useValue>true</useValue> </AttributeValue> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> <elementTypeName>root</elementTypeName> </MessagingSchemaElement> <hasServiceInfo>true</hasServiceInfo> <ServiceInfo className="webtool.tool.ServiceInfo" version="1.2"> <StandardServiceDescriptor className="com.parasoft.service.catalog.impl.StandardServiceDescriptor" version="1.1"> <location></location> </StandardServiceDescriptor> </ServiceInfo> <JSONBuilder className="webtool.ecmascript.json.JSONBuilder" version="2"> <hasValue>true</hasValue> <JSONObjectValue className="webtool.ecmascript.json.JSONObjectValue" version="1.1.1"> <nameIsNull>true</nameIsNull> <JSONValueCollection className="webtool.ecmascript.json.JSONValueCollection" version="2"> </JSONValueCollection> </JSONObjectValue> </JSONBuilder> <LocationObject className="webtool.wsdl.LocationObject" version="2"> </LocationObject> <MessagingSchemaElement className="webtool.soap.http.MessagingSchemaElement" version="3"> <ElementValue className="webtool.soap.ElementValue" version="1.11.13"> <writeType>true</writeType> <hasReference>true</hasReference> <qnameAsString>:</qnameAsString> <size>1</size> <ComplexValue className="webtool.soap.ComplexValue" version="1.10.13"> <compositorValue>true</compositorValue> <CompositorValue className="webtool.soap.CompositorValue" version="1.3.13"> <CompositorValueSetCollectionSet className="webtool.soap.CompositorValueSetCollectionSet" version="1.1"> <setSize>1</setSize> <CompositorValueSet className="webtool.soap.CompositorValueSet" version="1.1"> </CompositorValueSet> </CompositorValueSetCollectionSet> </CompositorValue> </ComplexValue> </ElementValue> </MessagingSchemaElement> <constrainToSchema>false</constrainToSchema> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MapMessageProperties className="webtool.soap.jms.MapMessageProperties" version="1.1"> </MapMessageProperties> <JMSMessageOutputProvider className="webtool.soap.jms.JMSMessageOutputProvider" version="3.1.1"> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Request Object</name> <menuName>Object</menuName> </JMSOutputProvider> <JMSOutputProvider className="webtool.soap.jms.JMSOutputProvider" version="1.1"> <name>Response Message Object</name> <menuName>Message Object</menuName> </JMSOutputProvider> </JMSMessageOutputProvider> <ValidResponseRange className="webtool.messaging.ValidResponseRange" version="1.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </ValidResponseRange> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <TransportProperties className="webtool.messaging.TransportProperties" version="11"> <ProtocolPropertiesManager className="webtool.messaging.ProtocolPropertiesManager" version="1"> <protocol>2</protocol> <size>10</size> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <HTTPClientHTTPProperties className="webtool.soap.http.HTTPClientHTTPProperties" version="3.16"> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <HTTPCompressionConfiguration className="webtool.messaging.HTTPCompressionConfiguration" version="1.1"> </HTTPCompressionConfiguration> <CommonHTTPProperties className="webtool.messaging.CommonHTTPProperties" version="6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <MultiValue className="webtool.data.MultiValue" version="1.5"> <HTTPMethodTestValue className="webtool.messaging.HTTPMethodTestValue" version="1.1"> <method>POST</method> </HTTPMethodTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableResetExistingCookiesConfiguration className="webtool.tool.ApplyableResetExistingCookiesConfiguration" version="1.1.2"> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> </ApplyableResetExistingCookiesConfiguration> <ClientSideSSLProperties className="webtool.security.ClientSideSSLProperties" version="1.1"> </ClientSideSSLProperties> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> </CommonHTTPProperties> <protocol>1</protocol> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> </ApplyableBooleanConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> </HTTPClientHTTPProperties> <JNDIProperties className="webtool.messaging.JNDIProperties" version="21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.loans.request</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.loans.response</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>javax.jms.TextMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>org.apache.activemq.jndi.ActiveMQInitialContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>${PARABANK_JMS_ENDPOINT}</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> </JNDIProperties> <SonicMQJNDIProperties className="webtool.messaging.SonicMQJNDIProperties" version="2.21.1"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>readUTF()</string> </ApplyableStringEnumerationConfiguration> <JMSStubResponseCorrelation className="webtool.messaging.JMSStubResponseCorrelation" version="1.1"> </JMSStubResponseCorrelation> <JMSResponseCorrelation className="webtool.messaging.JMSResponseCorrelation" version="1.3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSCorrelationID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </JMSResponseCorrelation> <QueueProperties className="webtool.messaging.QueueProperties" version="1.1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSDestination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_RequestQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>JMSReplyTo</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>JMS_ResponseQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> <valuesSize>1</valuesSize> <ScriptedValue className="webtool.data.ScriptedValue" version="1.1"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ScriptedValue> </MultiValue> </NameValuePair> </QueueProperties> <ApplyableStringEnumerationConfiguration className="com.parasoft.gui.ApplyableStringEnumerationConfiguration" version="1.1.2.2"> <string>progress.message.jclient.MultipartMessage</string> </ApplyableStringEnumerationConfiguration> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <bool>true</bool> </ApplyableBooleanConfiguration> <JMSConnectionProperties className="webtool.messaging.JMSConnectionProperties" version="2.4"> <initialContextPropsSize>2</initialContextPropsSize> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.credentials</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>java.naming.security.principal</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Connection Factory</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>ConnectionFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Initial Context</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>com.sonicsw.jndi.mfcontext.MFContextFactory</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Provider URL</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>tcp://[hostname]:2506</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Administrator</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </JMSConnectionProperties> <useSync>true</useSync> <ApplyableStringConfiguration className="com.parasoft.gui.ApplyableStringConfiguration" version="1.2.2"> <string>part1</string> </ApplyableStringConfiguration> </SonicMQJNDIProperties> <MQProperties className="webtool.messaging.MQProperties" version="13"> <ApplyableMQRFH2FieldsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2FieldsConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Version</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Encoding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Flags</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>NameValueCodedCharSetId</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQRFH2FieldsConfiguration> <ApplyableMQRFH2MiscOptionsConfiguration className="webtool.messaging.mq.ApplyableMQRFH2MiscOptionsConfiguration" version="1.1.2"> </ApplyableMQRFH2MiscOptionsConfiguration> <ApplyableMcdFolderConfiguration className="webtool.messaging.mq.ApplyableMcdFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Service Domain</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Set</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message Type</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Output Format</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMcdFolderConfiguration> <ApplyablePscFolderConfiguration className="webtool.messaging.mq.ApplyablePscFolderConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubIdentity</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>QMgrName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubPoint</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Filter</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubName</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SubUserData</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyablePscFolderConfiguration> <ApplyableUsrFolderConfiguration className="webtool.messaging.mq.ApplyableUsrFolderConfiguration" version="1.2.2"> </ApplyableUsrFolderConfiguration> <ApplyableJmsFolderConfiguration className="webtool.messaging.mq.ApplyableJmsFolderConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Destination</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply To</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Timestamp</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiration</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Priority</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Delivery Mode</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableJmsFolderConfiguration> <ApplyableMQQueueManagerPropertiesConfiguration className="webtool.messaging.mq.ApplyableMQQueueManagerPropertiesConfiguration" version="1.1.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>CCSID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMQQueueManagerPropertiesConfiguration> <ApplyableMQSSLConfiguration className="webtool.messaging.mq.ApplyableMQSSLConfiguration" version="1.2.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Peer Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <EnumNameValuePair className="webtool.data.EnumNameValuePair" version="3.3.2"> <name>CipherSuite</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </EnumNameValuePair> </ApplyableMQSSLConfiguration> <MQConnectionProperties className="webtool.messaging.MQConnectionProperties" version="1.5"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <RelativeLocationTestValue className="webtool.data.RelativeLocationTestValue" version="1.1"> </RelativeLocationTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Manager Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Channel</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>CHANNEL1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>1414</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Queue Manager</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>queue.manager.1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>PutQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Get Queue</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GetQueue</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Message ID</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <Authentication className="webtool.security.Authentication" version="2.4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Service</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </Authentication> </MQConnectionProperties> <ApplyablePMOConfiguration className="webtool.messaging.mq.ApplyablePMOConfiguration" version="1.1.1.2"> <value>4</value> </ApplyablePMOConfiguration> <ApplyableOOPutConfiguration className="webtool.messaging.mq.ApplyableOOPutConfiguration" version="1.1.1.2"> <value>16</value> </ApplyableOOPutConfiguration> <ApplyableGMOConfiguration className="webtool.messaging.mq.ApplyableGMOConfiguration" version="1.1.1.2"> <value>5</value> </ApplyableGMOConfiguration> <ApplyableOOGetConfiguration className="webtool.messaging.mq.ApplyableOOGetConfiguration" version="1.1.1.2"> <value>1</value> </ApplyableOOGetConfiguration> <GMOMatchConfiguration className="webtool.messaging.mq.GMOMatchConfiguration" version="1.2.1.2"> <value>3</value> </GMOMatchConfiguration> <ApplyableQueueManagerConfiguration className="webtool.messaging.mq.ApplyableQueueManagerConfiguration" version="1.1.1.2"> </ApplyableQueueManagerConfiguration> <ApplyableMDReportConfiguration className="webtool.messaging.mq.ApplyableMDReportConfiguration" version="1.1.1.2"> </ApplyableMDReportConfiguration> <ApplyableMiscPMConfiguration className="webtool.messaging.mq.ApplyableMiscPMConfiguration" version="1.5.2"> <MQMessageType className="webtool.messaging.MQMessageType" version="1.1"> </MQMessageType> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Application ID data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Expiry (in tenths of a second)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Message sequence number</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue manager name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply queue name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Put application name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Originating application data</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>User ID</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscPMConfiguration> <ApplyableMiscGMConfiguration className="webtool.messaging.mq.ApplyableMiscGMConfiguration" version="1.4.2"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Correlation Id</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Wait Interval(in milliseconds)</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>-1</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ApplyableMiscGMConfiguration> <ApplyableMethodConfiguration className="webtool.gui.ApplyableMethodConfiguration" version="1.1.2"> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> </ApplyableMethodConfiguration> </MQProperties> <RMIProperties className="webtool.messaging.RMIProperties" version="1"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Host</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Port</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Binding</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Binding</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Remote Interface</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Remote Interface</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Method Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Method Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </RMIProperties> <SMTPConnectionProperties className="webtool.messaging.SMTPConnectionProperties" version="3"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Port</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>25</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>SMTP Host</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Username</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Password</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <PasswordTestValue className="webtool.data.PasswordTestValue" version="1.1"> <password>AwAAAAA=</password> </PasswordTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValueProperties className="webtool.data.NameValueProperties" version="1.4"> </NameValueProperties> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>From Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>To Email</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </SMTPConnectionProperties> <TIBCOProperties className="webtool.messaging.TIBCOProperties" version="4"> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Time Limit</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>0</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>DAEMON</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>DAEMON</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Subject</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Subject</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Send Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Send Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Reply Field Name</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>Reply Field Name</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </TIBCOProperties> <NoneTransportProperties className="webtool.messaging.NoneTransportProperties" version="1"> </NoneTransportProperties> <CustomTransportProperties className="webtool.messaging.CustomTransportProperties" version="1"> </CustomTransportProperties> </ProtocolPropertiesManager> <ApplyableBooleanConfiguration className="com.parasoft.gui.ApplyableBooleanConfiguration" version="1.2.2"> <inverted>true</inverted> </ApplyableBooleanConfiguration> </TransportProperties> <MessagingOutputProvider className="webtool.messaging.MessagingOutputProvider" version="1.2"> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Request Transport Header</name> </HTTPNamedToolOutputProvider> <HTTPNamedToolOutputProvider className="webtool.tool.HTTPNamedToolOutputProvider" version="1.1.2.1"> <menuName>Transport Header</menuName> <name>Response Transport Header</name> </HTTPNamedToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <menuName>Traffic</menuName> <name>Request Traffic</name> </NamedXMLToolOutputProvider> <HTTPOutputProvider className="webtool.messaging.HTTPOutputProvider" version="1"> <m_name>Traffic Stream</m_name> </HTTPOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> <showRequestHeaders>true</showRequestHeaders> <showResponseHeaders>true</showResponseHeaders> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </MessagingOutputProvider> <outputToolsSize>1</outputToolsSize> <XMLAssertionTool className="webtool.xml.assertion.XMLAssertionTool" version="v.2.2.1.14"> <iconName>XMLAssertor</iconName> <name>XML Assertor</name> <assertionsSize>1</assertionsSize> <ValueAssertion className="webtool.assertion.xml.ValueAssertion" version="1.6.2"> <timestamp>1668649744614</timestamp> <name>Value Assertion</name> <extractEntireElement>true</extractEntireElement> <Assertion_XPath>/*:loanResponse/approved/string()</Assertion_XPath> <NameValuePair className="webtool.data.NameValuePair" version="3.3"> <name>Value</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>true</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> </NameValuePair> </ValueAssertion> <ExpectedXMLMessage className="webtool.xml.ExpectedXMLMessage" version="1.2.1"> <message>true</message> </ExpectedXMLMessage> </XMLAssertionTool> <UserMethod className="com.parasoft.scripting.UserMethod" version="2.2"> <code>true</code> <JythonCode className="com.parasoft.scripting.jython.JythonCode" version="2.2.1.1"> <ScriptingInput className="com.parasoft.scripting.ScriptingInput" version="6"> <useText>true</useText> <ScriptingTextInput className="com.parasoft.scripting.ScriptingTextInput" version="1.3"> </ScriptingTextInput> </ScriptingInput> </JythonCode> <methodId>true</methodId> <JythonMethodIdentifier className="com.parasoft.scripting.jython.JythonMethodIdentifier" version="2.1.1"> </JythonMethodIdentifier> </UserMethod> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> </XMLBuilder> <InputUsable className="webtool.tool.InputUsable" version="5"> <use>1</use> <TextUsable className="webtool.packet.TextUsable" version="4"> <MessagingClient_LiteralMessage>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&#xD; &lt;loanRequest xmlns:ns2=&quot;http://service.parabank.parasoft.com/&quot;&gt;&#xD; &lt;customerId&gt;0&lt;/customerId&gt;&#xD; &lt;availableFunds&gt;1000.00&lt;/availableFunds&gt;&#xD; &lt;loanAmount&gt;5000.00&lt;/loanAmount&gt;&#xD; &lt;downPayment&gt;100.00&lt;/downPayment&gt;&#xD; &lt;/loanRequest&gt;</MessagingClient_LiteralMessage> <type>text/xml</type> </TextUsable> <InputUsableDataSource className="webtool.tool.InputUsableDataSource" version="1"> </InputUsableDataSource> </InputUsable> <mode>Literal</mode> </HTTPClient> </HTTPClientToolTest> </TestSuite> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <condition>true</condition> <TestLogicVariableCondition className="webtool.test.logic.TestLogicVariableCondition" version="1.2"> </TestLogicVariableCondition> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>163</testID> <enabled>true</enabled> <name>DB</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>167</nextIdentifier> <testsSize>2</testsSize> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>164</testID> <enabled>true</enabled> <name>BookStore</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <ToolTest className="webtool.test.ToolTest" version="4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>165</testID> <enabled>true</enabled> <name>DB Tool</name> <DbTool className="webtool.db.DbTool" version="v.2.13.14"> <iconName>DBTool</iconName> <name>Books</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GO</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <SimpleMessagingOutputProvider className="webtool.messaging.SimpleMessagingOutputProvider" version="1"> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <name>SQL Query</name> </NamedXMLToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 22, 2022, 3:11:04 PM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;results&gt; &lt;resultSet&gt; &lt;rows&gt; &lt;row index=&quot;1&quot;&gt; &lt;ID&gt;1&lt;/ID&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;TITLE&gt;C++ How to Program (4th Edition)&lt;/TITLE&gt; &lt;GENRE&gt;Education&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;1&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-08-12&lt;/YEAR&gt; &lt;STOCK&gt;20&lt;/STOCK&gt; &lt;PRICE&gt;99.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;One of the best C++ books&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;2&quot;&gt; &lt;ID&gt;2&lt;/ID&gt; &lt;ISBN&gt;0130341517&lt;/ISBN&gt; &lt;TITLE&gt;Java How to Program (4th Edition)&lt;/TITLE&gt; &lt;GENRE&gt;Education&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;1&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2001-08-08&lt;/YEAR&gt; &lt;STOCK&gt;10&lt;/STOCK&gt; &lt;PRICE&gt;76.00&lt;/PRICE&gt; &lt;DESCRIPTION&gt;Great for Java beginners&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;3&quot;&gt; &lt;ID&gt;3&lt;/ID&gt; &lt;ISBN&gt;0596002831&lt;/ISBN&gt; &lt;TITLE&gt;Java in a Nutshell, Fourth Edition&lt;/TITLE&gt; &lt;GENRE&gt;Education&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;2&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-03-01&lt;/YEAR&gt; &lt;STOCK&gt;5&lt;/STOCK&gt; &lt;PRICE&gt;27.97&lt;/PRICE&gt; &lt;DESCRIPTION&gt;contains an accelerated introduction to the Java programming language and its key APIs so you can start writing code right away. Covers Java 1.4&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;4&quot;&gt; &lt;ID&gt;4&lt;/ID&gt; &lt;ISBN&gt;0130084662&lt;/ISBN&gt; &lt;TITLE&gt;Linux Administration Handbook&lt;/TITLE&gt; &lt;GENRE&gt;Computer Science&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;1&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-03-25&lt;/YEAR&gt; &lt;STOCK&gt;3&lt;/STOCK&gt; &lt;PRICE&gt;49.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;Provides techniques and advice for administering three representative distributions Linux: Red Hat 7.2, SuSE 7.3, and Debian 3.0&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;5&quot;&gt; &lt;ID&gt;5&lt;/ID&gt; &lt;ISBN&gt;0596003811&lt;/ISBN&gt; &lt;TITLE&gt;Oracle PL/SQL Programming, 3rd Edition&lt;/TITLE&gt; &lt;GENRE&gt;Computer Science&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;2&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-09-01&lt;/YEAR&gt; &lt;STOCK&gt;4&lt;/STOCK&gt; &lt;PRICE&gt;38.47&lt;/PRICE&gt; &lt;DESCRIPTION&gt;An indispensable reference for both novice and experienced PL/SQL developers&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;6&quot;&gt; &lt;ID&gt;6&lt;/ID&gt; &lt;ISBN&gt;0672317826&lt;/ISBN&gt; &lt;TITLE&gt;PowerBuilder 7.0 Unleashed&lt;/TITLE&gt; &lt;GENRE&gt;Informatics&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;3&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;1999-12-09&lt;/YEAR&gt; &lt;STOCK&gt;0&lt;/STOCK&gt; &lt;PRICE&gt;34.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;excellent one-volume reference to new features in Sybase&#39;s well-known programming tool, with good coverage of its support for distributed and Internet-based computing&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;7&quot;&gt; &lt;ID&gt;7&lt;/ID&gt; &lt;ISBN&gt;9780470398111&lt;/ISBN&gt; &lt;TITLE&gt;The Next Leap in Productivity: What Top Managers Really Need to Know about Information Technology&lt;/TITLE&gt; &lt;GENRE&gt;Business Technology&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;4&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2009-02-01&lt;/YEAR&gt; &lt;STOCK&gt;20&lt;/STOCK&gt; &lt;PRICE&gt;29.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;How much should top management really care about IT? That&#39;s the question Adam Kolawa bluntly poses in this feisty and compelling book going far beyond traditional business books written for the CIO community.&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;8&quot;&gt; &lt;ID&gt;8&lt;/ID&gt; &lt;ISBN&gt;0470042125&lt;/ISBN&gt; &lt;TITLE&gt;Automated Defect Prevention: Best Practices in Software Management&lt;/TITLE&gt; &lt;GENRE&gt;Software Management&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;4&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2007-09-01&lt;/YEAR&gt; &lt;STOCK&gt;12&lt;/STOCK&gt; &lt;PRICE&gt;101.50&lt;/PRICE&gt; &lt;DESCRIPTION&gt;This book describes an approach to software management based on establishing an infrastructure that serves as the foundation for the project.&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;9&quot;&gt; &lt;ID&gt;9&lt;/ID&gt; &lt;ISBN&gt;0764548662&lt;/ISBN&gt; &lt;TITLE&gt;Bulletproofing Web Applications&lt;/TITLE&gt; &lt;GENRE&gt;Web&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;4&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2001-06-01&lt;/YEAR&gt; &lt;STOCK&gt;3&lt;/STOCK&gt; &lt;PRICE&gt;13.24&lt;/PRICE&gt; &lt;DESCRIPTION&gt;A road map for how to integrate error prevention and detection into the development process to ensure that Web applications are robust, scalable, efficient and reliable.&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;/rows&gt; &lt;/resultSet&gt; &lt;/results&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;results&gt; &lt;resultSet&gt; &lt;rows&gt; &lt;row index=&quot;1&quot;&gt; &lt;ID&gt;1&lt;/ID&gt; &lt;ISBN&gt;0130384747&lt;/ISBN&gt; &lt;TITLE&gt;C++ How to Program (4th Edition)&lt;/TITLE&gt; &lt;GENRE&gt;Education&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;1&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-08-12&lt;/YEAR&gt; &lt;STOCK&gt;20&lt;/STOCK&gt; &lt;PRICE&gt;99.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;One of the best C++ books&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;2&quot;&gt; &lt;ID&gt;2&lt;/ID&gt; &lt;ISBN&gt;0130341517&lt;/ISBN&gt; &lt;TITLE&gt;Java How to Program (4th Edition)&lt;/TITLE&gt; &lt;GENRE&gt;Education&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;1&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2001-08-08&lt;/YEAR&gt; &lt;STOCK&gt;10&lt;/STOCK&gt; &lt;PRICE&gt;76.00&lt;/PRICE&gt; &lt;DESCRIPTION&gt;Great for Java beginners&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;3&quot;&gt; &lt;ID&gt;3&lt;/ID&gt; &lt;ISBN&gt;0596002831&lt;/ISBN&gt; &lt;TITLE&gt;Java in a Nutshell, Fourth Edition&lt;/TITLE&gt; &lt;GENRE&gt;Education&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;2&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-03-01&lt;/YEAR&gt; &lt;STOCK&gt;5&lt;/STOCK&gt; &lt;PRICE&gt;27.97&lt;/PRICE&gt; &lt;DESCRIPTION&gt;contains an accelerated introduction to the Java programming language and its key APIs so you can start writing code right away. Covers Java 1.4&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;4&quot;&gt; &lt;ID&gt;4&lt;/ID&gt; &lt;ISBN&gt;0130084662&lt;/ISBN&gt; &lt;TITLE&gt;Linux Administration Handbook&lt;/TITLE&gt; &lt;GENRE&gt;Computer Science&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;1&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-03-25&lt;/YEAR&gt; &lt;STOCK&gt;3&lt;/STOCK&gt; &lt;PRICE&gt;49.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;Provides techniques and advice for administering three representative distributions Linux: Red Hat 7.2, SuSE 7.3, and Debian 3.0&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;5&quot;&gt; &lt;ID&gt;5&lt;/ID&gt; &lt;ISBN&gt;0596003811&lt;/ISBN&gt; &lt;TITLE&gt;Oracle PL/SQL Programming, 3rd Edition&lt;/TITLE&gt; &lt;GENRE&gt;Computer Science&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;2&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2002-09-01&lt;/YEAR&gt; &lt;STOCK&gt;4&lt;/STOCK&gt; &lt;PRICE&gt;38.47&lt;/PRICE&gt; &lt;DESCRIPTION&gt;An indispensable reference for both novice and experienced PL/SQL developers&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;6&quot;&gt; &lt;ID&gt;6&lt;/ID&gt; &lt;ISBN&gt;0672317826&lt;/ISBN&gt; &lt;TITLE&gt;PowerBuilder 7.0 Unleashed&lt;/TITLE&gt; &lt;GENRE&gt;Informatics&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;3&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;1999-12-09&lt;/YEAR&gt; &lt;STOCK&gt;0&lt;/STOCK&gt; &lt;PRICE&gt;34.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;excellent one-volume reference to new features in Sybase&#39;s well-known programming tool, with good coverage of its support for distributed and Internet-based computing&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;7&quot;&gt; &lt;ID&gt;7&lt;/ID&gt; &lt;ISBN&gt;9780470398111&lt;/ISBN&gt; &lt;TITLE&gt;The Next Leap in Productivity: What Top Managers Really Need to Know about Information Technology&lt;/TITLE&gt; &lt;GENRE&gt;Business Technology&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;4&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2009-02-01&lt;/YEAR&gt; &lt;STOCK&gt;20&lt;/STOCK&gt; &lt;PRICE&gt;29.99&lt;/PRICE&gt; &lt;DESCRIPTION&gt;How much should top management really care about IT? That&#39;s the question Adam Kolawa bluntly poses in this feisty and compelling book going far beyond traditional business books written for the CIO community.&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;8&quot;&gt; &lt;ID&gt;8&lt;/ID&gt; &lt;ISBN&gt;0470042125&lt;/ISBN&gt; &lt;TITLE&gt;Automated Defect Prevention: Best Practices in Software Management&lt;/TITLE&gt; &lt;GENRE&gt;Software Management&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;4&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2007-09-01&lt;/YEAR&gt; &lt;STOCK&gt;12&lt;/STOCK&gt; &lt;PRICE&gt;101.50&lt;/PRICE&gt; &lt;DESCRIPTION&gt;This book describes an approach to software management based on establishing an infrastructure that serves as the foundation for the project.&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;row index=&quot;9&quot;&gt; &lt;ID&gt;9&lt;/ID&gt; &lt;ISBN&gt;0764548662&lt;/ISBN&gt; &lt;TITLE&gt;Bulletproofing Web Applications&lt;/TITLE&gt; &lt;GENRE&gt;Web&lt;/GENRE&gt; &lt;PUBLISHER_ID&gt;4&lt;/PUBLISHER_ID&gt; &lt;YEAR&gt;2001-06-01&lt;/YEAR&gt; &lt;STOCK&gt;3&lt;/STOCK&gt; &lt;PRICE&gt;13.24&lt;/PRICE&gt; &lt;DESCRIPTION&gt;A road map for how to integrate error prevention and detection into the development process to ensure that Web applications are robust, scalable, efficient and reliable.&lt;/DESCRIPTION&gt; &lt;/row&gt; &lt;/rows&gt; &lt;/resultSet&gt; &lt;/results&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> <name>Results as XML</name> </NamedXMLToolOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> <showRequestHeaders>true</showRequestHeaders> <showResponseHeaders>true</showResponseHeaders> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </SimpleMessagingOutputProvider> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <useMultipleLines>true</useMultipleLines> <value>SELECT * FROM Book</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <failOnSQLException>true</failOnSQLException> <DbAccount className="com.parasoft.db.DbAccount" version="1.8"> <DbConfigSettings className="com.parasoft.db.DbConfigSettings" version="1.2.2"> <password>AwAAAAA=</password> <uri>${BOOKSTORE_DB_URL}</uri> <username>sa</username> <driver>AwAAACx5RlA1TWM5YUxod2Y3QUlBWkM2d3lmT1VJN1o2cXgrZ2gxVjZ6QWRGUUhRPQ==</driver> </DbConfigSettings> </DbAccount> </DbTool> </ToolTest> </TestSuite> <TestSuite className="webtool.test.TestSuite" version="48.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>166</testID> <enabled>true</enabled> <name>ParaBank</name> <TestSuitePerformanceOptions className="webtool.test.performance.TestSuitePerformanceOptions" version="1.5"> <APMPerformanceProfileProviderContainer className="webtool.test.performance.apm.APMPerformanceProfileProviderContainer" version="1.1"> </APMPerformanceProfileProviderContainer> <profiless size="0"> </profiless> </TestSuitePerformanceOptions> <AdvancedExecutionOptions className="webtool.test.AdvancedExecutionOptions" version="1.3"> </AdvancedExecutionOptions> <TestSuiteLoadTestOptions className="webtool.loadtest.sim.component.soatest.TestSuiteLoadTestOptions" version="1.1"> </TestSuiteLoadTestOptions> <SetupTeardownOptions className="webtool.test.SetupTeardownOptions" version="1.1"> </SetupTeardownOptions> <browserOptions>true</browserOptions> <TestSuiteBrowserTestingOptions className="webtool.test.TestSuiteBrowserTestingOptions" version="1.15"> <InheritingAuthentication className="webtool.test.InheritingAuthentication" version="1.4"> </InheritingAuthentication> <DefaultCustomHeadlessOption className="webtool.tool.DefaultCustomHeadlessOption" version="1.1.1"> </DefaultCustomHeadlessOption> <DefaultCustomBrowserType className="webtool.tool.DefaultCustomBrowserType" version="1.8.1"> <CompositeBrowserType className="com.parasoft.util.CompositeBrowserType" version="1.1.1"> <browserTypes size="3"> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="0" version="1.1.1"> <typeValue>0</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="1" version="1.1.1"> <typeValue>3</typeValue> </SingleBrowserType> <SingleBrowserType className="com.parasoft.util.SingleBrowserType" index="2" version="1.1.1"> <typeValue>5</typeValue> </SingleBrowserType> </browserTypes> </CompositeBrowserType> </DefaultCustomBrowserType> </TestSuiteBrowserTestingOptions> <TestSuiteSoapClientOptions className="webtool.test.TestSuiteSoapClientOptions" version="1.4"> <GeneralToolOptions className="webtool.app.GeneralToolOptions" version="1.1"> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> </GeneralToolOptions> <WsdlEndpointOptions className="webtool.tool.WsdlEndpointOptions" version="1.1"> <DefaultCustomWsdl className="webtool.tool.DefaultCustomWsdl" version="1.1.1"> </DefaultCustomWsdl> <DefaultCustomEndpoint className="webtool.tool.DefaultCustomEndpoint" version="1.1.1"> </DefaultCustomEndpoint> </WsdlEndpointOptions> <SOAPRPCToolOptions className="webtool.app.SOAPRPCToolOptions" version="1.6"> <DefaultCustomAuthentication className="webtool.tool.DefaultCustomAuthentication" version="1.1.1"> </DefaultCustomAuthentication> <ResetExistingCookiesPreferenceProviderImpl className="webtool.tool.ResetExistingCookiesPreferenceProviderImpl" version="1.1"> </ResetExistingCookiesPreferenceProviderImpl> <DefaultResetExistingCookies className="webtool.tool.DefaultResetExistingCookies" version="1.1.1"> </DefaultResetExistingCookies> <RequestHeaderConstrainProviderImpl className="webtool.tool.RequestHeaderConstrainProviderImpl" version="1.1"> </RequestHeaderConstrainProviderImpl> <DefaultCustomConstrain className="webtool.tool.DefaultCustomConstrain" version="1.1.1"> </DefaultCustomConstrain> <DefaultCustomEncoding className="webtool.tool.DefaultCustomEncoding" version="1.1.1"> </DefaultCustomEncoding> <DefaultCustomTimeout className="webtool.tool.DefaultCustomTimeout" version="1.2.1"> </DefaultCustomTimeout> <DefaultCustomSoapVersion className="webtool.tool.DefaultCustomSoapVersion" version="1.1.1"> </DefaultCustomSoapVersion> <DefaultCustomAttachment className="webtool.tool.DefaultCustomAttachment" version="1.1.1"> </DefaultCustomAttachment> <DefaultCustomTransport className="webtool.tool.DefaultCustomTransport" version="1.1.1"> <transport>1</transport> </DefaultCustomTransport> </SOAPRPCToolOptions> </TestSuiteSoapClientOptions> <profileMappingID>0</profileMappingID> <maxProfileMappingID>1</maxProfileMappingID> <PropertyOwnerImpl className="com.parasoft.property.PropertyOwnerImpl" version="1.1"> </PropertyOwnerImpl> <nextIdentifier>1</nextIdentifier> <testsSize>1</testsSize> <ToolTest className="webtool.test.ToolTest" version="4.15.2"> <DebugAssets className="webtool.test.debug.DebugAssets" version="1"> </DebugAssets> <ReportingSettings className="webtool.test.ReportingSettings" version="1.1"> <TestGRSSettings className="webtool.test.grs.TestGRSSettings" version="1.4.3"> </TestGRSSettings> </ReportingSettings> <testLogic>true</testLogic> <TestLogic className="webtool.test.logic.TestLogic" version="1.7"> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestExecutionDelay className="webtool.test.logic.TestExecutionDelay" version="1.2"> </TestExecutionDelay> <TestDependencyLogic className="webtool.test.logic.TestDependencyLogic" version="1.2"> </TestDependencyLogic> </TestLogic> <testID>167</testID> <enabled>true</enabled> <name>Books 2</name> <DbTool className="webtool.db.DbTool" version="v.2.13.14"> <iconName>DBTool</iconName> <name>Customers</name> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <value>GO</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <SimpleMessagingOutputProvider className="webtool.messaging.SimpleMessagingOutputProvider" version="1"> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <name>SQL Query</name> </NamedXMLToolOutputProvider> <NamedXMLToolOutputProvider className="webtool.xml.NamedXMLToolOutputProvider" version="1.2.1"> <outputToolsSize>1</outputToolsSize> <DiffTool className="webtool.diff.DiffTool" version="v.2.17.14"> <iconName>Diff</iconName> <name>Diff control generated on Nov 22, 2022, 11:55:46 AM.</name> <differsSize>4</differsSize> <BinaryDiffer className="webtool.diff.BinaryDiffer" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <optionsSource>1</optionsSource> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </BinaryDiffer> <TextDiffer className="webtool.diff.TextDiffer" version="1.4.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;results&gt; &lt;resultSet&gt; &lt;rows&gt; &lt;row index=&quot;1&quot;&gt; &lt;ID&gt;12212&lt;/ID&gt; &lt;FIRST_NAME&gt;John&lt;/FIRST_NAME&gt; &lt;LAST_NAME&gt;Smith&lt;/LAST_NAME&gt; &lt;ADDRESS&gt;1431 Main St&lt;/ADDRESS&gt; &lt;CITY&gt;Beverly Hills&lt;/CITY&gt; &lt;STATE&gt;CA&lt;/STATE&gt; &lt;ZIP_CODE&gt;90210&lt;/ZIP_CODE&gt; &lt;PHONE_NUMBER&gt;310-447-4121&lt;/PHONE_NUMBER&gt; &lt;SSN&gt;622-11-9999&lt;/SSN&gt; &lt;USERNAME&gt;john&lt;/USERNAME&gt; &lt;PASSWORD&gt;demo&lt;/PASSWORD&gt; &lt;/row&gt; &lt;row index=&quot;2&quot;&gt; &lt;ID&gt;12323&lt;/ID&gt; &lt;FIRST_NAME&gt;Bob&lt;/FIRST_NAME&gt; &lt;LAST_NAME&gt;Parasoft&lt;/LAST_NAME&gt; &lt;ADDRESS&gt;101 E Huntington Dr&lt;/ADDRESS&gt; &lt;CITY&gt;Monrovia&lt;/CITY&gt; &lt;STATE&gt;CA&lt;/STATE&gt; &lt;ZIP_CODE&gt;91016&lt;/ZIP_CODE&gt; &lt;PHONE_NUMBER&gt;626-256-3680&lt;/PHONE_NUMBER&gt; &lt;SSN&gt;123-45-6789&lt;/SSN&gt; &lt;USERNAME&gt;parasoft&lt;/USERNAME&gt; &lt;PASSWORD&gt;demo&lt;/PASSWORD&gt; &lt;/row&gt; &lt;/rows&gt; &lt;/resultSet&gt; &lt;/results&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </TextDiffer> <XMLDifferNew className="webtool.diff.XMLDifferNew" version="1.1.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <controls size="1"> <ControlKey className="com.parasoft.data.ControlKey" index="0" version="1.6"> <keys size="1"> </keys> <MultiDataRowReference className="com.parasoft.data.MultiDataRowReference" version="1.2"> <last>false</last> <refsSize>1</refsSize> <DataRowReference className="com.parasoft.data.DataRowReference" version="1.2"> </DataRowReference> </MultiDataRowReference> </ControlKey> <DiffTool_RegressionControl index="0">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt; &lt;results&gt; &lt;resultSet&gt; &lt;rows&gt; &lt;row index=&quot;1&quot;&gt; &lt;ID&gt;12212&lt;/ID&gt; &lt;FIRST_NAME&gt;John&lt;/FIRST_NAME&gt; &lt;LAST_NAME&gt;Smith&lt;/LAST_NAME&gt; &lt;ADDRESS&gt;1431 Main St&lt;/ADDRESS&gt; &lt;CITY&gt;Beverly Hills&lt;/CITY&gt; &lt;STATE&gt;CA&lt;/STATE&gt; &lt;ZIP_CODE&gt;90210&lt;/ZIP_CODE&gt; &lt;PHONE_NUMBER&gt;310-447-4121&lt;/PHONE_NUMBER&gt; &lt;SSN&gt;622-11-9999&lt;/SSN&gt; &lt;USERNAME&gt;john&lt;/USERNAME&gt; &lt;PASSWORD&gt;demo&lt;/PASSWORD&gt; &lt;/row&gt; &lt;row index=&quot;2&quot;&gt; &lt;ID&gt;12323&lt;/ID&gt; &lt;FIRST_NAME&gt;Bob&lt;/FIRST_NAME&gt; &lt;LAST_NAME&gt;Parasoft&lt;/LAST_NAME&gt; &lt;ADDRESS&gt;101 E Huntington Dr&lt;/ADDRESS&gt; &lt;CITY&gt;Monrovia&lt;/CITY&gt; &lt;STATE&gt;CA&lt;/STATE&gt; &lt;ZIP_CODE&gt;91016&lt;/ZIP_CODE&gt; &lt;PHONE_NUMBER&gt;626-256-3680&lt;/PHONE_NUMBER&gt; &lt;SSN&gt;123-45-6789&lt;/SSN&gt; &lt;USERNAME&gt;parasoft&lt;/USERNAME&gt; &lt;PASSWORD&gt;demo&lt;/PASSWORD&gt; &lt;/row&gt; &lt;/rows&gt; &lt;/resultSet&gt; &lt;/results&gt; </DiffTool_RegressionControl> </controls> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> <XMLUnitEngine className="webtool.diff.XMLUnitEngine" version="1.2"> </XMLUnitEngine> <VMToolsXMLDiffEngine className="webtool.diff.VMToolsXMLDiffEngine" version="1.1"> </VMToolsXMLDiffEngine> <ExamXMLDiffEngine className="webtool.diff.examxml.ExamXMLDiffEngine" version="1.1"> </ExamXMLDiffEngine> <FormXMLDiffControlSource className="webtool.diff.FormXMLDiffControlSource" version="1.1"> <XMLBuilder className="webtool.xml.builder.XMLBuilder" version="6.6"> <rootNodeExists>true</rootNodeExists> <XMLElementNode className="webtool.xml.builder.XMLElementNode" version="1.3.6"> <value></value> <name>NewElement</name> <showAttributes>true</showAttributes> </XMLElementNode> </XMLBuilder> </FormXMLDiffControlSource> <hasSoapControlSource>true</hasSoapControlSource> <SoapDiffControlSource className="webtool.soap.diff.SoapDiffControlSource" version="1.1"> </SoapDiffControlSource> </XMLDifferNew> <JSONDiffer className="webtool.ecmascript.json.JSONDiffer" version="1.2.1"> <source>true</source> <ControlSource className="webtool.diff.ControlSource" version="1.6"> <IgnoredKeyValues className="com.parasoft.data.IgnoredKeyValues" version="1.2"> </IgnoredKeyValues> </ControlSource> </JSONDiffer> <mode>2</mode> </DiffTool> <name>Results as XML</name> </NamedXMLToolOutputProvider> <ObjectOutputProvider className="webtool.messaging.ObjectOutputProvider" version="1.3.1"> <outputToolsSize>1</outputToolsSize> <TrafficViewer className="webtool.traffic.TrafficViewer" version="v.2.3.14"> <iconName>TrafficViewer</iconName> <name>Traffic Viewer</name> <showRequestHeaders>true</showRequestHeaders> <showResponseHeaders>true</showResponseHeaders> </TrafficViewer> <name>Traffic Object</name> </ObjectOutputProvider> </SimpleMessagingOutputProvider> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <MultiValue className="webtool.data.MultiValue" version="1.5"> <StringTestValue className="webtool.data.StringTestValue" version="4.1"> <useMultipleLines>true</useMultipleLines> <value>SELECT * FROM Customer</value> </StringTestValue> <ParameterizedTestValue className="webtool.data.ParameterizedTestValue" version="3.1"> </ParameterizedTestValue> </MultiValue> <failOnSQLException>true</failOnSQLException> <DbAccount className="com.parasoft.db.DbAccount" version="1.8"> <DbConfigSettings className="com.parasoft.db.DbConfigSettings" version="1.2.2"> <password>AwAAAAA=</password> <uri>${PARABANK_DB_URL}</uri> <username>sa</username> <driver>AwAAACx5RlA1TWM5YUxod2Y3QUlBWkM2d3lmT1VJN1o2cXgrZ2gxVjZ6QWRGUUhRPQ==</driver> </DbConfigSettings> </DbAccount> </DbTool> </ToolTest> </TestSuite> </TestSuite> </TestSuite> </SOAtestProject>
d6b13e5f8e8c51169d8374b90fe221b4350f779d
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.3_18.tst
4b023052b4072dbf383764aecef47860011362c0
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
30,452
tst
bow.3_18.tst
3 15:0.08333333333333333 17:0.3333333333333333 23:0.25 37:0.25 82:0.16666666666666666 95:1.0 96:0.2 97:1.0 114:0.5 115:1.0 116:2.0 128:0.5 145:1.0 171:0.5 272:1.0 350:0.1111111111111111 531:0.5 561:1.0 622:1.0 641:1.0 809:1.0 892:1.0 938:1.0 1168:1.0 1430:1.0 1618:1.0 1742:1.0 1947:0.5 1959:1.0 1992:1.0 2297:1.0 2550:1.0 2721:1.0 3667:1.0 4220:1.0 4227:1.0 3 5:1.0 23:0.375 42:1.0 96:0.2 97:2.0 100:0.25 105:0.5 143:0.3333333333333333 147:0.5 165:0.125 171:0.5 177:0.5 219:0.3333333333333333 368:1.0 373:0.3333333333333333 622:2.0 644:1.0 897:1.0 1058:1.0 1163:1.0 1618:1.0 1742:1.0 1780:0.5 1867:1.0 1869:1.0 1947:0.5 2188:1.0 2194:1.0 2550:1.0 2886:1.0 2942:1.0 3121:1.0 3183:1.0 3667:1.0 3 1:0.1111111111111111 4:1.0 5:1.0 6:0.058823529411764705 23:0.125 34:0.125 37:0.25 40:1.0 42:1.0 116:1.0 146:1.0 147:0.5 150:0.06666666666666667 258:1.0 373:0.3333333333333333 399:0.5 441:1.0 517:1.0 667:1.0 1109:1.0 1377:1.0 1438:1.0 1644:0.3333333333333333 2573:1.0 5019:1.0 3 6:0.35294117647058826 15:0.16666666666666666 17:0.3333333333333333 34:0.25 42:0.5 56:0.3333333333333333 63:1.0 73:0.5 75:1.0 82:0.16666666666666666 105:0.5 114:0.5 145:1.0 190:1.0 215:0.2 219:0.3333333333333333 249:0.5 350:0.1111111111111111 477:1.0 534:1.0 1154:1.0 1568:0.5 1993:1.0 2276:0.5 2515:1.0 2599:1.0 2970:1.0 2987:1.0 4003:1.0 4112:2.0 5019:1.0 5058:1.0 3 5:1.0 23:0.25 42:0.5 97:1.0 116:2.0 157:1.0 275:1.0 311:1.0 312:1.0 373:0.3333333333333333 397:1.0 423:1.0 1657:2.0 1698:1.0 1740:1.0 2547:1.0 3000:1.0 3391:1.0 4451:1.0 3 6:0.058823529411764705 17:0.3333333333333333 23:0.125 34:0.125 42:0.5 56:0.3333333333333333 97:0.5 114:1.5 143:0.3333333333333333 146:1.0 165:0.125 169:1.0 190:1.0 191:0.3333333333333333 215:0.2 219:0.3333333333333333 261:0.03333333333333333 409:1.0 644:1.0 1132:1.0 1176:1.0 1319:1.0 1492:1.0 1867:1.0 1993:1.0 2187:1.0 2974:1.0 3171:1.0 5081:1.0 3 5:1.0 6:0.11764705882352941 15:0.08333333333333333 34:0.25 37:0.25 56:0.3333333333333333 94:2.0 96:0.2 97:1.0 107:0.5 116:1.0 128:0.5 157:1.0 165:0.125 167:1.0 190:2.0 191:0.6666666666666666 235:1.0 461:1.0 561:1.0 1064:1.0 2524:1.0 3375:1.0 4146:1.0 7022:1.0 3 4:1.0 6:0.23529411764705882 15:0.25 34:0.125 37:0.5 42:0.5 63:1.0 75:1.5 82:0.16666666666666666 98:0.3333333333333333 150:0.06666666666666667 158:1.0 165:0.125 185:1.0 189:1.0 191:0.3333333333333333 206:1.0 281:1.0 295:1.0 311:1.0 319:0.09090909090909091 340:1.0 367:1.0 443:0.5 660:1.0 693:1.0 1030:1.0 1033:1.0 1298:1.0 1424:1.0 1719:1.0 2017:1.0 2462:1.0 3605:1.0 4006:1.0 4102:1.0 5095:1.0 3 6:0.058823529411764705 17:0.3333333333333333 34:0.125 37:0.25 94:1.0 95:1.0 96:0.2 114:1.0 139:1.0 150:0.2 165:0.125 206:1.0 238:0.14285714285714285 295:1.0 320:0.5 409:1.0 443:0.5 654:0.1111111111111111 982:1.0 1424:1.0 1947:0.5 2033:1.0 2211:1.0 2320:2.0 3855:1.0 5700:1.0 3 1:0.1111111111111111 34:0.125 35:1.0 36:1.0 42:0.5 44:0.5 63:1.0 89:1.0 177:0.5 197:0.5 215:0.2 311:1.0 314:1.0 417:1.0 496:1.0 654:0.1111111111111111 800:1.0 1671:1.0 2688:1.0 4185:1.0 4370:2.0 3 1:0.1111111111111111 4:1.0 6:0.17647058823529413 23:0.125 33:1.0 34:0.125 35:1.0 36:1.0 42:0.5 56:0.3333333333333333 146:1.0 181:0.25 307:1.0 550:1.0 647:1.0 1266:1.0 1616:1.0 1671:1.0 2231:1.0 2444:1.0 2462:1.0 2609:1.0 5996:1.0 6417:1.0 6983:1.0 3 6:0.058823529411764705 17:0.3333333333333333 34:0.375 37:0.5 42:1.0 56:0.3333333333333333 63:1.0 96:0.2 107:0.5 146:1.0 150:0.06666666666666667 191:0.6666666666666666 201:1.0 206:1.0 219:0.3333333333333333 231:1.0 388:1.0 424:1.0 443:0.5 461:1.0 473:1.0 563:1.0 728:1.0 892:1.0 1139:0.5 1147:1.0 1161:1.0 1267:1.0 1404:1.0 1422:1.0 1438:1.0 1538:1.0 2041:1.0 2331:1.0 2376:1.0 2409:1.0 2695:1.0 3567:1.0 3661:1.0 6170:1.0 3 6:0.058823529411764705 14:0.07692307692307693 15:0.16666666666666666 56:0.3333333333333333 63:1.0 82:0.16666666666666666 97:0.5 100:0.25 191:0.3333333333333333 219:0.3333333333333333 261:0.03333333333333333 287:1.0 320:0.5 373:0.3333333333333333 399:0.5 477:1.0 507:1.0 728:1.0 817:1.0 872:1.0 1399:1.0 1693:1.0 1790:1.0 2695:1.0 3128:1.0 3216:1.0 3255:1.0 3659:1.0 3661:1.0 6589:1.0 3 1:0.1111111111111111 5:1.0 6:0.11764705882352941 17:0.6666666666666666 23:0.125 33:1.0 34:0.125 35:1.0 36:1.0 37:0.25 115:1.0 140:0.5 191:0.3333333333333333 204:1.0 416:0.25 417:1.0 443:0.5 473:0.5 646:1.0 1126:1.0 1181:1.0 2557:1.0 2801:1.0 3515:1.0 3870:1.0 4049:1.0 4651:1.0 3 6:0.058823529411764705 17:0.3333333333333333 34:0.125 37:0.25 96:0.2 106:1.0 128:0.5 201:1.0 223:2.0 327:0.16666666666666666 441:1.0 442:1.0 443:0.5 531:1.0 561:1.0 654:0.1111111111111111 689:1.0 850:1.0 1075:1.0 1217:1.0 1275:1.0 1426:1.0 1428:1.0 1438:1.0 1936:1.0 2294:1.0 3686:1.0 3981:1.0 4109:1.0 4341:1.0 4532:1.0 4911:1.0 6983:1.0 8129:1.0 3 5:2.0 34:0.125 51:0.5 56:0.3333333333333333 63:1.0 88:1.0 94:1.0 98:0.3333333333333333 102:0.5 107:0.5 127:1.0 167:1.0 173:1.0 185:1.0 191:0.6666666666666666 215:0.2 222:0.5 223:1.0 226:2.0 353:1.0 373:0.3333333333333333 438:0.3333333333333333 480:1.0 482:1.0 598:1.0 646:1.0 689:1.0 737:1.0 829:1.0 1693:1.0 1716:1.0 1867:1.0 3175:1.0 3770:1.0 3828:1.0 4497:1.0 7098:1.0 3 5:1.0 6:0.11764705882352941 17:0.3333333333333333 34:0.125 42:0.5 56:0.3333333333333333 82:0.16666666666666666 96:0.2 97:0.5 102:0.5 108:0.5 129:1.0 150:0.06666666666666667 165:0.125 191:0.3333333333333333 210:1.0 339:0.5 350:0.1111111111111111 454:1.0 488:2.0 561:1.0 595:1.0 597:1.0 689:1.0 816:0.5 1295:1.0 1404:1.0 1669:0.3333333333333333 1867:1.0 1885:1.0 2123:1.0 2538:1.0 3197:1.0 3593:1.0 3671:1.0 3686:1.0 4497:1.0 3 6:0.11764705882352941 94:1.0 147:1.0 311:1.0 425:1.0 511:0.5 1127:1.0 1571:1.0 2856:1.0 3259:1.0 3 6:0.058823529411764705 16:0.2 56:0.3333333333333333 60:1.0 82:0.16666666666666666 97:0.5 128:0.5 150:0.06666666666666667 155:0.09090909090909091 163:1.0 226:1.0 281:1.0 327:0.16666666666666666 336:0.5 399:0.5 473:0.5 1904:1.0 2055:1.0 2607:1.0 2721:1.0 2973:1.0 3663:1.0 4237:1.0 4246:1.0 4404:1.0 3 1:0.1111111111111111 5:2.0 6:0.11764705882352941 34:0.125 42:0.5 45:1.0 75:0.5 89:1.0 120:1.0 150:0.13333333333333333 275:1.0 327:0.16666666666666666 353:1.0 367:1.0 441:1.0 448:1.0 929:1.0 1127:1.0 1241:0.5 1382:0.5 1671:2.0 2015:1.0 2158:1.0 2313:1.0 2370:1.0 2530:1.0 2770:1.0 3392:1.0 3817:2.0 4051:1.0 4523:1.0 3 5:3.0 6:0.058823529411764705 14:0.07692307692307693 51:0.25 56:0.3333333333333333 73:0.5 94:1.0 114:0.5 135:0.5 138:0.013157894736842105 146:1.0 147:0.5 150:0.06666666666666667 169:1.0 185:1.0 275:1.0 359:0.5 367:1.0 379:1.0 427:0.2 483:1.0 531:0.5 536:1.0 549:1.0 583:2.0 609:1.0 661:1.0 747:0.5 846:1.0 897:1.0 1035:1.0 1295:1.0 1397:1.0 1412:1.0 1426:1.0 1671:1.0 2082:1.0 2721:1.0 2789:1.0 2819:1.0 3794:1.0 4054:1.0 4261:1.0 4463:1.0 4465:1.0 4480:1.0 4635:1.0 6881:1.0 3 1:0.1111111111111111 5:4.0 15:0.3333333333333333 34:0.125 37:0.25 42:1.0 56:0.3333333333333333 73:0.5 82:0.5 123:1.0 128:0.5 180:1.0 191:0.3333333333333333 261:0.03333333333333333 286:1.0 287:1.0 350:0.1111111111111111 373:0.3333333333333333 405:1.0 411:1.0 461:1.0 473:1.0 477:1.0 483:1.0 878:1.0 1095:1.0 1753:1.0 1910:1.0 2078:1.0 2295:1.0 2313:1.0 2941:1.0 2980:1.0 4723:1.0 5070:1.0 6864:1.0 3 5:1.0 6:0.058823529411764705 15:0.3333333333333333 17:0.3333333333333333 23:0.125 35:1.0 42:3.5 53:1.0 82:0.3333333333333333 96:0.2 97:0.5 135:0.5 155:0.09090909090909091 181:0.25 249:0.5 251:0.5 270:1.0 272:0.5 289:0.5 441:1.0 443:0.5 534:3.0 560:1.0 561:1.0 577:1.0 615:1.0 644:1.0 717:1.0 735:1.0 1035:1.0 1160:1.0 1445:0.3333333333333333 1473:1.0 1474:1.0 1538:1.0 1655:1.0 1719:1.0 1868:1.0 1992:1.0 2263:0.5 2582:1.0 2751:1.0 2752:1.0 2776:1.0 2821:1.0 3096:1.0 3144:1.0 3146:1.0 3628:2.0 3832:1.0 7023:1.0 3 5:3.0 6:0.058823529411764705 15:0.08333333333333333 23:0.25 34:0.375 56:0.3333333333333333 63:1.0 64:1.0 71:1.0 73:0.5 82:0.16666666666666666 96:0.2 97:0.5 116:1.0 143:0.3333333333333333 147:0.5 169:1.0 176:1.0 185:1.0 191:0.6666666666666666 201:1.0 245:1.0 281:1.0 319:0.09090909090909091 410:1.0 443:0.5 499:1.0 587:0.5 613:1.0 644:1.0 763:1.0 840:1.0 1102:1.0 1219:1.0 1690:1.0 1710:1.0 1910:1.0 2015:1.0 2045:1.0 2721:1.0 3064:1.0 3552:1.0 3584:1.0 3636:1.0 4306:1.0 6659:1.0 3 5:1.0 6:0.17647058823529413 14:0.07692307692307693 23:0.125 97:0.5 165:0.125 169:1.0 191:0.3333333333333333 220:1.0 241:1.0 328:1.0 397:1.0 424:1.0 473:0.5 533:0.25 1275:1.0 1700:1.0 2018:1.0 2235:1.0 3639:1.0 3840:1.0 3842:1.0 4385:1.0 3 5:2.0 6:0.29411764705882354 15:0.16666666666666666 17:0.3333333333333333 23:0.125 34:0.25 42:0.5 45:1.0 82:0.16666666666666666 89:1.0 96:0.2 97:1.0 140:1.0 150:0.06666666666666667 327:0.16666666666666666 339:0.5 410:1.0 430:1.0 443:0.5 473:0.5 623:1.0 927:1.0 1397:1.0 1399:1.0 1655:1.0 2716:1.0 2992:1.0 8091:1.0 3 5:1.0 23:0.125 42:1.0 89:1.0 97:0.5 135:0.5 143:0.3333333333333333 147:1.0 150:0.2 155:0.09090909090909091 165:0.125 215:0.2 327:0.16666666666666666 350:0.1111111111111111 359:0.5 367:1.0 379:1.0 473:0.5 583:1.0 717:1.0 747:0.5 857:1.0 879:1.0 1180:1.0 1436:1.0 1637:1.0 2518:1.0 2672:1.0 4492:1.0 3 1:0.3333333333333333 5:1.0 23:0.25 34:0.125 36:1.0 96:0.2 97:1.5 150:0.13333333333333333 215:0.2 409:1.0 423:1.0 617:1.0 695:1.0 941:1.0 1293:1.0 1295:1.0 1568:0.5 2183:1.0 3123:1.0 3405:1.0 3543:1.0 3 1:0.2222222222222222 4:2.0 6:0.058823529411764705 17:0.6666666666666666 33:1.0 56:0.6666666666666666 75:0.5 81:1.0 97:0.5 105:0.5 114:1.5 169:1.0 180:1.0 190:1.0 223:1.0 289:0.5 300:1.0 327:0.16666666666666666 399:0.5 473:1.0 482:1.0 491:1.0 511:0.5 587:0.5 615:1.0 790:1.0 1123:1.0 1154:1.0 1241:0.5 1275:1.0 1389:1.0 1959:2.0 2178:1.0 3437:1.0 3947:1.0 7318:1.0 3 1:0.1111111111111111 5:1.0 15:0.08333333333333333 17:0.3333333333333333 23:0.125 34:0.125 35:1.0 36:1.0 37:0.25 42:0.5 60:1.0 73:0.5 82:0.3333333333333333 190:1.0 215:0.2 228:0.5 235:1.0 340:1.0 423:1.0 496:1.0 664:1.0 714:1.0 769:1.0 1423:1.0 1538:1.0 1655:1.0 3 15:0.08333333333333333 25:0.5 42:1.0 56:0.3333333333333333 95:1.0 145:1.0 223:1.0 319:0.09090909090909091 443:0.5 531:0.5 534:1.0 566:1.0 595:1.0 618:1.0 622:1.0 623:1.0 671:1.0 795:1.0 1295:1.0 1407:1.0 1853:1.0 1998:1.0 2532:1.0 4616:1.0 4877:1.0 3 1:0.1111111111111111 5:1.0 6:0.058823529411764705 15:0.16666666666666666 16:0.2 34:0.125 56:0.3333333333333333 82:0.16666666666666666 88:1.0 114:0.5 123:1.0 138:0.013157894736842105 243:1.0 261:0.03333333333333333 275:1.0 386:0.5 511:0.5 857:1.0 1009:1.0 1032:2.0 1155:1.0 1244:1.0 1295:1.0 1433:1.0 1998:1.0 2353:1.0 2609:1.0 3800:1.0 4540:1.0 3 1:0.1111111111111111 5:2.0 6:0.058823529411764705 11:1.0 42:0.5 51:0.25 56:0.3333333333333333 128:1.0 146:1.0 147:0.5 150:0.06666666666666667 155:0.09090909090909091 181:0.5 185:1.0 226:2.0 284:1.0 327:0.16666666666666666 350:0.1111111111111111 409:1.0 443:0.5 473:0.5 588:1.0 714:1.0 1105:1.0 1109:1.0 1202:1.0 1225:1.0 1349:1.0 1538:1.0 1655:1.0 1768:1.0 1939:0.038461538461538464 2059:1.0 2409:1.0 2553:1.0 2910:1.0 2930:1.0 3085:1.0 3 37:0.25 56:0.3333333333333333 97:1.0 147:1.0 235:1.0 261:0.03333333333333333 266:1.0 272:0.5 287:1.0 340:1.0 375:0.5 785:1.0 1109:2.0 2716:1.0 3270:1.0 3976:1.0 3 6:0.058823529411764705 15:0.16666666666666666 17:0.6666666666666666 37:0.5 42:0.5 73:0.5 114:0.5 147:0.5 169:1.0 206:1.0 261:0.03333333333333333 295:1.0 542:0.5 615:1.0 911:1.0 1109:1.0 1354:0.5 1448:1.0 1538:1.0 1572:1.0 1655:1.0 1826:1.0 2378:0.3333333333333333 2524:1.0 3539:1.0 3 4:1.0 5:1.0 15:0.16666666666666666 23:0.125 42:1.0 73:0.5 97:1.0 150:0.13333333333333333 164:1.0 169:1.0 171:1.0 190:1.0 204:1.0 215:0.2 226:1.0 261:0.03333333333333333 484:1.0 681:0.25 785:1.0 794:1.0 911:1.0 1126:1.0 1261:1.0 1785:1.0 1947:0.5 2723:1.0 3332:1.0 3473:1.0 4782:1.0 6170:1.0 3 4:1.0 5:1.0 6:0.17647058823529413 34:0.125 42:1.0 56:0.3333333333333333 63:1.0 82:0.16666666666666666 95:1.0 105:0.5 107:0.5 135:0.5 192:1.0 261:0.03333333333333333 327:0.16666666666666666 376:1.0 473:1.0 488:1.0 531:1.0 534:3.0 542:0.5 561:2.0 785:1.0 1241:0.5 1261:1.0 1780:0.5 2614:1.0 3790:1.0 3838:1.0 4182:1.0 3 6:0.11764705882352941 34:0.125 42:0.5 69:0.5 114:0.5 117:0.041666666666666664 143:0.3333333333333333 146:1.0 147:0.5 165:0.125 170:1.0 253:1.0 261:0.03333333333333333 279:1.0 336:0.5 350:0.1111111111111111 484:1.0 587:0.5 892:1.0 908:1.0 1351:1.0 1382:0.5 1487:1.0 2221:1.0 2263:0.5 5030:1.0 3 1:0.1111111111111111 5:1.0 15:0.16666666666666666 30:0.5 37:0.5 64:1.0 69:0.5 88:1.0 116:1.0 128:0.5 146:1.0 147:0.5 165:0.125 228:0.5 284:1.0 299:1.0 350:0.1111111111111111 373:0.6666666666666666 452:1.0 484:1.0 488:1.0 561:1.0 587:0.5 747:0.5 1003:1.0 1091:1.0 1326:1.0 1327:1.0 1885:1.0 1936:1.0 2243:1.0 2403:0.5 2626:1.0 3584:1.0 3 1:0.1111111111111111 6:0.058823529411764705 23:0.125 34:0.125 42:0.5 49:1.0 56:0.3333333333333333 82:0.5 96:0.2 106:3.0 139:1.0 145:1.0 146:1.0 162:1.0 165:0.25 169:1.0 188:1.0 189:1.0 328:1.0 353:1.0 393:0.5 443:0.5 488:1.0 524:1.0 618:1.0 644:1.0 671:1.0 892:1.0 1075:1.0 1103:0.5 1241:0.5 1275:1.0 1681:1.0 1780:0.5 1885:1.0 1923:1.0 2591:0.3333333333333333 2807:1.0 4462:1.0 3 5:1.0 6:0.058823529411764705 14:0.07692307692307693 34:0.125 42:0.5 82:0.3333333333333333 96:0.2 102:0.5 201:1.0 204:1.0 223:1.0 373:0.3333333333333333 441:1.0 461:1.0 1003:1.0 1220:1.0 1278:1.0 1572:1.0 1596:1.0 2068:1.0 2441:1.0 2591:0.3333333333333333 4965:1.0 5170:1.0 3 4:1.0 14:0.07692307692307693 69:0.5 82:0.16666666666666666 138:0.013157894736842105 169:1.0 170:1.0 204:1.0 206:1.0 219:0.3333333333333333 255:1.0 367:1.0 756:1.0 1936:1.0 2539:1.0 3 6:0.058823529411764705 14:0.07692307692307693 15:0.08333333333333333 37:0.25 49:1.0 97:0.5 105:0.5 138:0.013157894736842105 177:0.5 215:0.2 224:1.0 424:1.0 443:0.5 542:0.5 858:1.0 930:1.0 2474:1.0 2591:0.3333333333333333 7810:1.0 3 5:1.0 6:0.058823529411764705 14:0.07692307692307693 42:0.5 82:0.16666666666666666 146:1.0 228:0.5 505:1.0 573:1.0 1091:1.0 1199:1.0 1538:1.0 1847:1.0 3605:1.0 3 5:2.0 6:0.058823529411764705 69:0.5 95:1.0 106:1.0 114:0.5 135:0.5 147:0.5 261:0.03333333333333333 336:0.5 353:1.0 534:1.0 955:1.0 1057:1.0 1087:1.0 1104:1.0 1430:1.0 2030:1.0 3550:1.0 3584:1.0 3849:1.0 7075:1.0 3 15:0.08333333333333333 17:0.3333333333333333 23:0.125 42:0.5 82:0.3333333333333333 97:0.5 108:0.5 134:1.0 139:1.0 154:1.0 155:0.2727272727272727 201:1.0 215:0.6 272:0.5 338:1.0 359:0.5 440:1.0 482:1.0 560:1.0 1040:1.0 1219:1.0 1241:0.5 3 6:0.17647058823529413 15:0.08333333333333333 17:0.3333333333333333 63:1.0 73:0.5 105:1.0 108:0.5 167:1.0 215:0.2 253:1.0 295:1.0 305:1.0 328:1.0 359:0.5 407:1.0 441:1.0 461:1.0 522:1.0 615:1.0 958:1.0 959:1.0 960:1.0 1045:1.0 1275:1.0 1423:1.0 1445:0.3333333333333333 1464:1.0 1569:0.3333333333333333 1621:1.0 1671:1.0 2175:0.5 2282:1.0 3013:1.0 3535:1.0 4774:1.0 6517:1.0 3 5:2.0 6:0.058823529411764705 26:1.0 34:0.125 37:0.25 42:1.0 56:0.3333333333333333 63:1.0 64:1.0 69:0.5 108:0.5 146:1.0 150:0.13333333333333333 169:1.0 181:0.25 215:0.2 359:1.5 443:0.5 558:1.0 681:0.25 696:1.0 768:0.5 1006:1.0 1215:1.0 1521:1.0 1651:0.5 1923:1.0 1929:1.0 1939:0.038461538461538464 2683:0.5 2770:1.0 2942:1.0 3151:1.0 3379:1.0 4076:1.0 4104:1.0 6033:1.0 3 34:0.125 37:0.25 42:1.0 54:1.0 56:0.3333333333333333 63:1.0 64:2.0 75:0.5 82:0.16666666666666666 108:0.5 150:0.13333333333333333 169:1.0 181:0.25 201:1.0 250:1.0 251:0.5 350:0.1111111111111111 359:1.0 373:0.3333333333333333 399:0.5 443:0.5 447:1.0 511:0.5 681:0.25 768:0.5 795:1.0 1058:1.0 1192:1.0 1332:1.0 1582:1.0 1923:1.0 1929:1.0 2016:1.0 2770:1.0 2942:1.0 4076:1.0 4242:1.0 3 34:0.125 82:0.16666666666666666 97:0.5 143:0.3333333333333333 145:1.0 150:0.13333333333333333 238:0.14285714285714285 328:1.0 329:0.5 367:1.0 370:0.5 664:1.0 1097:1.0 1296:1.0 1669:0.3333333333333333 1929:1.0 2370:2.0 3663:1.0 5555:1.0 3 5:3.0 6:0.11764705882352941 15:0.16666666666666666 23:0.125 34:0.125 37:0.5 42:0.5 44:0.5 56:0.3333333333333333 64:2.0 97:0.5 106:2.0 147:0.5 226:1.0 253:1.0 350:0.1111111111111111 367:1.0 373:0.3333333333333333 424:1.0 441:1.0 449:1.0 473:1.0 488:2.0 545:1.0 561:1.0 989:1.0 1143:1.0 1260:0.3333333333333333 1263:1.0 1452:1.0 1511:1.0 1569:0.3333333333333333 1707:1.0 1867:1.0 2013:1.0 2248:1.0 2288:1.0 2485:1.0 3582:1.0 3745:1.0 5141:1.0 6287:1.0 3 5:2.0 6:0.058823529411764705 42:1.0 69:0.5 73:0.5 97:0.5 106:1.0 108:0.5 146:1.0 165:0.125 204:1.0 250:1.0 368:1.0 402:1.0 445:1.0 450:1.0 483:1.0 735:1.0 1066:1.0 1161:1.0 1266:1.0 1281:1.0 1386:1.0 1445:0.3333333333333333 1651:0.5 1847:1.0 1867:2.0 2297:1.0 3121:1.0 3567:1.0 4335:1.0 3 1:0.1111111111111111 3:1.0 5:1.0 6:0.17647058823529413 15:0.08333333333333333 17:0.3333333333333333 34:0.125 56:0.3333333333333333 69:0.5 82:0.16666666666666666 98:0.3333333333333333 106:1.0 114:0.5 123:1.0 139:1.0 146:1.0 162:1.0 165:0.125 226:1.0 353:1.0 388:1.0 587:0.5 641:1.0 717:1.0 1057:1.0 1109:1.0 1522:1.0 1743:1.0 2332:1.0 3098:1.0 3661:1.0 4262:1.0 4555:1.0 4853:1.0 4889:1.0 3 1:0.1111111111111111 5:1.0 6:0.058823529411764705 15:0.25 17:0.3333333333333333 23:0.125 34:0.125 54:1.0 56:0.3333333333333333 74:1.0 75:0.5 82:0.16666666666666666 105:0.5 123:1.0 135:0.5 147:0.5 169:1.0 219:0.3333333333333333 238:0.14285714285714285 260:1.0 326:1.0 394:1.0 418:1.0 460:0.5 509:1.0 553:1.0 566:1.0 573:1.0 695:1.0 1083:1.0 1109:1.0 1221:1.0 1317:1.0 1332:1.0 1333:1.0 1692:1.0 1716:1.0 1717:1.0 2564:1.0 2721:1.0 3330:1.0 4275:1.0 4669:1.0 4703:1.0 5093:1.0 5792:1.0 8177:1.0 3 17:0.3333333333333333 25:0.5 138:0.013157894736842105 284:1.0 1332:1.0 4274:1.0 4275:1.0 3 5:2.0 6:0.058823529411764705 42:1.0 82:0.16666666666666666 98:0.3333333333333333 102:0.5 150:0.06666666666666667 169:1.0 175:1.0 177:0.5 228:0.5 350:0.1111111111111111 366:0.5 409:1.0 411:1.0 443:0.5 648:1.0 768:0.5 1421:0.3333333333333333 1434:1.0 1671:1.0 1719:1.0 1752:1.0 2694:1.0 3 5:1.0 6:0.058823529411764705 23:0.125 37:0.25 42:0.5 146:1.0 150:0.06666666666666667 165:0.125 169:1.0 191:0.6666666666666666 347:1.0 350:0.1111111111111111 393:0.5 473:1.0 484:1.0 534:1.0 609:1.0 716:1.0 776:1.0 908:1.0 2532:1.0 2614:1.0 2678:1.0 3663:1.0 4571:1.0 3 5:2.0 23:0.125 42:1.0 49:1.0 56:0.3333333333333333 82:0.3333333333333333 94:2.0 98:0.3333333333333333 128:0.5 131:0.5 165:0.125 176:1.0 249:0.5 263:1.0 292:0.3333333333333333 350:0.1111111111111111 366:0.5 367:1.0 373:0.3333333333333333 411:1.0 441:1.0 457:1.0 460:0.5 473:1.0 477:1.0 767:1.0 776:1.0 829:1.0 911:1.0 1580:1.0 1614:1.0 2054:1.0 2729:1.0 3030:1.0 4599:1.0 3 1:0.2222222222222222 15:0.08333333333333333 17:0.6666666666666666 34:0.25 35:1.0 37:0.25 56:0.3333333333333333 63:1.0 71:1.0 96:0.4 97:0.5 143:0.3333333333333333 150:0.13333333333333333 226:1.0 284:1.0 300:1.0 331:1.0 402:1.0 416:0.25 417:1.0 418:1.0 561:1.0 595:1.0 3241:1.0 3998:1.0 4238:1.0 4562:1.0 5126:1.0 3 5:1.0 6:0.11764705882352941 17:0.3333333333333333 117:0.041666666666666664 138:0.013157894736842105 146:1.0 595:1.0 1920:1.0 2138:1.0 2384:0.5 4425:1.0 4789:1.0 5055:1.0 3 6:0.11764705882352941 15:0.08333333333333333 17:0.3333333333333333 23:0.125 30:0.5 34:0.25 37:0.25 42:1.0 82:0.16666666666666666 97:0.5 98:0.3333333333333333 105:0.5 135:0.5 145:1.0 169:1.0 175:1.0 180:1.0 191:0.3333333333333333 211:1.0 286:1.0 328:1.0 340:1.0 367:2.0 385:1.0 389:1.0 411:1.0 511:0.5 542:0.5 617:1.0 620:1.0 622:1.0 624:1.0 671:1.0 695:2.0 747:0.5 811:1.0 1123:1.0 1280:1.0 2158:1.0 2219:1.0 2534:1.0 2970:1.0 3072:1.0 3330:1.0 3331:1.0 3671:1.0 3742:1.0 6034:1.0 3 5:1.0 6:0.058823529411764705 14:0.07692307692307693 15:0.08333333333333333 16:0.2 34:0.125 44:0.5 56:0.3333333333333333 96:0.2 275:1.0 320:0.5 587:0.5 595:1.0 681:0.25 866:1.0 1387:1.0 1403:1.0 2101:1.0 2478:0.3333333333333333 2504:1.0 3330:1.0 3353:1.0 3410:1.0 3653:0.5 4498:1.0 3 5:1.0 6:0.058823529411764705 15:0.08333333333333333 25:0.5 42:0.5 54:1.0 56:0.3333333333333333 73:0.5 75:0.5 98:0.3333333333333333 185:1.0 245:1.0 320:0.5 367:1.0 399:0.5 423:1.0 543:0.5 717:1.0 813:1.0 866:1.0 999:1.0 1139:0.5 1373:1.0 1445:0.3333333333333333 1675:1.0 1785:1.0 2688:1.0 3450:1.0 4376:1.0 4498:1.0 4612:1.0 5170:1.0 3 5:2.0 6:0.058823529411764705 14:0.07692307692307693 42:0.5 73:0.5 95:1.0 97:0.5 191:0.6666666666666666 251:0.5 305:2.0 328:1.0 350:0.2222222222222222 353:1.0 494:1.0 506:1.0 531:0.5 585:1.0 586:1.0 618:1.0 1017:1.0 1018:1.0 1066:1.0 1389:1.0 1496:1.0 1535:5.0 2786:1.0 4483:1.0 4893:1.0 3 6:0.11764705882352941 31:1.0 35:1.0 36:1.0 91:1.0 92:1.0 150:0.06666666666666667 190:2.0 261:0.03333333333333333 275:1.0 359:0.5 496:1.0 785:1.0 911:1.0 1436:1.0 1810:1.0 2059:1.0 3031:1.0 7618:1.0 3 6:0.058823529411764705 14:0.07692307692307693 15:0.08333333333333333 56:0.3333333333333333 73:0.5 150:0.06666666666666667 261:0.03333333333333333 263:1.0 359:0.5 445:1.0 644:1.0 785:1.0 3870:1.0 7881:1.0 3 5:1.0 14:0.07692307692307693 34:0.125 42:0.5 97:0.5 147:0.5 155:0.09090909090909091 158:1.0 201:1.0 219:0.3333333333333333 220:1.0 261:0.03333333333333333 367:1.0 373:0.3333333333333333 375:0.5 441:1.0 563:1.0 785:1.0 1241:0.5 1479:1.0 1564:1.0 1896:1.0 1941:1.0 2342:1.0 3 5:1.0 6:0.11764705882352941 34:0.125 56:0.3333333333333333 73:0.5 82:0.3333333333333333 114:0.5 128:0.5 146:1.0 155:0.09090909090909091 216:1.0 308:1.0 473:0.5 648:1.0 1298:1.0 1430:1.0 1611:1.0 1654:1.0 3006:1.0 3267:1.0 6253:1.0 3 14:0.07692307692307693 37:0.25 56:0.3333333333333333 319:0.09090909090909091 375:0.5 566:1.0 587:0.5 1432:1.0 1921:1.0 2330:2.0 2649:1.0 3 5:1.0 6:0.058823529411764705 7:0.5 15:0.08333333333333333 17:0.3333333333333333 34:0.125 37:0.25 64:1.0 82:0.16666666666666666 97:0.5 128:0.5 135:0.5 165:0.125 181:0.25 220:1.0 223:1.0 275:1.0 300:1.0 347:1.0 373:0.3333333333333333 440:1.0 441:1.0 587:0.5 654:0.1111111111111111 1423:1.0 1471:1.0 1695:1.0 1779:1.0 2519:1.0 2675:1.0 2959:1.0 3391:1.0 5095:1.0 5275:1.0 3 5:1.0 6:0.058823529411764705 14:0.07692307692307693 17:0.3333333333333333 45:2.0 56:0.3333333333333333 128:0.5 138:0.013157894736842105 240:1.0 319:0.09090909090909091 399:0.5 417:1.0 511:0.5 549:1.0 561:1.0 587:0.5 647:1.0 4185:1.0 4237:1.0 3 1:0.1111111111111111 6:0.058823529411764705 42:1.0 56:0.3333333333333333 96:0.2 97:0.5 98:0.3333333333333333 101:1.0 135:0.5 165:0.125 191:0.3333333333333333 223:1.0 319:0.09090909090909091 443:0.5 671:1.0 717:1.0 1332:1.0 1333:1.0 1403:1.0 1564:1.0 1926:1.0 2686:1.0 3774:1.0 3 23:0.125 34:0.25 97:0.5 117:0.041666666666666664 138:0.013157894736842105 165:0.125 181:0.25 190:1.0 531:0.5 1105:1.0 1155:1.0 1667:1.0 1740:1.0 2609:1.0 2610:1.0 2611:1.0 2776:1.0 4059:1.0 4707:1.0 3 6:0.11764705882352941 7:0.5 14:0.07692307692307693 15:0.08333333333333333 34:0.125 42:0.5 56:0.3333333333333333 97:0.5 190:1.0 191:0.3333333333333333 215:0.4 275:1.0 384:1.0 711:1.0 1256:1.0 2688:1.0 3212:1.0 3353:1.0 4006:1.0 4707:1.0 5129:1.0 3 5:1.0 6:0.058823529411764705 15:0.08333333333333333 31:1.0 34:0.125 42:2.5 101:1.0 105:0.5 109:1.0 115:1.0 128:0.5 147:0.5 150:0.06666666666666667 180:1.0 194:1.0 204:1.0 206:1.0 215:0.2 240:1.0 241:1.0 251:0.5 373:0.3333333333333333 441:1.0 473:2.0 511:0.5 564:1.0 1332:1.0 1569:0.3333333333333333 1670:0.5 1717:1.0 2297:1.0 2691:1.0 2941:1.0 4238:1.0 4241:1.0 4924:1.0 4980:1.0 3 5:1.0 6:0.17647058823529413 7:0.5 17:0.3333333333333333 31:1.0 42:0.5 56:0.3333333333333333 63:1.0 75:0.5 82:0.16666666666666666 106:1.0 115:1.0 117:0.041666666666666664 146:1.0 147:0.5 149:1.0 150:0.06666666666666667 176:1.0 207:1.0 232:1.0 281:1.0 300:1.0 350:0.1111111111111111 539:1.0 561:1.0 615:1.0 1161:1.0 1421:0.3333333333333333 1423:1.0 1448:1.0 1719:1.0 2229:1.0 2559:1.0 2803:1.0 3584:1.0 3800:1.0 4311:1.0 3 5:1.0 6:0.058823529411764705 10:1.0 11:1.0 12:1.0 15:0.08333333333333333 31:1.0 34:0.125 42:1.0 64:2.0 75:0.5 97:0.5 150:0.13333333333333333 201:1.0 235:1.0 261:0.03333333333333333 319:0.09090909090909091 327:0.16666666666666666 380:0.5 488:1.0 587:0.5 785:1.0 1003:1.0 1104:0.5 1281:1.0 1355:1.0 1440:1.0 1661:1.0 2064:0.5 3448:1.0 4370:1.0 4707:1.0 3 5:4.0 7:0.5 30:0.5 31:1.0 42:0.5 88:1.0 97:0.5 106:1.0 108:0.5 131:0.5 143:0.3333333333333333 146:2.0 147:0.5 191:0.3333333333333333 454:1.0 473:0.5 878:1.0 1085:1.0 1268:1.0 1535:1.0 1661:1.0 1667:1.0 2515:1.0 2591:0.3333333333333333 3416:1.0 3556:2.0 4324:1.0 4406:1.0 3 6:0.23529411764705882 15:0.08333333333333333 23:0.125 31:1.0 56:0.3333333333333333 75:0.5 82:0.5 97:0.5 106:1.0 143:0.3333333333333333 146:1.0 147:0.5 191:0.6666666666666666 220:1.0 222:0.5 254:0.6666666666666666 261:0.03333333333333333 300:1.0 367:1.0 386:0.5 409:1.0 488:1.0 534:1.0 561:1.0 622:1.0 672:1.0 713:1.0 1332:1.0 1333:1.0 1426:1.0 1546:1.0 1865:1.0 1998:1.0 2317:1.0 2683:0.5 3344:1.0 3870:1.0 4407:1.0 6912:1.0 3 5:2.0 6:0.11764705882352941 17:0.3333333333333333 29:1.0 31:1.0 42:1.0 82:0.16666666666666666 97:1.0 106:1.0 115:1.0 150:0.06666666666666667 165:0.125 215:0.2 238:0.14285714285714285 254:0.3333333333333333 273:0.3333333333333333 300:1.0 319:0.09090909090909091 339:0.5 373:0.3333333333333333 410:1.0 488:1.0 541:1.0 870:1.0 1596:1.0 1667:1.0 2351:1.0 2378:0.3333333333333333 2694:1.0 3182:1.0 3231:1.0 3770:1.0 3884:1.0 5076:1.0 6253:1.0 6529:1.0 3 1:0.1111111111111111 6:0.058823529411764705 24:1.0 34:0.25 42:0.5 56:0.3333333333333333 73:0.5 82:0.16666666666666666 97:0.5 114:0.5 146:1.0 181:0.25 221:1.0 223:1.0 225:1.0 226:1.0 251:0.5 261:0.03333333333333333 272:0.5 300:1.0 320:0.5 399:0.5 405:1.0 406:1.0 543:0.5 654:0.1111111111111111 995:1.0 1032:1.0 1410:1.0 1667:4.0 1910:1.0 1992:1.0 2876:1.0 2923:1.0 2966:1.0 3087:1.0 3106:1.0 5141:1.0 6752:1.0 3 5:1.0 6:0.058823529411764705 7:0.5 17:0.3333333333333333 23:0.125 31:1.0 34:0.5 54:1.0 56:0.6666666666666666 128:0.5 222:0.5 261:0.03333333333333333 281:1.0 300:1.0 477:1.0 798:1.0 1177:1.0 1332:1.0 1333:1.0 1465:1.0 2113:1.0 2119:2.0 2609:1.0 2876:1.0 6752:1.0 3 5:2.0 6:0.17647058823529413 15:0.16666666666666666 17:0.3333333333333333 42:0.5 82:0.16666666666666666 146:1.0 147:0.5 190:2.0 191:0.3333333333333333 204:1.0 290:1.0 441:1.0 577:1.0 1123:1.0 1569:0.3333333333333333 1904:1.0 2462:1.0 2776:1.0 3208:1.0 3332:1.0 3892:1.0 4155:1.0 4236:1.0 4880:1.0 4980:1.0 5876:1.0 7947:1.0 3 5:1.0 6:0.17647058823529413 14:0.07692307692307693 34:0.125 51:0.25 56:0.3333333333333333 145:1.0 201:1.0 204:1.0 255:1.0 367:1.0 1780:0.5 2538:1.0 3183:1.0 3416:1.0 7799:1.0 3 5:1.0 6:0.11764705882352941 14:0.07692307692307693 15:0.08333333333333333 23:0.25 56:0.3333333333333333 82:0.16666666666666666 106:2.0 146:1.0 147:1.0 155:0.09090909090909091 165:0.25 241:1.0 278:1.0 457:1.0 908:1.0 1248:1.0 1298:1.0 1830:1.0 1923:1.0 1992:2.0 2721:1.0 2722:1.0 3910:1.0 4054:1.0 4490:1.0 3 5:1.0 6:0.058823529411764705 14:0.07692307692307693 17:0.3333333333333333 97:1.0 114:0.5 138:0.013157894736842105 165:0.125 232:1.0 275:1.0 290:1.0 491:1.0 647:1.0 724:1.0 927:1.0 988:0.5 1481:1.0 1671:1.0 1888:1.0 2435:1.0 2547:1.0 2626:1.0 4344:1.0 4576:1.0 5283:1.0 5660:1.0 3 5:2.0 15:0.08333333333333333 25:0.5 34:0.25 177:0.5 290:1.0 407:1.0 510:1.0 747:0.5 1064:1.0 1191:1.0 1332:1.0 1333:1.0 1578:1.0 1932:1.0 1994:1.0 2959:1.0 3101:1.0 3567:1.0 4567:1.0 3 1:0.1111111111111111 6:0.058823529411764705 15:0.25 17:0.3333333333333333 30:0.5 34:0.25 35:1.0 36:1.0 42:1.0 56:0.3333333333333333 96:0.2 98:0.3333333333333333 131:0.5 155:0.09090909090909091 175:1.0 185:1.0 188:1.0 302:1.0 320:0.5 368:1.0 393:0.5 443:0.5 496:1.0 526:1.0 800:1.0 857:1.0 1120:1.0 1345:1.0 1349:1.0 1671:1.0 1672:1.0 1708:2.0 1709:2.0 2282:1.0 2828:1.0 4250:1.0 4324:1.0 5427:1.0 3 15:0.08333333333333333 30:0.5 34:0.125 42:0.5 44:0.5 82:0.16666666666666666 97:0.5 261:0.03333333333333333 281:1.0 373:0.3333333333333333 743:1.0 1389:1.0 1992:1.0 2539:1.0 2721:1.0 4250:1.0 3 6:0.23529411764705882 14:0.07692307692307693 15:0.08333333333333333 17:0.3333333333333333 94:2.0 97:1.0 149:1.0 169:1.0 171:1.0 204:1.0 226:1.0 331:1.0 531:0.5 537:1.0 546:1.0 561:1.0 828:0.5 850:1.0 1154:1.0 1183:0.5 1672:1.0 1681:1.0 1780:0.5 2278:1.0 2468:1.0 2968:1.0 3260:1.0 4327:1.0 3 6:0.11764705882352941 34:0.25 42:0.5 82:0.16666666666666666 150:0.06666666666666667 245:1.0 473:0.5 543:0.5 918:1.0 919:1.0 1044:1.0 1256:1.0 1361:0.02564102564102564 1446:1.0 1569:0.3333333333333333 2041:1.0 2263:0.5 3049:1.0 3410:1.0 3700:1.0 3 5:1.0 6:0.11764705882352941 14:0.07692307692307693 23:0.125 26:1.0 42:1.0 54:1.0 97:1.0 101:1.0 191:0.3333333333333333 219:0.3333333333333333 226:1.0 238:0.14285714285714285 255:1.0 272:0.5 329:0.5 371:1.0 441:1.0 1426:1.0 1637:1.0 1992:1.0 2996:1.0 3823:1.0 5679:1.0 6841:1.0 8244:1.0 3 4:1.0 5:2.0 6:0.11764705882352941 17:0.3333333333333333 37:0.5 56:0.3333333333333333 75:0.5 98:0.3333333333333333 138:0.013157894736842105 143:0.3333333333333333 150:0.06666666666666667 246:1.0 307:1.0 327:0.16666666666666666 350:0.1111111111111111 394:1.0 896:1.0 981:1.0 1143:1.0 1166:2.0 1332:1.0 1333:1.0 1664:1.0 2478:0.3333333333333333 2500:1.0 2567:1.0 3672:1.0 4141:1.0 4979:1.0 7669:1.0 3 5:1.0 56:0.3333333333333333 117:0.041666666666666664 138:0.013157894736842105 215:0.2 443:0.5 461:1.0 1295:1.0 1332:1.0 1333:1.0 2680:1.0 2927:1.0 3101:1.0 3241:1.0 3737:1.0 5027:1.0 3 1:0.1111111111111111 5:3.0 6:0.17647058823529413 15:0.08333333333333333 34:0.125 42:0.5 44:0.5 56:0.3333333333333333 73:0.5 75:0.5 82:0.16666666666666666 97:0.5 98:0.3333333333333333 132:0.5 165:0.125 190:1.0 197:0.5 204:1.0 206:1.0 211:1.0 215:0.4 367:1.0 399:0.5 412:1.0 478:1.0 563:1.0 1116:1.0 1160:1.0 1177:1.0 1222:1.0 1522:1.0 1596:1.0 1661:1.0 1693:1.0 2688:1.0 2843:1.0 3175:1.0 4177:1.0 4317:1.0 4523:1.0 3 1:0.1111111111111111 4:1.0 6:0.11764705882352941 16:0.2 25:0.5 34:0.125 56:0.3333333333333333 138:0.013157894736842105 164:1.0 386:0.5 654:0.1111111111111111 716:1.0 717:1.0 1222:1.0 2929:1.0 3 5:1.0 34:0.125 42:0.5 56:0.3333333333333333 97:1.0 101:1.0 128:0.5 191:0.3333333333333333 261:0.03333333333333333 272:0.5 353:1.0 367:2.0 595:1.0 597:1.0 599:1.0 785:1.0 1241:0.5 1332:1.0 1333:1.0 1389:1.0 1410:1.0 2973:1.0 3832:1.0 4158:1.0 4497:1.0 3 6:0.17647058823529413 15:0.08333333333333333 34:0.125 42:1.5 56:0.3333333333333333 82:0.16666666666666666 169:1.0 201:1.0 245:1.0 350:0.1111111111111111 439:1.0 441:1.0 496:1.0 511:0.5 693:1.0 843:1.0 892:1.0 927:1.0 1046:1.0 1116:1.0 1174:1.0 1307:1.0 1332:1.0 1333:1.0 1363:1.0 1569:0.3333333333333333 1719:1.0 2018:1.0 2188:1.0 3208:1.0 3 5:1.0 6:0.23529411764705882 17:1.0 34:0.125 42:1.0 44:0.5 56:0.3333333333333333 82:0.5 114:0.5 138:0.013157894736842105 139:1.0 147:0.5 275:1.0 300:1.0 318:1.0 343:1.0 488:1.0 650:1.0 1028:1.0 1044:1.0 1104:1.0 2017:1.0 2141:1.0 2158:1.0 2161:1.0 2162:1.0 2182:1.0 3 14:0.07692307692307693 15:0.08333333333333333 34:0.125 37:0.25 73:0.5 165:0.125 240:1.0 290:1.0 297:1.0 298:1.0 399:0.5 418:1.0 449:1.0 473:0.5 635:1.0 1332:1.0 1333:1.0 1596:1.0 1719:1.0 1883:1.0 1992:1.0 2071:1.0 2941:1.0 3031:3.0 3829:1.0 4221:1.0 4924:1.0 5544:1.0
184f00d34585d5ae24718c45fafb3a38b81e61c7
449d555969bfd7befe906877abab098c6e63a0e8
/752/CH18/EX18.7.1/18_7_1.sce
211e24439f44bd2c827527078f07881909b5e4ca
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
386
sce
18_7_1.sce
clc; //page no 706 //prob no. 18.7.1 //refer example 18.3.1 a=4/3;//aspect ratio D=48.26*10^-2;//CRT tube diagonal Nh=647; H=sqrt((a^2)*(D^2)/(1+a^2)); //Determination of viewing angle & minimum dist. w=H/Nh; theta=Nh*(1/60);//As each pixel subtend 1 minute of arc disp('degree',theta,'The viewing angle is'); X=H/(2*tand(theta/2)); disp('m',X,'The min. viewing dist is');
07f10be8e4eede4a3fb1a38e40e7d82f4ec218b9
ebd6f68d47e192da7f81c528312358cfe8052c8d
/swig/Examples/test-suite/scilab/operator_overload_runme.sci
ca41acd75439ea8d60fa03e998fa56f42496e04b
[ "LicenseRef-scancode-swig", "GPL-3.0-or-later", "LicenseRef-scancode-unknown-license-reference", "GPL-3.0-only", "Apache-2.0" ]
permissive
inishchith/DeepSpeech
965ad34d69eb4d150ddf996d30d02a1b29c97d25
dcb7c716bc794d7690d96ed40179ed1996968a41
refs/heads/master
2021-01-16T16:16:05.282278
2020-05-19T08:00:33
2020-05-19T08:00:33
243,180,319
1
0
Apache-2.0
2020-02-26T05:54:51
2020-02-26T05:54:50
null
UTF-8
Scilab
false
false
1,988
sci
operator_overload_runme.sci
exec("swigtest.start", -1); function checktrue(value, msg) checkequal(value, %T, msg) endfunction a = new_Op(); b = new_Op(5); c = new_Op(b); d = new_Op(2); dd = new_Op(); // Assignment operator Op_Equal(dd, d); // Comparison operator checktrue(Op_NotEqual(a, b), "Op_NotEqual(a, b)"); checktrue(Op_EqualEqual(b, c), "Op_EqualEqual(b, c)"); checktrue(Op_NotEqual(a, d), "Op_NotEqual(a, d)"); checktrue(Op_EqualEqual(d, dd), "Op_EqualEqual(d, dd)"); checktrue(Op_LessThan(a, b), "Op_LessThan(a, b)"); checktrue(Op_LessThanEqual(a, b), "Op_LessThanEqual(a, b)"); checktrue(Op_LessThanEqual(b, c), "Op_LessThanEqual(b, c)"); checktrue(Op_GreaterThanEqual(b, c), "Op_GreaterThanEqual(b, c)"); checktrue(Op_GreaterThan(b, d), "Op_GreaterThan(b, d)"); checktrue(Op_GreaterThanEqual(b, d), "Op_GreaterThanEqual(b, d)"); delete_Op(a); delete_Op(b); delete_Op(c); delete_Op(d); delete_Op(dd); f = new_Op(1); g = new_Op(1); expop = new_Op(); op = Op_Plus(f, g); Op_i_set(expop, 2); checktrue(Op_EqualEqual(op, expop), "Op_Plus(f, g) <> Op(2)"); delete_Op(op); op = Op_Minus(f, g); Op_i_set(expop, 0); checktrue(Op_EqualEqual(op, expop), "Op_Minus(f, g) <> Op(0)"); delete_Op(op); op = Op_Multiply(f, g); Op_i_set(expop, 1); checktrue(Op_EqualEqual(op, expop), "Op_Multiply(f, g) <> Op(1)"); delete_Op(op); op = Op_Divide(f, g); Op_i_set(expop, 1); checktrue(Op_EqualEqual(op, expop), "Op_Divide(f, g) <> Op(1)"); delete_Op(op); // Unary operator op = Op_PlusPlusPrefix(new_Op(3)); Op_i_set(expop, 4); checktrue(Op_EqualEqual(op, expop), "Op_PlusPlusPrefix(op) <> Op(4)"); // Square bracket operator checkequal(Op_IndexIntoConst(op, uint32(0)), 4, "Op_IndexIntoConst(op, 0) <> 4"); checkequal(Op_IndexIntoConst(op, uint32(1)), 0, "Op_IndexIntoConst(op, 1) <> 0"); // Functor i = new_Op(3); checkequal(Op_Functor(i), 3, "Op_Functor(i)"); checkequal(Op_Functor(i, 1), 4, "Op_Functor(i, 1)"); delete_Op(f); delete_Op(g); delete_Op(i); delete_Op(expop); exec("swigtest.quit", -1);
c72f7494f59ea67f5238f6ae45f1305d96fa810d
449d555969bfd7befe906877abab098c6e63a0e8
/1379/CH11/EX11.1.4/example11_4.sce
faaac5c07f94f77f371fc60b54b8ef61c4bfe7a9
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
705
sce
example11_4.sce
//exapple 11.4 clc; funcprot(0); // Initialization of Variable U=2.032/10^4; pi=3.1428; rho=852; g=9.81; mu=1.92/1000; mf=125/3600;//mass flow rate //calculation //part 1 G=U*rho; A=mf/G; d=sqrt(4*A/pi); disp(d, "the diameter of vessel will be in(m):"); //part 2 A=0.201; e=0.43; ms=102;//mass of solids rhos=1500;//density of solid L=ms/rhos/A; Lmf=L/(1-e); disp(Lmf , "depth of bed in (m):") //part 3 d1=0.2/1000; U=2*5.5/10^3*e^3*d1^2*(rhos-rho)*g/mu/(1-e); //now euating for e //a=e^3/(1-e) a=U/5.5*10^3/(d1^2*(rhos-rho)*g/mu); y=poly([-a a 0 1],'e',"coeff"); e2=roots(y); L=Lmf*(1-e)/(1-e2(3)); disp(L,"depth of fluidised bed under operating condition in (m):")
eb65d5d2156a097fc355dd7164fabeebab77c747
449d555969bfd7befe906877abab098c6e63a0e8
/527/CH1/EX1.1/1_1exam.sce
4a3fa1b77573e6435b94bbfb22e075d1512a62b5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
793
sce
1_1exam.sce
//Engineering and Chemical Thermodynamics //Example 1.1 //Page no :22 clear ; clc // Given the quality of the system is ,x=0.2 // V_l = Specific volume of pure liquid // V_v = Specific volume of pure vapour // V = Molar volume of liquid-vapour mixture disp(" Example: 1.1 Page no : 22") ; disp(" V = V_l + x*(V_v - V_l)"); disp(" 0.2 = (V - V_l) / (V_v - V_l)"); disp(" 0.8 = (V_v - V) / (V_v - V_l)"); disp(" The tie line is devided into two parts according to the fraction of each phase to get the state of the mixture . "); // The line segment representing the liquid is four times greater than that of vapour disp(" As no numerical values are given for specific volumes , we can not get numerical answer .");
933e8066b7781871a9592bdf13628e0afb1bdfd2
449d555969bfd7befe906877abab098c6e63a0e8
/2258/CH7/EX7.13/7_13.sce
9908f81e2731e38621d1f9fa3cfc45de2e2a0eb7
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
345
sce
7_13.sce
clc(); clear; // To calculate the energy band gap k=8.616*10^-5; T1=20; //temp in C T1=T1+273; //temp in K T2=32; //temp in C T2=T2+273; //temp in K rho2=4.5; //resistivity in ohm m rho1=2; //resistivity in ohm m dy=log10(rho2)-log10(rho1); dx=(1/T1)-(1/T2); Eg=2*k*dy/dx; printf("energy band gap is %f eV",Eg);
710ea50595542676e83c7273594fe333d8e854d7
292983cd8dd99bd552dbbfb2088669e2fd8e9256
/DustyWave/DustyWaveMonodispVolumeDust_С2.sce
773fca8f7ca66b90b8428e5d50ee87a7c50f43f9
[]
no_license
MultiGrainSPH/1D_Dust_DS
ec848f29b53737c8fcaed4458be309055c18c206
0ad4619952e6e5fc6ede5859abe1f3a432dca0f4
refs/heads/master
2022-05-10T18:59:57.101731
2022-05-05T08:15:54
2022-05-05T08:15:54
244,804,407
1
1
null
null
null
null
UTF-8
Scilab
false
false
6,422
sce
DustyWaveMonodispVolumeDust_С2.sce
//НАЧАЛЬНЫЕ ДАННЫЕ//INITIAL DATA rho_g=1;//плотность газа//gas density rho_d=0.1;//плотность пыли//dust density t_stop=10000;//время релаксации//relaxation time k=1;//количество волн//number of waves c_g=1;//скорость звука в газе//speed of sound in gas c_d=0.0;//скорость звука в пыли//speed of sound in dust theta=0.2;//объёмная доля//volume fraction delta_rho_g_wave=0.01; С_Const=1;//длина отрезка координат//coordinate length t_Selected=0.2;//в какой момент времени рассматриваем волну//at what point in time we consider the wave number_Of_Points=100;//количество узлов, по которым строим графики//the number of nodes on which to build graphs overwrite_Files='on';//перезапись файлов при отрисовке графиков (on-да)//overwrite files when drawing graphs (on-yes) path='D:\Projects\Multigrain\DispersionRel\ScilabSovlers';//путь до текстовых файлов//path to text files //path='C:\Users\User\Desktop\ГАЗОПЫЛЬ\MonoDisp\Output files';//путь до текстовых файлов //КОНЕЦ НАЧАЛЬНЫХ ДАННЫХ//END OF INITIAL DATA k=(2*%pi*k)/С_Const; epsilon=rho_d/rho_g; xi=theta/(1-theta); //КОЭФФИЦИЕНТЫ ПОЛИНОМА//POLYNOMIC COEFFICIENTS S(1)=k^4*(c_g^2*c_d^2); S(2)=-k^2/t_stop*((xi+1)^2*c_g^2+epsilon*c_d^2); S(3)=k^2*((xi^2/epsilon+1)*c_g^2+c_d^2); S(4)=-(1+epsilon)/t_stop; S(5)=1; //КОРНИ ПОЛИНОМА//ROOTS OF POLINOMA for i=1:length(S) coef(i)=S(6-i); end R=roots(coef); disp(R); //КОРЕНЬ С ПОЛОЖИТЕЛЬНОЙ МНИМОЙ ЧАСТЬЮ//ROOT WITH A POSITIVE IMAGINARY PART omega=0; for i=1:length(R) if imag(R(i))>0 then omega=R(i); end end disp(omega); //ДЕЛЬТЫ С ВОЛНАМИ// delta_u_g_wave = -%i*omega/(k*rho_g)*delta_rho_g_wave; delta_rho_d_wave = ((-omega+epsilon/t_stop)*omega/(k*rho_g)-k*c_g^2/rho_g)/(k*c_g^2/(rho_d*(1/theta-1))+epsilon*omega/(t_stop*k*rho_d))*delta_rho_g_wave; delta_u_d_wave = -%i*omega/(k*rho_d)*delta_rho_d_wave; //ФУНКЦИИ ДЛЯ РАСЧЁТА ДЕЛЬТ//FUNCTIONS FOR CALCULATING DELTA function y=delta_rho_g(x,t) y=delta_rho_g_wave*exp(%i*k*x-omega*t); endfunction function y=delta_u_g(x,t) y=delta_u_g_wave*exp(%i*k*x-omega*t); endfunction function y=delta_rho_d(x,t) y=delta_rho_d_wave*exp(%i*k*x-omega*t); endfunction function y=delta_u_d(x,t) y=delta_u_d_wave*exp(%i*k*x-omega*t); endfunction //РАСЧЁТ КОЭФФИЦИЕНТОВ ПЕРЕД КОСИНУСОМ В ДЕЛЬТАХ//CALCULATION OF COEFFICIENTS BEFORE THE COSINUS IN DELTA coef_cos_delta_rho_g=real(delta_rho_g_wave); coef_cos_delta_u_g=real(delta_u_g_wave); coef_cos_delta_rho_d=real(delta_rho_d_wave); coef_cos_delta_u_d=real(delta_u_d_wave); //РАСЧЁТ КОЭФФИЦИЕНТОВ ПЕРЕД СИНУСОМ В ДЕЛЬТАХ//CALCULATION OF COEFFICIENTS BEFORE SINUS IN DELTA coef_sin_delta_rho_g=imag(delta_rho_g_wave); coef_sin_delta_u_g=imag(delta_u_g_wave); coef_sin_delta_rho_d=imag(delta_rho_d_wave); coef_sin_delta_u_d=imag(delta_u_d_wave); //ФУНКЦИЯ ДЛЯ ПОСТРОЕНИЯ СЕТКИ//FUNCTION FOR CONSTRUCTION GRID function X=uniform_Grid(a,b,N)//равномерная сетка на [a,b] с N узлами//uniform grid on [a, b] with N nodes h=(b-a)/(N-1); for n=1:N X(n)=a+h*(n-1); end endfunction X=uniform_Grid(0,С_Const,number_Of_Points); for i=1:length(X) RDRG0(i)=real(delta_rho_g(X(i),0)); RDUG0(i)=real(delta_u_g(X(i),0)); RDRD0(i)=real(delta_rho_d(X(i),0)); RDUD0(i)=real(delta_u_d(X(i),0)); RDRGt(i)=real(delta_rho_g(X(i),t_Selected)); RDUGt(i)=real(delta_u_g(X(i),t_Selected)); RDRDt(i)=real(delta_rho_d(X(i),t_Selected)); RDUDt(i)=real(delta_u_d(X(i),t_Selected)); end //СОЗДАЕМ ПУСТОЙ ТЕКСТОВЫЙ ФАЙЛ//CREATING AN EMPTY TEXT FILE if overwrite_Files=='on' then full_Name=path+'\t=0.txt'; f_w=mopen(full_Name, 'wt'); mfprintf(f_w, '#real_delta_rho_g(x)=('+string(coef_cos_delta_rho_g)+')*cos('+string(k)+'*x)-('+string(coef_sin_delta_rho_g)+')*sin('+string(k)+'*x)\n'); mfprintf(f_w, '#real_delta_u_g(x)=('+string(coef_cos_delta_u_g)+')*cos('+string(k)+'*x)-('+string(coef_sin_delta_u_g)+')*sin('+string(k)+'*x)\n'); mfprintf(f_w, '#real_delta_rho_d(x)=('+string(coef_cos_delta_rho_d)+')*cos('+string(k)+'*x)-('+string(coef_sin_delta_rho_d)+')*sin('+string(k)+'*x)\n'); mfprintf(f_w, '#real_delta_u_d(x)=('+string(coef_cos_delta_u_d)+')*cos('+string(k)+'*x)-('+string(coef_sin_delta_u_d)+')*sin('+string(k)+'*x)\n'); mfprintf(f_w, '\n'); mfprintf(f_w, '# x real(delta_rho_g) real(delta_u_g) real(delta_rho_d) real(delta_u_d)\n'); for i=1:length(X) mfprintf(f_w, '%f %f %f %f %f\n', X(i), RDRG0(i), RDUG0(i), RDRD0(i), RDUD0(i)); end mclose(f_w); end if overwrite_Files=='on' then full_Name=path+'\t='+string(t_Selected)+'.txt'; f_w=mopen(full_Name, 'wt'); mfprintf(f_w, '# x real(delta_rho_g) real(delta_u_g) real(delta_rho_d) real(delta_u_d)\n'); for i=1:length(X) mfprintf(f_w, '%f %f %f %f %f\n', X(i), RDRGt(i), RDUGt(i), RDRDt(i), RDUDt(i)); end mclose(f_w); end //СТРОИМ ГРАФИКИ//BUILDING GRAPHICS subplot(4,1,1); plot(X,RDRG0,'blue'); plot(X,RDRGt,'green'); hl=legend(['t = 0', 't = '+string(t_Selected)], -1); g=get('current_axes'); g.title.text='real(delta_rho_g)'; subplot(4,1,2); plot(X,RDUG0,'blue'); plot(X,RDUGt,'green'); hl=legend(['t = 0', 't = '+string(t_Selected)], -1); g=get('current_axes'); g.title.text='real(delta_u_g)'; subplot(4,1,3); plot(X,RDRD0,'blue'); plot(X,RDRDt,'green'); hl=legend(['t = 0', 't = '+string(t_Selected)], -1); g=get('current_axes'); g.title.text='real(delta_rho_d)'; subplot(4,1,4); plot(X,RDUD0,'blue'); plot(X,RDUDt,'green'); hl=legend(['t = 0', 't = '+string(t_Selected)], -1); g=get('current_axes'); g.title.text='real(delta_u_d)';
26a647296a031b52a6e12a046d58cb0d9428c707
6285663d2259fa331b87bfb8ab368f892ee94351
/10/testers/p5/CPU.2.tst
4429feca047b14288aee09902a54315a803e4a3e
[]
no_license
Ellonet/nand-ex1
1ed60786aef5386321519d23b1d2328930e0700d
19eee2248c24c9912ca72b61ce0d1869dc885d71
refs/heads/master
2020-04-01T10:07:53.274194
2019-01-06T18:07:23
2019-01-06T18:07:23
153,103,996
0
0
null
null
null
null
UTF-8
Scilab
false
false
1,422
tst
CPU.2.tst
// This file is part of the materials accompanying the book // "The Elements of Computing Systems" by Nisan and Schocken, // MIT Press 2004. Book site: http://www.idc.ac.il/tecs // File name: projects/05/CPU.tst. Version: beta 1.4. load CPU.hdl, output-file CPU2.out, compare-to CPU2.cmp, output-list time%S0.4.0 inM%D0.6.0 instruction%B0.16.0 reset%B2.1.2 newOutM%D1.6.0 writeM%B3.1.3 addressM%D0.5.0 pc%D0.5.0 DRegister[]%D1.6.1; set instruction %B0000000000001010,//@10 tick, output, tock, output; set instruction %B1010110000010000, //D=shift left A tick, output, tock, output; set instruction %B0000000000011101, // @29 tick, output, tock, output; set instruction %B1110110000010000, // D=A tick, output, tock, output; set instruction %B1010000000110000, //AD=shift left A tick, output, tock, output; set instruction %B1110110111010000, // D=A+1 tick, output, tock, output; set instruction %B0000001111101000, // @1000 tick, output, tock, output; set instruction %B1100110000010000, // D=A; tick, output, tock, output; set instruction %B1010011111011000, //MD=shift left D+1 tick, output, tock, output; set instruction %B1011001100010000, //D=shift left D tick, output, tock, output; set instruction %B0000000000000001, //@1 tick, output, tock, output; set instruction %B1110110000010000, //D=A tick, output, tock, output; set instruction %B1011001100010001, //D = shiftLeft D;jgt tick, output, tock, output;
62a2196f98bc0dd48118a9f83c1f6e60eb160a44
449d555969bfd7befe906877abab098c6e63a0e8
/1442/CH4/EX4.14/4_14.sce
82a07f88a8a5aba931ec02e8544a536b650f3ac4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
397
sce
4_14.sce
clc //initialisation of variables p0= 100 //kpa A= 0.1 //m^2 F= 20 //kN m3= 0.8873 //kg m1= 1.1384 //kg m2= 0.2511 //kg u1= 3116.2 //kJ/kg u2= 2728.7 //kJ/kg v3= 0.9942 //m^3/kg //CALCULATIONS pe= (p0+(F/A))/1000 h3= (m1*u1-m2*u2)/m3 z3= m3*v3/A //RESULTS printf (' final pressure = %.1f Mpa',pe) printf (' \n enthalpy = %.1f kJ/kg',h3) printf ('\n piston rise = %.2f m',z3)
7a9a5ac06c7d469ced7a6dfa65b73f218bcad03e
449d555969bfd7befe906877abab098c6e63a0e8
/1631/CH9/EX9.19/Ex9_19.sce
fad28beb2b81703189baad1d1c35b1dd0d8db0be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
472
sce
Ex9_19.sce
//Caption: Channel Matrix,joint probability //Example 9.19 //page no 408 //Find Channel Matrix,joint probability clc; clear; px1=0.5; px2=0.5; py1x1=0.9; py2x1=0.1; py1x2=0.2; py2x2=0.8; PYX=[py1x1 py2x1; py1x2 py2x2]; PX=[px1 px2]; disp(PYX," i)Channel Matrix [P(Y/X)]="); PY=PX*PYX; printf("\n\ ii) P(y1)=%.2f and P(y2)=%.2f \n",PY(1),PY(2)); PXd=[px1 0;0 px2]; PXY=PXd*PYX; printf("\n iii)P(x1y2)=%.2f and P(x2y1)=%.2f",PXY(3),PXY(2));
41f0c325166cee55a23c97bb43cb953539b170fb
449d555969bfd7befe906877abab098c6e63a0e8
/887/CH2/EX2.17/2_17.sce
4d021130d533852d1bafb3988d24f31743b7b31e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
729
sce
2_17.sce
clc //ex2.17 V_s=20; //source voltage i_s=2; //source current R_1=5; R_2=20; //after zeroing the sources which includes replacing voltage source with short circuit and current source with open circuit, we get R_t R_eq=1/((1/R_1)+(1/R_2)); //R_1 and R_2 are in parallel combination R_t=R_eq; //Thevenin resistance //short-circuit analysis to find i_sc i_2=0; //voltage across R_2 is 0 i_1=V_s/R_1; i_sc=i_1+2-i_2; //short-circuit current(KCL at junction of R_2 and I_s) V_t=R_t*i_sc; //thevenin voltage disp(i_sc,'short-circuit current in amperes') disp(R_t,'thevenin resistance in ohms') disp(V_t,'thevenin voltage in volts') //thevenin equivalent can be made of V_t and R_t.
59b7436078899400d3e849883e35ed9ca681b484
449d555969bfd7befe906877abab098c6e63a0e8
/98/CH3/EX3.1/example3_1.sce
d09234d43cf1b7bd48aeb4efdf9475b7c4c85a1f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
165
sce
example3_1.sce
//Chapter 3 //Example 3_1 //Page 50 clear;clc; max_dem=100; lf=0.4; //energy generated printf("Energy generated per annum = %.1f kWh\n\n", max_dem*lf*8760*1000);
05d2c985c36ebbd568b2284b1fa97bde138db1ca
449d555969bfd7befe906877abab098c6e63a0e8
/1553/CH7/EX7.2/7Ex2.sce
1ec9c6af3cba9a3a99a2c5de3713a22ed5b40b7a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
7Ex2.sce
//Chapter 7 Ex2 clc; clear; close; //let number be x //given 7x-15=2x+10 //thus polynomial is 5x-25=0 mycoeff=[-25 5]; p=poly(mycoeff,"x","coeff"); ans=roots(p); printf("The number is: %d",ans); //Alternative logic for same problem for x=1:99 if((5*x-25)==0) printf("\nAlternate logic: \nThe number is: %d",x); break; end end
d7cde6f3cd20649e746a4c4e4382ffc5aa15c0ef
5dafc5465f6d1597caf7ec7c747c333cff9e7490
/hw1/7.tst
dbf1287860910676789875496342b98c5851839e
[ "MIT" ]
permissive
TylerWasniowski/cs159
b50b7110dfbf93b6178b04baa3bd6af9c3bab2ec
f423fde81db93ff024602724d08fbf0d8a5be2e6
refs/heads/master
2020-04-28T02:37:09.294105
2019-05-20T06:51:46
2019-05-20T06:51:46
174,905,640
0
0
null
null
null
null
UTF-8
Scilab
false
false
679
tst
7.tst
Immediately after creating A. A: I am 16867, and my parent is 13578. Immediately before creating B. Only one process at this point. Immediately before creating C. Immediately after creating B. B: I am 16868, and my parent is 16867. Immediately before creating D. Immediately after creating C. C: I am 16869, and my parent is 16867. Immediately before creating E. Immediately before creating F. Immediately after creating E. E: I am 16871, and my parent is 16869. Exiting E... Immediately after creating D. D: I am 16870, and my parent is 16868. Exiting D... Immediately after creating F. F: I am 16872, and my parent is 16869. Exiting F... Exiting B... Exiting C... Exiting A...
68ad7a226021b3e41feea1b860cd01644b190a8c
9b68b3d73b63ebcbfe18cc9a4aa8e91c84833a84
/tests/libs/hdf5/test-h5-wrappers-new/FORTRAN/H5T/testfiles/112/h5ex_t_opaqueatt_F03.tst
2acf16a365d7fb7060598ac853bcbbf5f06b54b6
[ "LicenseRef-scancode-unknown-license-reference", "Apache-2.0", "LicenseRef-scancode-llnl", "LicenseRef-scancode-hdf4", "LicenseRef-scancode-warranty-disclaimer" ]
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
102
tst
h5ex_t_opaqueatt_F03.tst
Datatype tag for A1 is: "Character array" A1[0]: OPAQUE0 A1[1]: OPAQUE1 A1[2]: OPAQUE2 A1[3]: OPAQUE3
5df3a20cda8ae49e85e51fa4e1fe73e845e7b9a7
449d555969bfd7befe906877abab098c6e63a0e8
/3651/CH8/EX8.14/14.sce
a36c6c78db03e5c0a8f32e75b340bfe1c5af7d7e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
282
sce
14.sce
//variable declaration P_i=100 P_o=2 L=10 //Calculations S=(10/L)*log(P_i/P_o) O=S*L //Result printf('a.Signal attention per unit length =%0.3f dB km**-1\n',(S)) printf('b.Overall signal attenuation =%0.3f dB\n',(O)) printf('//Answer given in the textbook is wrong')
fadc9a69a263f3bebcd4833bc4efbdfc2e0a1aa5
e41b69b268c20a65548c08829feabfdd3a404a12
/3DCosmos/Data/Scripts/_Sub/GeneralSettings.SCI
6d2f2fcca0248d132650cbca140c1c2fd772cc9e
[ "LicenseRef-scancode-khronos", "MIT" ]
permissive
pvaut/Z-Flux
870e254bf340047ed2a52d888bc6f5e09357a8a0
096d53d45237fb22f58304b82b1a90659ae7f6af
refs/heads/master
2023-06-28T08:24:56.526409
2023-03-01T12:44:08
2023-03-01T12:44:08
7,296,248
1
1
null
2023-06-13T13:04:58
2012-12-23T15:40:26
C
UTF-8
Scilab
false
false
7,407
sci
GeneralSettings.SCI
codeblock readtextfile(ScriptDir+"\_TOOLS.sci"); T_scene_create; sc=T_getscene; myviewport=T_getviewport; myviewport.CameraPos=point(0,0,1); myviewport.CameraDir=vector(0,0,-1); myviewport.FocalDistance=1; refframe=sc.addsubframe("refframe"); cframe=refframe.addscreenframe("Controls Frame"); cframe.enablelight=false; cframe.BlendType=BlendTranslucent; cframe.DepthMask=DepthMaskDisable; cframe.color=color(1,1,1,0.5); root.mousedampingfactor=0.25; cframe.EnabeMouseArrow(point(0.5,0.5),point(0,0),point(1,1),0.03); px=0.07;py=0.9; px2=px+0.4; textsize=0.03; showstereo=cframe.add("CheckControl","Size":textsize); showstereo.checked=ReadSetting("ShowStereo",false); showstereo.position=point(px,py); cframe.add("TextControl","Content":'Show in stereo',"Size":textsize,"Position":point(px+1.5*textsize,py)); swapleftright=cframe.add("CheckControl","Size":textsize); swapleftright.checked=ReadSetting("SwapLeftRight",false); swapleftright.position=point(px2,py); cframe.add("TextControl","Content":'Swap left and right',"Size":textsize,"Position":point(px2+1.5*textsize,py)); py=py-2.5*textsize; mirrorleftH=cframe.add("CheckControl","Size":textsize); mirrorleftH.checked=ReadSetting("MirrorLeftH",false); mirrorleftH.position=point(px,py); cframe.add("TextControl","Content":'Left mirror horizontal',"Size":textsize,"Position":point(px+1.5*textsize,py)); mirrorrightH=cframe.add("CheckControl","Size":textsize); mirrorrightH.checked=ReadSetting("MirrorRightH",false); mirrorrightH.position=point(px2,py); cframe.add("TextControl","Content":'Right mirror horizontal',"Size":textsize,"Position":point(px2+1.5*textsize,py)); py=py-1.5*textsize; mirrorleftV=cframe.add("CheckControl","Size":textsize); mirrorleftV.checked=ReadSetting("MirrorLeftV",false); mirrorleftV.position=point(px,py); cframe.add("TextControl","Content":'Left mirror vertical',"Size":textsize,"Position":point(px+1.5*textsize,py)); mirrorrightV=cframe.add("CheckControl","Size":textsize); mirrorrightV.checked=ReadSetting("MirrorRightV",false); mirrorrightV.position=point(px2,py); cframe.add("TextControl","Content":'Right mirror vertical',"Size":textsize,"Position":point(px2+1.5*textsize,py)); py=py-1.5*textsize; cframe.add("TextControl","Content":'Horizontal Stretch:',"Size":textsize,"Position":point(px,py)); stretchfactor=cframe.add("EditControl","Size":textsize,"SizeX":0.15); stretchfactor.position=point(px+0.25,py); stretchfactor.content=ReadSetting("HorizontalStretch","1.000"); py=py-1.5*textsize; cframe.add("TextControl","Content":'Eye separation factor:',"Size":textsize,"Position":point(px,py)); eyesepfactor=cframe.add("EditControl","Size":textsize,"SizeX":0.15); eyesepfactor.position=point(px+0.25,py); eyesepfactor.content=ReadSetting("EyeSepFactor","0.025"); py=py-2.5*textsize; cframe.add("TextControl","Content":'Display',"Size":(1.2*textsize),"Position":point(px,py)); py=py-1.5*textsize; cframe.add("TextControl","Content":'Name:',"Size":textsize,"Position":point(px,py)); dispname=cframe.add("EditControl","Size":textsize,"SizeX":0.25); dispname.position=point(px+0.15,py); dispname.content=ReadSetting("DisplayName",""); fullscreen=cframe.add("CheckControl","Size":textsize); fullscreen.checked=ReadSetting("FullScreen",false); fullscreen.position=point(px2+0.1,py); cframe.add("TextControl","Content":'Full screen',"Size":textsize,"Position":point(px2+0.1+1.5*textsize,py)); py=py-1.5*textsize; cframe.add("TextControl","Content":'Offset X:',"Size":textsize,"Position":point(px,py)); viewportx0=cframe.add("EditControl","Size":textsize,"SizeX":0.15); viewportx0.position=point(px+0.15,py); viewportx0.content=ReadSetting("WinOffsetX",""); cframe.add("TextControl","Content":'Size X:',"Size":textsize,"Position":point(px2,py)); viewportlx=cframe.add("EditControl","Size":textsize,"SizeX":0.15); viewportlx.position=point(px2+0.15,py); viewportlx.content=ReadSetting("WinSizeX",""); py=py-1.5*textsize; cframe.add("TextControl","Content":'Offset Y:',"Size":textsize,"Position":point(px,py)); viewporty0=cframe.add("EditControl","Size":textsize,"SizeX":0.15); viewporty0.position=point(px+0.15,py); viewporty0.content=ReadSetting("WinOffsetY",""); cframe.add("TextControl","Content":'Size Y:',"Size":textsize,"Position":point(px2,py)); viewportly=cframe.add("EditControl","Size":textsize,"SizeX":0.15); viewportly.position=point(px2+0.15,py); viewportly.content=ReadSetting("WinSizeY",""); py=py-2.5*textsize; cframe.add("TextControl","Content":'Frame rate:',"Size":textsize,"Position":point(px,py)); framerate=cframe.add("EditControl","Size":textsize,"SizeX":0.15); framerate.position=point(px+0.15,py); framerate.content=ReadSetting("FrameRate",""); cframe.add("TextControl","Content":'Sync factor:',"Size":textsize,"Position":point(px2,py)); syncfactor=cframe.add("EditControl","Size":textsize,"SizeX":0.15); syncfactor.position=point(px2+0.15,py); syncfactor.content=ReadSetting("SyncFactor","0"); py=py-2.5*textsize; cframe.add("TextControl","Content":'Lattitude:',"Size":textsize,"Position":point(px,py)); lattitude=cframe.add("EditControl","Size":textsize,"SizeX":0.15); lattitude.position=point(px+0.15,py); lattitude.content=ReadSetting("Lattitude","51"); cframe.add("TextControl","Content":'Longitude:',"Size":textsize,"Position":point(px2,py)); longitude=cframe.add("EditControl","Size":textsize,"SizeX":0.15); longitude.position=point(px2+0.15,py); longitude.content=ReadSetting("Longitude","0"); py=py-2.5*textsize; cframe.add("TextControl","Content":'Language:',"Size":textsize,"Position":point(px,py)); language=cframe.add("ListControl","Size":textsize,"SizeX":0.3,"CountY":1); language.position=point(px+0.15,py); llist=GetLanguageList; language.List=llist; actlanguage=ReadSetting("Language","English"); for i=0 to llist.size-1 do if llist(i)==actlanguage then language.SelectIdx=i; py=py-3*textsize; btok=cframe.add("ButtonControl","Content":'Apply',"Position":point(px,py),"Size":textsize,"SizeX":0.2); btcancel=cframe.add("ButtonControl","Content":'Cancel',"Position":point(px2,py),"Size":textsize,"SizeX":0.2); finished=false; savesettings=false; while not(finished) do { if btcancel.wasmodified then finished=true; if btok.wasmodified then { savesettings=true; finished=true; } render; } if savesettings then { WriteSetting("ShowStereo",showstereo.Checked); WriteSetting("SwapLeftRight",swapleftright.Checked); WriteSetting("MirrorLeftH",mirrorleftH.Checked); WriteSetting("MirrorLeftV",mirrorleftV.Checked); WriteSetting("MirrorRightH",mirrorrightH.Checked); WriteSetting("MirrorRightV",mirrorrightV.Checked); WriteSetting("HorizontalStretch",stretchfactor.content); WriteSetting("EyeSepFactor",eyesepfactor.content); WriteSetting("DisplayName",dispname.content); WriteSetting("FullScreen",fullscreen.checked); WriteSetting("WinOffsetX",viewportx0.content); WriteSetting("WinOffsetY",viewporty0.content); WriteSetting("WinSizeX",viewportlx.content); WriteSetting("WinSizeY",viewportly.content); WriteSetting("FrameRate",framerate.content); WriteSetting("SyncFactor",syncfactor.content); WriteSetting("Longitude",longitude.content); WriteSetting("Lattitude",lattitude.content); WriteSetting("Language",language.Selected); #message('Please restart the software now'); Execute(ExecDir+"\z-flux.exe",execdir,false); ExitProgram; }
2ea9f4d28d73e200c6ffdfe8ed68ee23863224fc
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.5/tests/examples/strcat.man.tst
747c78cbeff2bb828b1bae6de719a7d0b6898682
[ "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
41
tst
strcat.man.tst
clear;lines(0); strcat(string(1:10),',')
480398e6e7681afd650a3990b5ec02e5fed04b30
8217f7986187902617ad1bf89cb789618a90dd0a
/source/2.4.1/macros/scicos/do_options.sci
71bbd63604cbc31307bbe7f1dcbfae2f15006071
[ "LicenseRef-scancode-public-domain", "LicenseRef-scancode-warranty-disclaimer" ]
permissive
clg55/Scilab-Workbench
4ebc01d2daea5026ad07fbfc53e16d4b29179502
9f8fd29c7f2a98100fa9aed8b58f6768d24a1875
refs/heads/master
2023-05-31T04:06:22.931111
2022-09-13T14:41:51
2022-09-13T14:41:51
258,270,193
0
1
null
null
null
null
UTF-8
Scilab
false
false
2,967
sci
do_options.sci
function [edited,options]=do_options(opt,flag) // // Copyright INRIA if xget('use color')==1 colors=string(1:xget("lastpattern")+2); else colors=['black','pat 1','pat 2','pat 3','pat 4','pat 5','pat 6','pat 7',... 'pat 8','pat 9','pat 10','pat 11','pat 12','pat 13','pat 14',.. 'pat 15','white']; end fontsSiz=['08','10','12','14','18','24']; fontsIds=[ 'Courrier','Symbol','Times','Times Italic','Times Bold',.. 'Times B. It.']; marksIds=['.','+','x','*','diamond fill.','diamond','triangle up',.. 'triangle down','trefle','circle']; DashesIds=['Solid','-2- -2-','-5- -5-','-5- -2-','-8- -2-',.. '-11- -2-','-11- -5-']; // ok=%f edited=%f options=opt if flag=='3D' then With3D=options('3D')(1) if type(With3D)==4 then with3d=0;with3d(With3D)=1 else with3d=With3D end Color3D=options('3D')(2) l3d=list('3D Shape',with3d+1,['No','Yes']); lcol_3d=list('colors 3D shape color',Color3D,colors); rep=x_choices('3D shape settings',list(l3d,lcol_3d)); if rep<>[] then ok=%t options('3D')(1)=rep(1)==2 options('3D')(2)=rep(2) end elseif flag=='Background' then bac=options('Background') if bac==[] then bac=[8 1],end //compatibility if size(bac,'*')<2 then bac(2)=1,end //compatibility lcols_bg=list('colors Background',bac(1),colors); lcols_fg=list('colors Foreground',bac(2),colors); rep=x_choices('Background/Foreground color settings',list(lcols_bg,lcols_fg)); if rep<>[] then ok=%t options('Background')=rep end elseif flag=='LinkColor' then lcols_rl=list('colors regular links',options('Link')(1),colors); lcols_el=list('colors event links ',options('Link')(2),colors); rep=x_choices('Default regular and event link colors',list(lcols_rl,lcols_el)) if rep<>[] then ok=%t options('Link')=rep end elseif flag=='ID' then lfid_l=list('Link ID fontId',options('ID')(2)(1)+1,fontsIds); lfiz_l=list('Link ID fontsize',options('ID')(2)(2)+1,fontsSiz); lfid_b=list('Block ID fontId',options('ID')(1)(1)+1,fontsIds); lfiz_b=list('Block ID fontsize',options('ID')(1)(2)+1,fontsSiz); rep=x_choices('ID font definitions',list(lfid_l,lfiz_l,lfid_b,lfiz_b)) if rep<>[] then ok=%t options('ID')(1)=rep(1:2)-1 options('ID')(2)=rep(3:4)-1 end elseif flag=='Cmap' then cmap=options('Cmap') while %t do [ok,R,G,B]=getvalue(['Enter RGB description of new colors'; 'Each component must be greater or equal to 0' 'and less or equal to 1'],['R','G','B'],.. list('vec','-1','vec','size(x1,''*'')','vec','size(x1,''*'')'),.. [' ',' ',' ']) if ~ok then break,end if or(R<0|R>1)|or(G<0|G>1)|or(B<0|B>1) then x_message('RGB components are out of [0 1]') else break end end if ok then options('Cmap')=[options('Cmap');[R(:),G(:),B(:)]] if options('Background')==xget('lastpattern')+2 then options('Background')=options('Background')+size(R,'*') end end end if ok then edited=or(opt<>options) end
6a8af0f5d6e68ac2a2a37c2ff88ed0846af78c97
1218e33055a066314bb364402221c6449cb2b1f9
/Ipopt-3.12.7/ThirdParty/Mumps/MUMPS/SCILAB/builder.sce
84c97a090f41ee14b4ff8aade9c2bff51582d49d
[ "MIT", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-public-domain" ]
permissive
yueyangdk/CarND-MPC-Project
1086c912bf8313d34dc47f2020483c7abd1729e4
a4edcf25a7312ec3a79c04db6cfe66df6f7b1479
refs/heads/master
2020-04-06T19:42:43.737116
2018-11-15T17:54:14
2018-11-15T17:54:14
157,746,640
1
0
MIT
2018-11-15T17:16:39
2018-11-15T17:16:38
null
UTF-8
Scilab
false
false
2,724
sce
builder.sce
// $Id: builder_source.sce 7139 2011-03-22 22:50:47Z jylexcel $ //******************* VARIABLE PART TO COSTUMIZE ***************************// // -- MUMPS: MUMPS_DIR = home + "/MUMPS_4.10.0"; MUMPS_INC_DIR = MUMPS_DIR+"/include"; //path until dmumps_c.h and zmumps_c.h MUMPS_LIB_DIR = MUMPS_DIR+"/lib"; //path until libdmumps.a, libzmumps.a and libpord.a MUMPS_LIB = MUMPS_LIB_DIR+"/libmumps_common.a"; DMUMPS_LIB = MUMPS_LIB_DIR+"/libdmumps.a"; ZMUMPS_LIB = MUMPS_LIB_DIR+"/libzmumps.a"; LIB_MPISEQ = MUMPS_DIR+"/libseq/libmpiseq.a"; // -- SCILAB: Path to scilab routines SCI_DIR_INC = "/usr/include/scilab/"; // -- BLAS library, if not already included in Scilab: BLAS_LIB = ""; // -- ORDERINGS (should correspond to the ones defined MUMPS's Makefile.inc): PORD_LIB = MUMPS_LIB_DIR+"libpord.a"; METIS_LIB = HOME+"/metis-4.0/libmetis.a"; ORDERINGS_LIB = PORD_LIB+" "+METIS_LIB; // -- PTHREAD lib required by MUMPS versions > 4.6 PTHREAD_LIB="-lpthread"; // -- COMPILER FOR THE INTERFACE COMPILER_= "gcc -c -O -fPIC"; // -- FORTRAN RUNTIME LIBRARIES // -- g95 //FORT_LIB = "/usr/lib/libf95.a /usr/lib/libgcc.a"; // -- gfortran compiler FORT_LIB="/usr/lib/libgfortran.a"; // -- ifort compiler //FORT_LIB_DIR = "/opt/intel/fc/9.0/lib/"; //FORT_LIB = FORT_LIB_DIR+"libifcore.a"+" "+FORT_LIB_DIR+"libimf.a"+" "+FORT_LIB_DIR+"libguide.a"+" "+FORT_LIB_DIR+"libirc.a"; //**************************************************************************// //******************* DON't EDIT BELOW (Normally) **************************// //---- Build the Makefile fd=mopen("Makefile","w"); mfprintf(fd,"SCIDIRINC = %s\n",SCI_DIR_INC); mfprintf(fd,"MUMPSINCDIR = %s\n",MUMPS_INC_DIR); mfprintf(fd,"CC = %s\n", COMPILER_); mfprintf(fd,"all: intdmumpsc.o intzmumpsc.o\n"); mfprintf(fd,"intdmumpsc.o: intmumpsc.c\n"); mfprintf(fd,"\t$(CC) -o $@ $? -DMUMPS_ARITH=MUMPS_ARITH_d -I${MUMPSINCDIR} -I${SCIDIRINC}\n"); mfprintf(fd,"intzmumpsc.o: intmumpsc.c\n"); mfprintf(fd,"\t$(CC) -o $@ $? -DMUMPS_ARITH=MUMPS_ARITH_z -I${MUMPSINCDIR} -I${SCIDIRINC}\n"); mfprintf(fd,"clean:\n"); mfprintf(fd,"\trm *.o loader_inc.sce\n"); mclose(fd); //---- Compile unix("make"); //---- Build the Loader_inc.sce fd=mopen("loader_inc.sce","w"); mfprintf(fd,"objects = [ path+\""intzmumpsc.o\"" ; \n") mfprintf(fd," path+\""intdmumpsc.o\"" ; \n") mfprintf(fd," \""%s\"" ; \n",DMUMPS_LIB) mfprintf(fd," \""%s\"" ; \n",ZMUMPS_LIB) mfprintf(fd," \""%s\"" ; \n",ORDERINGS_LIB) mfprintf(fd," \""%s\"" ; \n",LIB_MPISEQ) mfprintf(fd," \""%s\"" ; \n",PORD_LIB) mfprintf(fd," \""%s\"" ; \n",METIS_LIB) mfprintf(fd," \""%s\"" ; \n",BLAS_LIB) mfprintf(fd," \""%s\"" ; \n",FORT_LIB) mfprintf(fd," \""%s\"" ]; \n",PTHREAD_LIB) mclose(fd);
12a871b46228545ad5033babc863af7a5483787c
449d555969bfd7befe906877abab098c6e63a0e8
/671/CH7/EX7.15/7_15.sce
05e5cc3b630f56fd3eb1cc5c9592a4374d4c6e7c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
210
sce
7_15.sce
N=100 l1=0.15 l2=0.3 l3=0.45 A=0.001 u0 = 4*%pi*10^−7; ur1=1447 ur2=5969 ur3=47750 flux=0.6E-3 B=flux/A H1=B/(uo*ur1) H2=B/(uo*ur2) H3=B/(uo*ur3) disp(H1,H2,H3) F=H1*l1+H2*l2+H3*l3 disp(F) I=F/N disp(I)
6012c200e8795a74bace71c36b86ade22f5b9f44
d119d186a54c7ca2179065ed8378eede2b6e6c4e
/ficheros/ARFF/pima.tst
96f84392e4b35673d507d0be16a2376aaef63f59
[]
no_license
champunes/TrajectoryAlgorithm1
e810d15e7182433a01e8aced49f9494f9c4ce0f3
c081644a8b3bbe6251c5e7dcc0f8087ebe1be3d3
refs/heads/master
2016-09-11T03:01:43.571461
2011-12-07T13:23:22
2011-12-07T13:23:22
2,742,524
0
0
null
null
null
null
UTF-8
Scilab
false
false
10,164
tst
pima.tst
@relation Pima @attribute preg real @attribute plas real @attribute pres real @attribute skin real @attribute insu real @attribute mass real @attribute pedi real @attribute age real @attribute class {tested_negative, tested_positive} @data 10.0, 168.0, 74.0, 0.0, 0.0, 38.0, 0.537, 34.0, tested_positive 5.0, 166.0, 72.0, 19.0, 175.0, 25.8, 0.587, 51.0, tested_positive 7.0, 100.0, 0.0, 0.0, 0.0, 30.0, 0.484, 32.0, tested_positive 3.0, 126.0, 88.0, 41.0, 235.0, 39.3, 0.704, 27.0, tested_negative 11.0, 143.0, 94.0, 33.0, 146.0, 36.6, 0.254, 51.0, tested_positive 1.0, 97.0, 66.0, 15.0, 140.0, 23.2, 0.487, 22.0, tested_negative 5.0, 117.0, 92.0, 0.0, 0.0, 34.1, 0.337, 38.0, tested_negative 11.0, 138.0, 76.0, 0.0, 0.0, 33.2, 0.42, 35.0, tested_negative 3.0, 180.0, 64.0, 25.0, 70.0, 34.0, 0.271, 26.0, tested_negative 7.0, 133.0, 84.0, 0.0, 0.0, 40.2, 0.696, 37.0, tested_negative 9.0, 171.0, 110.0, 24.0, 240.0, 45.4, 0.721, 54.0, tested_positive 7.0, 103.0, 66.0, 32.0, 0.0, 39.1, 0.344, 31.0, tested_positive 1.0, 101.0, 50.0, 15.0, 36.0, 24.2, 0.526, 26.0, tested_negative 8.0, 133.0, 72.0, 0.0, 0.0, 32.9, 0.27, 39.0, tested_positive 2.0, 141.0, 58.0, 34.0, 128.0, 25.4, 0.699, 24.0, tested_negative 0.0, 109.0, 88.0, 30.0, 0.0, 32.5, 0.855, 38.0, tested_positive 4.0, 146.0, 85.0, 27.0, 100.0, 28.9, 0.189, 27.0, tested_negative 1.0, 79.0, 75.0, 30.0, 0.0, 32.0, 0.396, 22.0, tested_negative 1.0, 122.0, 90.0, 51.0, 220.0, 49.7, 0.325, 31.0, tested_positive 1.0, 151.0, 60.0, 0.0, 0.0, 26.1, 0.179, 22.0, tested_negative 0.0, 125.0, 96.0, 0.0, 0.0, 22.5, 0.262, 21.0, tested_negative 7.0, 160.0, 54.0, 32.0, 175.0, 30.5, 0.588, 39.0, tested_positive 5.0, 124.0, 74.0, 0.0, 0.0, 34.0, 0.22, 38.0, tested_positive 4.0, 97.0, 60.0, 23.0, 0.0, 28.2, 0.443, 22.0, tested_negative 6.0, 111.0, 64.0, 39.0, 0.0, 34.2, 0.26, 24.0, tested_negative 1.0, 88.0, 30.0, 42.0, 99.0, 55.0, 0.496, 26.0, tested_positive 8.0, 84.0, 74.0, 31.0, 0.0, 38.3, 0.457, 39.0, tested_negative 2.0, 125.0, 60.0, 20.0, 140.0, 33.8, 0.088, 31.0, tested_negative 2.0, 106.0, 64.0, 35.0, 119.0, 30.5, 1.4, 34.0, tested_negative 1.0, 153.0, 82.0, 42.0, 485.0, 40.6, 0.687, 23.0, tested_negative 8.0, 188.0, 78.0, 0.0, 0.0, 47.9, 0.137, 43.0, tested_positive 7.0, 152.0, 88.0, 44.0, 0.0, 50.0, 0.337, 36.0, tested_positive 2.0, 88.0, 74.0, 19.0, 53.0, 29.0, 0.229, 22.0, tested_negative 4.0, 151.0, 90.0, 38.0, 0.0, 29.7, 0.294, 36.0, tested_negative 6.0, 104.0, 74.0, 18.0, 156.0, 29.9, 0.722, 41.0, tested_positive 1.0, 79.0, 60.0, 42.0, 48.0, 43.5, 0.678, 23.0, tested_negative 8.0, 109.0, 76.0, 39.0, 114.0, 27.9, 0.64, 31.0, tested_positive 9.0, 123.0, 70.0, 44.0, 94.0, 33.1, 0.374, 40.0, tested_negative 11.0, 135.0, 0.0, 0.0, 0.0, 52.3, 0.578, 40.0, tested_positive 5.0, 158.0, 84.0, 41.0, 210.0, 39.4, 0.395, 29.0, tested_positive 1.0, 105.0, 58.0, 0.0, 0.0, 24.3, 0.187, 21.0, tested_negative 4.0, 148.0, 60.0, 27.0, 318.0, 30.9, 0.15, 29.0, tested_positive 0.0, 113.0, 80.0, 16.0, 0.0, 31.0, 0.874, 21.0, tested_negative 0.0, 108.0, 68.0, 20.0, 0.0, 27.3, 0.787, 32.0, tested_negative 0.0, 147.0, 85.0, 54.0, 0.0, 42.8, 0.375, 24.0, tested_negative 5.0, 109.0, 62.0, 41.0, 129.0, 35.8, 0.514, 25.0, tested_positive 1.0, 100.0, 66.0, 15.0, 56.0, 23.6, 0.666, 26.0, tested_negative 4.0, 122.0, 68.0, 0.0, 0.0, 35.0, 0.394, 29.0, tested_negative 4.0, 171.0, 72.0, 0.0, 0.0, 43.6, 0.479, 26.0, tested_positive 4.0, 91.0, 70.0, 32.0, 88.0, 33.1, 0.446, 22.0, tested_negative 9.0, 124.0, 70.0, 33.0, 402.0, 35.4, 0.282, 34.0, tested_negative 1.0, 113.0, 64.0, 35.0, 0.0, 33.6, 0.543, 21.0, tested_positive 2.0, 114.0, 68.0, 22.0, 0.0, 28.7, 0.092, 25.0, tested_negative 1.0, 193.0, 50.0, 16.0, 375.0, 25.9, 0.655, 24.0, tested_negative 11.0, 155.0, 76.0, 28.0, 150.0, 33.3, 1.353, 51.0, tested_positive 3.0, 141.0, 0.0, 0.0, 0.0, 30.0, 0.761, 27.0, tested_positive 5.0, 96.0, 74.0, 18.0, 67.0, 33.6, 0.997, 43.0, tested_negative 0.0, 102.0, 52.0, 0.0, 0.0, 25.1, 0.078, 21.0, tested_negative 10.0, 101.0, 86.0, 37.0, 0.0, 45.6, 1.136, 38.0, tested_positive 7.0, 106.0, 60.0, 24.0, 0.0, 26.5, 0.296, 29.0, tested_positive 0.0, 104.0, 64.0, 23.0, 116.0, 27.8, 0.454, 23.0, tested_negative 2.0, 108.0, 62.0, 10.0, 278.0, 25.3, 0.881, 22.0, tested_negative 1.0, 119.0, 86.0, 39.0, 220.0, 45.6, 0.808, 29.0, tested_positive 2.0, 146.0, 70.0, 38.0, 360.0, 28.0, 0.337, 29.0, tested_positive 14.0, 100.0, 78.0, 25.0, 184.0, 36.6, 0.412, 46.0, tested_positive 2.0, 120.0, 76.0, 37.0, 105.0, 39.7, 0.215, 29.0, tested_negative 0.0, 106.0, 70.0, 37.0, 148.0, 39.4, 0.605, 22.0, tested_negative 3.0, 99.0, 80.0, 11.0, 64.0, 19.3, 0.284, 30.0, tested_negative 1.0, 157.0, 72.0, 21.0, 168.0, 25.6, 0.123, 24.0, tested_negative 10.0, 179.0, 70.0, 0.0, 0.0, 35.1, 0.2, 37.0, tested_negative 2.0, 102.0, 86.0, 36.0, 120.0, 45.5, 0.127, 23.0, tested_positive 1.0, 180.0, 0.0, 0.0, 0.0, 43.3, 0.282, 41.0, tested_positive 12.0, 106.0, 80.0, 0.0, 0.0, 23.6, 0.137, 44.0, tested_negative 0.0, 117.0, 0.0, 0.0, 0.0, 33.8, 0.932, 44.0, tested_negative 5.0, 115.0, 76.0, 0.0, 0.0, 31.2, 0.343, 44.0, tested_positive 5.0, 122.0, 86.0, 0.0, 0.0, 34.7, 0.29, 33.0, tested_negative 4.0, 137.0, 84.0, 0.0, 0.0, 31.2, 0.252, 30.0, tested_negative 9.0, 165.0, 88.0, 0.0, 0.0, 30.4, 0.302, 49.0, tested_positive 1.0, 125.0, 50.0, 40.0, 167.0, 33.3, 0.962, 28.0, tested_positive 13.0, 129.0, 0.0, 30.0, 0.0, 39.9, 0.569, 44.0, tested_positive 0.0, 101.0, 64.0, 17.0, 0.0, 21.0, 0.252, 21.0, tested_negative 0.0, 98.0, 82.0, 15.0, 84.0, 25.2, 0.299, 22.0, tested_negative 0.0, 105.0, 68.0, 22.0, 0.0, 20.0, 0.236, 22.0, tested_negative 1.0, 109.0, 60.0, 8.0, 182.0, 25.4, 0.947, 21.0, tested_negative 1.0, 90.0, 62.0, 18.0, 59.0, 25.1, 1.268, 25.0, tested_negative 1.0, 125.0, 70.0, 24.0, 110.0, 24.3, 0.221, 25.0, tested_negative 1.0, 100.0, 66.0, 29.0, 196.0, 32.0, 0.444, 42.0, tested_negative 2.0, 123.0, 48.0, 32.0, 165.0, 42.1, 0.52, 26.0, tested_negative 0.0, 138.0, 60.0, 35.0, 167.0, 34.6, 0.534, 21.0, tested_positive 3.0, 173.0, 84.0, 33.0, 474.0, 35.7, 0.258, 22.0, tested_positive 0.0, 102.0, 64.0, 46.0, 78.0, 40.6, 0.496, 21.0, tested_negative 2.0, 139.0, 75.0, 0.0, 0.0, 25.6, 0.167, 29.0, tested_negative 1.0, 100.0, 72.0, 12.0, 70.0, 25.3, 0.658, 28.0, tested_negative 1.0, 71.0, 62.0, 0.0, 0.0, 21.8, 0.416, 26.0, tested_negative 8.0, 74.0, 70.0, 40.0, 49.0, 35.3, 0.705, 39.0, tested_negative 0.0, 137.0, 84.0, 27.0, 0.0, 27.3, 0.231, 59.0, tested_negative 3.0, 158.0, 70.0, 30.0, 328.0, 35.5, 0.344, 35.0, tested_positive 0.0, 123.0, 88.0, 37.0, 0.0, 35.2, 0.197, 29.0, tested_negative 0.0, 135.0, 68.0, 42.0, 250.0, 42.3, 0.365, 24.0, tested_positive 4.0, 125.0, 70.0, 18.0, 122.0, 28.9, 1.144, 45.0, tested_positive 7.0, 195.0, 70.0, 33.0, 145.0, 25.1, 0.163, 55.0, tested_positive 6.0, 154.0, 74.0, 32.0, 193.0, 29.3, 0.839, 39.0, tested_negative 2.0, 117.0, 90.0, 19.0, 71.0, 25.2, 0.313, 21.0, tested_negative 0.0, 139.0, 62.0, 17.0, 210.0, 22.1, 0.207, 21.0, tested_negative 2.0, 91.0, 62.0, 0.0, 0.0, 27.3, 0.525, 22.0, tested_negative 9.0, 145.0, 88.0, 34.0, 165.0, 30.3, 0.771, 53.0, tested_positive 7.0, 125.0, 86.0, 0.0, 0.0, 37.6, 0.304, 51.0, tested_negative 6.0, 114.0, 0.0, 0.0, 0.0, 0.0, 0.189, 26.0, tested_negative 9.0, 130.0, 70.0, 0.0, 0.0, 34.2, 0.652, 45.0, tested_positive 3.0, 125.0, 58.0, 0.0, 0.0, 31.6, 0.151, 24.0, tested_negative 3.0, 116.0, 74.0, 15.0, 105.0, 26.3, 0.107, 24.0, tested_negative 0.0, 111.0, 65.0, 0.0, 0.0, 24.6, 0.66, 31.0, tested_negative 6.0, 91.0, 0.0, 0.0, 0.0, 29.8, 0.501, 31.0, tested_negative 4.0, 84.0, 90.0, 23.0, 56.0, 39.5, 0.159, 25.0, tested_negative 8.0, 186.0, 90.0, 35.0, 225.0, 34.5, 0.423, 37.0, tested_positive 5.0, 187.0, 76.0, 27.0, 207.0, 43.6, 1.034, 53.0, tested_positive 1.0, 116.0, 70.0, 28.0, 0.0, 27.4, 0.204, 21.0, tested_negative 6.0, 114.0, 88.0, 0.0, 0.0, 27.8, 0.247, 66.0, tested_negative 1.0, 88.0, 62.0, 24.0, 44.0, 29.9, 0.422, 23.0, tested_negative 7.0, 124.0, 70.0, 33.0, 215.0, 25.5, 0.161, 37.0, tested_negative 8.0, 110.0, 76.0, 0.0, 0.0, 27.8, 0.237, 58.0, tested_negative 11.0, 103.0, 68.0, 40.0, 0.0, 46.2, 0.126, 42.0, tested_negative 11.0, 85.0, 74.0, 0.0, 0.0, 30.1, 0.3, 35.0, tested_negative 6.0, 99.0, 60.0, 19.0, 54.0, 26.9, 0.497, 32.0, tested_negative 4.0, 154.0, 72.0, 29.0, 126.0, 31.3, 0.338, 37.0, tested_negative 1.0, 143.0, 86.0, 30.0, 330.0, 30.1, 0.892, 23.0, tested_negative 0.0, 151.0, 90.0, 46.0, 0.0, 42.1, 0.371, 21.0, tested_positive 3.0, 176.0, 86.0, 27.0, 156.0, 33.3, 1.154, 52.0, tested_positive 2.0, 112.0, 78.0, 50.0, 140.0, 39.4, 0.175, 24.0, tested_negative 2.0, 82.0, 52.0, 22.0, 115.0, 28.5, 1.699, 25.0, tested_negative 6.0, 123.0, 72.0, 45.0, 230.0, 33.6, 0.733, 34.0, tested_negative 0.0, 188.0, 82.0, 14.0, 185.0, 32.0, 0.682, 22.0, tested_positive 0.0, 152.0, 82.0, 39.0, 272.0, 41.5, 0.27, 27.0, tested_negative 3.0, 106.0, 54.0, 21.0, 158.0, 30.9, 0.292, 24.0, tested_negative 11.0, 138.0, 74.0, 26.0, 144.0, 36.1, 0.557, 50.0, tested_positive 0.0, 119.0, 0.0, 0.0, 0.0, 32.4, 0.141, 24.0, tested_positive 0.0, 94.0, 70.0, 27.0, 115.0, 43.5, 0.347, 21.0, tested_negative 5.0, 104.0, 74.0, 0.0, 0.0, 28.8, 0.153, 48.0, tested_negative 7.0, 97.0, 76.0, 32.0, 91.0, 40.9, 0.871, 32.0, tested_positive 6.0, 147.0, 80.0, 0.0, 0.0, 29.5, 0.178, 50.0, tested_positive 4.0, 90.0, 0.0, 0.0, 0.0, 28.0, 0.61, 31.0, tested_negative 0.0, 179.0, 50.0, 36.0, 159.0, 37.8, 0.455, 22.0, tested_positive 2.0, 101.0, 58.0, 35.0, 90.0, 21.8, 0.155, 22.0, tested_negative 10.0, 162.0, 84.0, 0.0, 0.0, 27.7, 0.182, 54.0, tested_negative 6.0, 98.0, 58.0, 33.0, 190.0, 34.0, 0.43, 43.0, tested_negative 8.0, 91.0, 82.0, 0.0, 0.0, 35.6, 0.587, 68.0, tested_negative 2.0, 129.0, 74.0, 26.0, 205.0, 33.2, 0.591, 25.0, tested_negative 2.0, 121.0, 70.0, 32.0, 95.0, 39.1, 0.886, 23.0, tested_negative 3.0, 169.0, 74.0, 19.0, 125.0, 29.9, 0.268, 31.0, tested_positive 5.0, 126.0, 78.0, 27.0, 22.0, 29.6, 0.439, 40.0, tested_negative 3.0, 102.0, 74.0, 0.0, 0.0, 29.5, 0.121, 32.0, tested_negative 1.0, 114.0, 66.0, 36.0, 200.0, 38.1, 0.289, 21.0, tested_negative 1.0, 116.0, 78.0, 29.0, 180.0, 36.1, 0.496, 25.0, tested_negative 3.0, 108.0, 62.0, 24.0, 0.0, 26.0, 0.223, 25.0, tested_negative
0395508ff1d99e5567891660c115353d25008819
449d555969bfd7befe906877abab098c6e63a0e8
/1985/CH3/EX3.3/Chapter3_Example3.sce
acc18b7a1c7b5ad94bb69863119c960b49c2e2d3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
358
sce
Chapter3_Example3.sce
clc clear //INPUT E=1*1.6*10^-16;//Kinetic energy of electron in J m=9.1*10^-31;//Mass of electron in Kg c=3*10^8;//Speed of light in m/s //CALCULATIONS v=sqrt((2*E)/m)//Velocity of the electron in m/s M=(m/sqrt(1-(v^2/c^2)))/10^-31//Mass of the electron in kg //OUTPUT mprintf('Mass of electron having energy 1 keV is %5.4f*10^-31 kg',M)
c5767e249b762377abd72b579008097f4702c3da
449d555969bfd7befe906877abab098c6e63a0e8
/551/CH4/EX4.31/31.sce
7ecaad192af79b1336165ecf20a9b5e6d0d6feeb
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
756
sce
31.sce
clc cp=14.3; //kJ/kg.K cv=10.2; //kJ/kg.K V1=0.1; //m^3 T1=300; //K p1=1; //bar p2=8; //bar y=cp/cv; R=cp-cv; V2=V1*(p1/p2)^(1/y); V3=V2; T2=T1*(p2/p1)^((y-1)/y); p3=p1*V1/V3; T3=300; //K disp("(i) Pressure at the end of constant volume cooling = ") disp(p3) disp("bar") disp("(ii) Change in internal energy during constant volume process") m=p1*V1/R/T1*10^2; //kg dU_23=m*cv*(T3-T2); disp("dU_23 = ") disp(dU_23) disp("kJ") disp("(iii) Net work done and heat transferred during the cycle") W_12=m*R*(T1-T2)/(y-1); W_23=0; W_31=p3*V3*log(V1/V3)*10^2; //kJ disp("Net work done=") Wnet=W_12+W_23+W_31; disp(Wnet) disp("kJ") Qnet=Wnet; disp("Heat transferred during the complete cycle = ") disp(Qnet) disp("kJ")
83880d31d19185199bcf1f97864f980acb611303
9b4666eff03ccecf238f420f9b796208b0a70b01
/Math IN/Cin/TP02/decoopman_tp02.sce
b5ae52ef267a959737674ebd59222409b3aecdc3
[]
no_license
NanoClem/Math
71a74881b2ac5b3ac323265eec82dd9d2183a185
8a20ce2c724dc9a7053ea12d73d162a037e33b70
refs/heads/master
2021-09-20T16:55:09.153747
2018-08-12T16:08:22
2018-08-12T16:08:22
114,249,616
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,440
sce
decoopman_tp02.sce
// DECOOPMAN Clément TP02 //EXERCICE 1 img0 = imread('D:\Git\Math\Math IN\Cin\TP02\lena.pgm'); function res = imgHist(img) [counts, cells] = imhist( uint8(img) ); plot(cells, counts); endfunction //count : tableau d'effectif de pixel dont chaque valeur de pixel est égale à cells //cells : valeur du niveau de gris (variant) //3 function res = imgToNeg(img) img = double(img); [m,n] = size(img); imgNeg = img; for i = 1:m for j = 1:n imgNeg(i,j) = 255 - img(i,j); end end res = uint8(imgNeg); endfunction //img_test = imgToNeg(img0); //imshow(img_test); //4 function res = teinte(img, h) img = double(img); if (h < -255 | h > 255) then disp("h pas compris dans [-255; 255]"); res = %f else [m,n] = size(img); X = img; for i = 1:m for j = 1:n X(i,j) = X(i,j) + h; end end X(X<0) = 0; X(X>255) = 255; res = uint8(X); end endfunction //img_test2 = teinte(img0, 255); //imshow(img_test2); //EXERCICE 2 //1 function res = recadrage(img) img = double(img); [m,n] = size(img); X = img; LUT = zeros(1,256); //LUT for i = 1:256 LUT(i) = ( 255/( max(img)-min(img) )) * (i-min(img)); end //recadrage for i = 1:m for j = 1:n X(i,j) = LUT(img(i,j)+1); //car le niveau de gris des pixels commence à 0 et LUT(0) n'existe pas end end X(X<0) = 0; X(X>255) = 255; res = uint8(X); endfunction //2 img1 = imread('D:\Git\Math\Math IN\Cin\TP02\hotel-de-ville.pgm'); //img_test3 = recadrage(img1); //imshow(img_test3); //EXERCICE 3 //1 function res = egalisation(img) img = double(img); [m,n] = size(img); X = img; //Histogramme cumulé [counts, cells] = imhist(uint8(img)); //count : tableau d'effectifs HC = [counts(1)]; for i = 2:256 HC = [HC, HC(i-1)+counts(i)] end //LUT LUT = zeros(1,256); for i = 1:256 LUT(i) = ( 256/(m*n) ) * HC(i) - 1; end //egalisation for i = 1:m for j = 1:n X(i,j) = LUT(img(i,j)+1); end end X(X<0) = 0; X(X>255) = 255; res = uint8(X); endfunction img2 = imread('D:\Git\Math\Math IN\Cin\TP02\port.pgm'); //img_test4 = egalisation(img2); //imshow(img_test4); //EXERCICE 4 //1 I1 = imread('D:\Git\Math\Math IN\Cin\TP02\cameraman.pgm'); info = imfinfo('D:\Git\Math\Math IN\Cin\TP02\cameraman.pgm'); //informations de l'image //imshow(I1); // On peut observer qu'il y a un pic de pixels pour les valeurs de gris appartenant à [0;10] et [150;170] //imgHist(I1); //2 I2 = floor(I1 ./2^(8-6)); //imshow(I2); // Les pics de pixels se trouvent aux mêmes endroits que pour l'histogramme de I1 //imgHist(I1); //3 I3 = floor(I1 ./2^(8-4)); //imshow(I3); // L'histogramme n'est plus autant étalé que celui de I1, l'image est assombrie. L'histogramme de I3 est compacte vers les valeurs de gris basses //imgHist(I3); //4 I4 = abs(I3-I1); //On obtient l'image I1 en négatif //imshow(I4); //imgHist(I4);
a1f148d39669929826a7e2b44a5943380317212e
449d555969bfd7befe906877abab098c6e63a0e8
/1826/CH12/EX12.2/ex12_2.sce
ddb035b5cfe00ccafd8055a294531a3a7ddf5ad2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
185
sce
ex12_2.sce
// Example 12.2, page no-350 clear clc alfe=5.3*10^-6//per k lo=0.1//m delT=973//K delL=alfe*lo*delT printf("The change in length produced by heating is %.3f mm",delL*10^3)
b54b64f31c4828ca9d408a3126a1dca2fb8f962b
449d555969bfd7befe906877abab098c6e63a0e8
/2354/CH16/EX16.4/16_4.sce
9bf78566a79f6d078964d06f7fa538771d4bf697
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
282
sce
16_4.sce
//example 16.4 clc; funcprot(0); // Initialization of Variable Tinfinity=30; q=1.5e6; La=0.05; h=1000; T2=Tinfinity+q*La/h; disp(T2,"temperature in degreeC"); T1=Tinfinity+(0.02/150+1/h)*q*La; To=q*La^2/2/75+T1; disp(To,"inner surface temperature in degreeC"); clear()
bec2bcb62e0cdd9f522dfdc25e83f60b02be3119
449d555969bfd7befe906877abab098c6e63a0e8
/2210/CH6/EX6.19/6_19.sce
30f983a259aa5f16d9b3f2eb90b8b79a5cd82077
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,148
sce
6_19.sce
//Chapter 6, Problem 18 clc // A = p2z(R,Theta) - Convert from polar to rectangular form. // R is a matrix containing the magnitudes // Theta is a matrix containing the phase angles (in degrees). function [A] = p2z(R,Theta) A = R*exp(%i*%pi*Theta/180); endfunction //transistor parameter yi=(2.25+%i*7.2)*10^-3 yr=p2z(0.70e-3,-85.9) yf=p2z(44.72e-3,-26.6) yo=(0.4+%i*1.9)*10^-3 yr_mag=0.70e-3 yf_mag=44.72e-3 Rs=250 Gs=1/Rs K=3 //stern stability factor gi=2.25e-3 //input conductance go=0.4e-3 //output conductance a=K*((yr_mag*yf_mag)+real(yf*yr)) b=2*(gi+Gs) Gl=(a/b)-go Bl=-imag(yo) Yl=Gl+%i*Bl yin=yi-((yr*yf)/(yo+Yl)) Bs=-imag(yin) Ys=Gs+%i*Bs num=4*Gs*Gl*(yf_mag)^2 den=real(((yi+Ys)*(yo+Yl))-(yf*yr))^2 Gt=num/den Gt_db=10*log10(Gt) printf("(a) Load admittance Yl \n\treal = %.2f mS \n\timaginary = %.2f mS\n\n",real(Yl)*1000,imag(Yl)*1000) printf("(b) Source admittance Ys \n\treal = %.2f mS \n\timaginary = %.2f mS\n\n",real(Ys)*1000,imag(Ys)*1000) printf("(c) Transducer gain = %.2f dB",Gt_db)
91937fe095f06f685f8b79eeabf3ca587cce654c
dc628e7d8425aa0bb1460d2583f04c9969b4ec9c
/dlog-server/src/prolog_translator/zsl_test05.tst
f30c0105f253594b97e1bafea1ecf77504d634b3
[]
no_license
logicmoo/DLog
bc2c43523ccbc3747c381f2eb0e25960cfc8d6e1
855774c38c1eea119405fde0057cfdb1032006f0
refs/heads/master
2021-05-28T14:03:35.596790
2015-01-12T22:49:56
2015-01-12T22:49:56
27,461,790
1
1
null
null
null
null
UTF-8
Scilab
false
false
913
tst
zsl_test05.tst
% options([abox_target(allinonefile), tbox_target(allinonefile)]). options([abox_target(allinonefile), tbox_target(allinonefile), projection(no), ground_optim(no)]). options([abox_target(allinonefile), tbox_target(allinonefile), projection(no), ground_optim(no), unfold(yes)]). role(a). concept(b). concept(c). dbConnection(dsn1, table1). dbAccess(c/1, dsn1, query('SELECT id as subject from items where c')). dbAccess(not(c)/1, dsn1, query('SELECT id as subject from items where not c')). dbAccess(b/1, dsn1, query('SELECT id as subject from items where b')). dbAccess(not(b)/1, dsn1, query('SELECT id as subject from items where not b')). dbAccess(a/2, dsn1, query('SELECT id as subject,used_with as object from relationshps')). cassertion(aconcept(b),i5). rassertion(arole(a),i4,i5). cassertion(aconcept(c),i6). %cassertion(not(aconcept(c)),i7). implies(and([some(arole(a),aconcept(b))]),aconcept(c)).
01b7e81e0a4c189190f4eddc0eb2a1ea8381fc00
449d555969bfd7befe906877abab098c6e63a0e8
/1628/CH9/EX9.12/Ex9_12.sce
798b3aa81221e70a457a3f1e735dfcefdcbb347a
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
488
sce
Ex9_12.sce
// Example 9.12 T=20*10^-3; // Time period A0_10=40*100*10^-3; // Area between t= 0-10 A10_20=100*10*10^-3; // Area between t= 10-20 A=A0_10+A10_20; // Total Area of waveform V=A/T; // Average value of waveform disp(' Average value of waveform = '+string(V)+' Volt'); v=sqrt(V); // Rms value disp(' Rms value of waveform = '+string(v)+' Volt'); // p 230 9.12
3588c88be4659bf2e40ac0559a5a6ccabe58f465
449d555969bfd7befe906877abab098c6e63a0e8
/1370/CH6/EX6.2/exmaple6_2.sce
251eba40582e3d036344276285c5b5b1480b76cf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
431
sce
exmaple6_2.sce
//example6.2 clc disp("The rate of change of inductance with deflection is,") disp("dL/d(theta)=d(12+6(theta)-(theta^2))/d(theta)=6-2(theta) uH/radian= 6-2(theta)*10^-6 H/radians") disp("From the torque equation,") disp("theta=(I^2)dL/(2*K*d(theta))") disp("therefore, theta=(8^2)*[6-2(theta)]*10^-6 /(2*12*10^-6)") disp("Therefore, 0.375(theta)=6-2(theta)") t=6/2.375 format(6) disp(t,"Therefore, theta[in radians]= ")
256b7a35f5882bfff2360a55b856f11d77d3904e
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/tweet/bow/bow.20_16.tst
7821e24c56e2395c8620fdf6a5a0d746682050c2
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
25,170
tst
bow.20_16.tst
20 16:0.25 19:0.5 28:0.08333333333333333 34:1.0 44:0.2 51:0.125 53:0.2 57:1.0 76:1.0 83:0.025 97:0.5 114:0.5 115:0.07142857142857142 135:0.3333333333333333 178:1.0 236:1.0 361:0.3333333333333333 412:1.0 554:0.5 798:1.0 828:1.0 869:1.0 1328:1.0 1454:1.0 2220:0.3333333333333333 3139:1.0 4872:1.0 4922:1.0 5112:1.0 5668:1.0 5728:1.0 20 15:2.0 16:0.25 19:0.25 25:0.14285714285714285 27:0.5 28:0.4166666666666667 51:0.125 76:1.0 83:0.025 86:0.1111111111111111 92:0.2 97:0.5 115:0.07142857142857142 225:0.02 306:0.14285714285714285 399:1.0 422:0.3333333333333333 436:0.14285714285714285 554:0.5 690:1.0 888:0.25 1128:1.0 1261:1.0 1378:0.5 1407:0.3333333333333333 1454:1.0 1648:1.0 2058:1.0 2817:1.0 4497:1.0 4575:1.0 4608:0.2 5001:1.0 5654:1.0 6664:1.0 20 19:0.25 27:0.5 28:0.08333333333333333 32:0.6666666666666666 53:0.6 59:1.0 83:0.025 87:0.09090909090909091 91:0.14285714285714285 96:1.0 125:1.0 135:0.3333333333333333 146:1.0 218:0.16666666666666666 345:1.0 383:0.3333333333333333 393:1.0 405:1.0 435:1.5 504:0.3333333333333333 696:1.0 1025:1.0 1088:1.0 1119:1.0 1395:1.0 2207:1.0 2220:0.3333333333333333 2321:1.0 2599:1.0 2970:1.0 4206:1.0 4570:0.5 4715:1.0 5549:1.0 5610:1.0 6020:1.0 20 16:0.5 26:0.1111111111111111 27:0.5 28:0.16666666666666666 57:1.0 114:0.5 115:0.07142857142857142 174:0.5 192:0.5 218:0.16666666666666666 225:0.02 231:1.0 323:1.0 433:0.07692307692307693 435:1.0 606:1.0 1176:0.3333333333333333 1985:1.0 2351:1.0 2416:1.0 2599:1.0 5213:1.0 6104:1.0 6131:2.0 6299:1.0 20 26:0.1111111111111111 28:0.08333333333333333 114:0.5 135:0.3333333333333333 433:0.07692307692307693 434:1.0 435:0.5 606:1.0 1261:1.0 2933:1.0 4597:0.07692307692307693 5187:0.5 5356:1.0 20 54:0.25 83:0.025 91:0.14285714285714285 191:0.3333333333333333 435:0.5 830:1.0 1261:1.0 1407:0.16666666666666666 1763:1.0 2281:1.0 4500:1.0 4673:1.0 4921:1.0 5243:1.0 5428:1.0 20 16:0.25 25:0.14285714285714285 26:0.2222222222222222 44:0.2 135:0.3333333333333333 176:0.5 218:0.16666666666666666 422:0.3333333333333333 433:0.07692307692307693 435:0.5 606:1.0 1275:1.0 1407:0.16666666666666666 3485:1.0 4144:1.0 4486:1.0 4643:1.0 6095:1.0 6490:2.0 20 8:1.0 16:0.25 17:0.047619047619047616 26:0.1111111111111111 28:0.08333333333333333 38:0.14285714285714285 39:1.0 76:0.5 86:0.1111111111111111 87:0.09090909090909091 92:0.2 114:0.5 115:0.14285714285714285 179:0.3333333333333333 207:0.5 227:1.0 435:1.0 606:1.0 684:1.0 738:1.0 807:0.3333333333333333 1261:1.0 1407:0.5 1584:1.0 1592:1.0 2599:1.0 3185:1.0 3706:0.1111111111111111 4458:0.2 4544:1.0 5332:1.0 5594:1.0 5878:1.0 20 13:0.5 15:1.0 16:0.25 26:0.1111111111111111 28:0.08333333333333333 44:0.2 53:0.2 57:1.0 91:0.14285714285714285 114:1.5 135:1.0 176:0.5 180:0.25 225:0.04 372:1.0 399:1.0 422:0.3333333333333333 433:0.07692307692307693 435:0.5 552:0.5 672:0.6 766:0.3333333333333333 819:0.5 828:1.0 954:0.5 1274:1.0 3440:2.0 4484:0.5 4965:1.0 5469:1.0 5999:1.0 6372:1.0 6628:1.0 20 26:0.1111111111111111 53:0.2 55:1.0 91:0.42857142857142855 114:0.5 174:0.5 179:0.3333333333333333 393:1.0 433:0.07692307692307693 435:0.5 606:1.0 954:0.5 1005:0.5 1669:0.2 2287:1.0 2307:1.0 6631:1.0 20 16:0.5 26:0.1111111111111111 27:0.5 83:0.025 87:0.09090909090909091 91:0.14285714285714285 92:0.2 97:0.5 114:0.5 217:0.16666666666666666 323:2.0 325:0.2 412:1.0 433:0.07692307692307693 435:0.5 606:1.0 672:0.2 1296:1.0 2798:1.0 2970:1.0 3485:1.0 3609:1.0 4167:1.0 4486:1.0 4934:1.0 4959:1.0 20 26:0.1111111111111111 27:0.5 28:0.08333333333333333 51:0.125 87:0.18181818181818182 91:0.14285714285714285 262:1.0 361:0.3333333333333333 435:0.5 606:1.0 664:1.0 828:1.0 1494:1.0 1648:1.0 2336:1.0 4179:1.0 4459:1.0 4553:0.3333333333333333 4640:1.0 4682:1.0 4930:0.5 20 16:0.25 19:0.25 25:0.14285714285714285 26:0.1111111111111111 27:0.5 28:0.08333333333333333 44:0.2 50:0.1 71:0.125 92:0.2 114:0.5 229:0.3333333333333333 383:0.16666666666666666 422:0.3333333333333333 435:1.0 1138:1.0 1315:1.0 4144:1.0 4597:0.07692307692307693 5428:1.0 20 16:0.25 28:0.08333333333333333 50:0.1 57:1.0 61:0.5 99:1.0 191:0.3333333333333333 270:0.125 374:0.3333333333333333 375:1.0 556:1.0 720:1.0 1454:1.0 2411:1.0 2741:0.5 4787:1.0 5141:1.0 5219:1.0 5788:1.0 20 16:0.5 17:0.047619047619047616 28:0.16666666666666666 44:0.2 53:0.6 57:2.0 76:0.5 225:0.02 270:0.125 374:0.3333333333333333 376:1.0 435:0.5 557:0.5 1071:0.5 1778:2.0 1906:1.0 2321:1.0 4016:1.0 4144:1.0 4463:1.0 6421:1.0 6512:1.0 6541:1.0 20 32:0.3333333333333333 33:0.5 34:1.0 53:0.2 92:0.2 99:1.0 114:1.0 146:1.0 435:0.5 497:0.4 536:1.0 548:1.0 872:1.0 1070:0.5 1471:1.0 1879:1.0 1985:1.0 2505:1.0 5453:1.0 5529:1.0 5835:1.0 6408:1.0 20 16:0.25 17:0.09523809523809523 33:0.5 53:0.6 57:1.0 90:1.0 146:2.0 175:0.5 225:0.02 374:0.3333333333333333 376:1.0 402:1.0 557:0.5 1778:2.0 4724:1.0 4796:2.0 5946:1.0 6541:1.0 20 27:0.5 44:0.2 53:0.4 59:1.0 92:0.2 114:0.5 135:0.3333333333333333 146:2.0 218:0.16666666666666666 225:0.02 293:0.5 338:1.0 433:0.07692307692307693 435:0.5 497:0.2 664:1.0 672:0.2 1261:1.0 2163:1.0 3963:1.0 4545:1.0 4570:0.5 5866:1.0 6429:1.0 20 16:0.5 28:0.16666666666666666 32:0.3333333333333333 44:0.2 91:0.14285714285714285 114:0.5 135:0.6666666666666666 218:0.16666666666666666 225:0.02 258:1.0 260:1.0 291:0.25 332:0.5 345:1.0 405:1.0 422:0.3333333333333333 791:1.0 1088:1.0 1784:1.0 1879:1.0 4694:1.0 4901:1.0 5172:1.0 5548:0.5 20 44:0.2 53:0.2 54:0.25 83:0.025 135:0.3333333333333333 146:2.0 218:0.16666666666666666 231:1.0 290:1.0 382:1.0 435:0.5 585:0.3333333333333333 681:1.0 766:0.3333333333333333 1400:0.5 1695:1.0 2113:1.0 2131:1.0 3331:1.0 4144:1.0 4458:0.2 4486:1.0 4724:1.0 20 19:0.25 48:0.09090909090909091 57:1.0 92:0.4 99:1.0 115:0.07142857142857142 135:0.3333333333333333 146:1.0 174:0.5 225:0.02 435:0.5 687:1.0 695:1.0 754:1.0 1401:1.0 1402:1.0 1457:1.0 1608:1.0 2351:1.0 2933:1.0 3755:1.0 4572:1.0 4600:1.0 4724:1.0 20 19:0.5 28:0.08333333333333333 34:1.0 40:0.16666666666666666 44:0.4 87:0.09090909090909091 91:0.14285714285714285 114:0.5 221:1.0 325:0.2 430:0.3333333333333333 435:0.5 436:0.14285714285714285 560:1.0 959:1.0 1350:1.0 1679:1.0 1739:2.0 2029:1.0 2212:1.0 3909:1.0 4490:1.0 4724:1.0 20 16:0.25 17:0.047619047619047616 28:0.08333333333333333 33:1.0 53:0.4 57:1.0 99:1.0 114:1.5 115:0.07142857142857142 195:1.0 307:0.5 664:1.0 754:1.0 844:1.0 1759:1.0 2010:0.5 2282:0.5 2411:1.0 4642:0.5 5790:1.0 20 16:0.25 17:0.047619047619047616 32:0.3333333333333333 38:0.14285714285714285 39:1.0 42:1.0 48:0.09090909090909091 87:0.09090909090909091 92:0.2 114:0.5 115:0.07142857142857142 174:0.5 306:0.14285714285714285 307:0.5 1306:1.0 1597:1.0 2310:1.0 2351:1.0 4505:1.0 6024:1.0 20 19:0.25 115:0.07142857142857142 218:0.16666666666666666 422:0.3333333333333333 433:0.07692307692307693 435:1.0 1990:0.5 2217:1.0 5696:1.0 20 16:0.25 17:0.047619047619047616 44:0.2 191:0.3333333333333333 422:0.3333333333333333 435:1.0 959:2.0 1110:1.0 1402:1.0 1405:0.5 1763:1.0 2009:1.0 2755:1.0 20 16:0.25 19:0.25 39:1.0 40:0.16666666666666666 51:0.125 93:0.5 97:0.5 99:1.0 422:0.3333333333333333 435:0.5 436:0.14285714285714285 830:1.0 1661:1.0 4088:0.3333333333333333 6536:1.0 20 8:1.0 16:0.25 19:0.25 25:0.14285714285714285 28:0.16666666666666666 39:1.0 44:0.2 51:0.25 57:1.0 61:1.0 62:1.0 86:0.1111111111111111 87:0.09090909090909091 92:0.2 99:1.0 114:1.5 167:0.5 174:0.5 225:0.04 262:0.5 422:0.3333333333333333 435:0.5 681:1.0 828:1.0 1327:1.0 1442:1.0 1914:1.0 2261:1.0 3557:1.0 3657:1.0 3877:1.0 3984:1.0 4144:1.0 4561:1.0 4678:1.0 5006:1.0 20 11:1.0 16:0.25 19:0.25 25:0.14285714285714285 28:0.16666666666666666 44:0.2 51:0.125 57:2.0 83:0.025 92:0.2 217:0.16666666666666666 377:0.5 435:1.0 447:1.0 508:1.0 1238:1.0 1305:1.0 1346:1.0 1402:1.0 1405:0.5 1523:1.0 1712:1.0 2994:1.0 4144:2.0 4486:1.0 4621:1.0 5053:1.0 6741:1.0 20 16:0.25 25:0.14285714285714285 28:0.3333333333333333 53:0.2 54:0.25 61:0.5 76:0.5 87:0.09090909090909091 97:0.5 114:0.5 179:0.3333333333333333 374:0.3333333333333333 435:0.5 497:0.2 891:1.0 1027:1.0 1296:1.0 1641:0.5 3408:1.0 3469:1.0 4063:1.0 4463:1.0 4523:0.5 4789:1.0 5745:1.0 20 16:0.25 17:0.047619047619047616 19:0.25 28:0.08333333333333333 39:1.0 44:0.2 51:0.125 86:0.1111111111111111 87:0.09090909090909091 114:0.5 180:0.25 207:0.5 218:0.16666666666666666 274:1.0 412:1.0 435:0.5 1442:2.0 1445:0.5 1587:1.0 3679:1.0 3943:1.0 4144:1.0 4845:0.3333333333333333 4848:1.0 5510:1.0 6510:1.0 20 16:0.75 17:0.047619047619047616 19:0.25 28:0.08333333333333333 50:0.1 87:0.18181818181818182 97:0.5 115:0.07142857142857142 174:0.5 1134:1.0 1442:1.0 3679:1.0 3943:1.0 4059:1.0 4173:1.0 5510:1.0 5944:1.0 6322:1.0 6510:1.0 20 14:0.5 25:0.14285714285714285 28:0.16666666666666666 44:0.2 50:0.1 51:0.25 87:0.09090909090909091 114:0.5 174:0.5 221:1.0 255:1.0 672:0.2 753:1.0 1196:1.0 1238:1.0 1587:1.0 2287:1.0 4513:1.0 4641:0.25 6427:1.0 20 8:1.0 53:0.2 59:1.0 114:1.0 146:2.0 179:0.6666666666666666 218:0.16666666666666666 296:0.5 435:0.5 556:1.0 672:0.2 675:0.25 681:1.0 1068:1.0 1179:1.0 1704:1.0 3251:1.0 4144:1.0 4609:1.0 6144:1.0 6159:1.0 6479:1.0 20 19:0.25 33:0.5 57:1.0 92:0.2 115:0.07142857142857142 135:0.3333333333333333 225:0.04 228:1.0 274:1.0 351:1.0 435:1.0 598:1.0 689:0.25 909:0.2 1251:1.0 1293:1.0 4144:1.0 4921:2.0 5046:1.0 5131:1.0 5304:0.5 5322:1.0 5646:1.0 5804:1.0 6131:1.0 20 28:0.16666666666666666 44:0.2 57:1.0 98:0.5 114:1.0 115:0.07142857142857142 135:0.3333333333333333 175:0.5 179:0.3333333333333333 218:0.16666666666666666 225:0.02 270:0.125 323:1.0 360:0.25 361:0.3333333333333333 374:0.3333333333333333 433:0.07692307692307693 435:1.0 1407:0.16666666666666666 4144:2.0 4608:0.2 4883:1.0 20 19:0.75 28:0.16666666666666666 32:0.3333333333333333 40:0.16666666666666666 71:0.125 83:0.025 92:0.2 126:1.0 323:1.0 433:0.07692307692307693 435:1.0 514:0.5 675:0.25 1269:1.0 1407:0.3333333333333333 1454:1.0 4144:2.0 4200:1.0 4544:1.0 4868:1.0 6311:1.0 6362:1.0 6401:1.0 6643:1.0 20 44:0.2 51:0.125 53:0.2 71:0.125 97:0.5 146:1.0 225:0.02 426:1.0 435:1.0 664:1.0 685:1.0 690:1.0 2220:0.3333333333333333 4144:2.0 4167:1.0 4570:0.5 5340:1.0 5729:1.0 20 19:0.25 44:0.2 57:1.0 126:1.0 143:1.0 201:0.5 323:1.0 365:1.0 435:0.5 1648:1.0 1704:1.0 2134:1.0 4144:1.0 4608:0.2 4801:1.0 5466:1.0 20 16:0.25 19:0.25 26:0.1111111111111111 28:0.08333333333333333 33:0.5 34:1.0 44:0.2 76:0.5 91:0.14285714285714285 92:0.2 97:0.5 366:1.0 435:0.5 1025:1.0 1052:1.0 1405:0.5 1597:1.0 1704:1.0 1763:1.0 1879:1.0 1906:1.0 2134:1.0 4487:1.0 4597:0.07692307692307693 5172:1.0 5242:1.0 5428:1.0 5429:1.0 5433:1.0 5586:1.0 6788:1.0 20 51:0.125 87:0.09090909090909091 1486:1.0 20 16:0.25 19:0.5 28:0.08333333333333333 34:1.0 76:0.5 87:0.09090909090909091 92:0.2 97:0.5 114:0.5 135:0.3333333333333333 217:0.16666666666666666 327:0.5 422:0.3333333333333333 435:0.5 909:0.2 1431:1.0 1432:1.0 1486:1.0 2134:1.0 3828:1.0 5432:1.0 20 16:0.25 19:0.25 27:0.5 28:0.25 39:1.0 44:0.2 50:0.1 51:0.125 87:0.18181818181818182 92:0.2 97:0.5 114:0.5 225:0.02 270:0.125 293:0.5 477:1.0 1280:1.0 1486:2.0 1669:0.2 2527:1.0 2653:1.0 3765:1.0 4694:1.0 4724:1.0 4750:1.0 6327:1.0 6665:1.0 20 16:0.25 28:0.08333333333333333 44:0.4 51:0.25 87:0.09090909090909091 92:0.2 115:0.07142857142857142 291:0.5 492:1.0 672:0.2 722:0.25 1261:1.0 1486:1.0 2192:1.0 4553:0.3333333333333333 4724:1.0 5448:1.0 5470:1.0 5783:1.0 6327:1.0 20 19:0.25 28:0.25 44:0.2 51:0.125 62:1.0 87:0.09090909090909091 114:1.5 115:0.07142857142857142 238:0.3333333333333333 332:0.5 722:0.25 819:0.5 830:1.0 1261:1.0 1457:1.0 2308:1.0 2627:0.5 4660:1.0 4678:1.0 4750:1.0 5298:1.0 5616:1.0 20 19:0.75 26:0.1111111111111111 53:0.4 83:0.05 115:0.07142857142857142 270:0.125 435:0.5 788:0.5 1884:1.0 3794:0.1 5206:0.5 20 16:0.25 44:0.2 97:0.5 435:0.5 473:1.0 1361:1.0 1669:0.2 4167:1.0 20 19:0.25 28:0.16666666666666666 44:0.2 76:0.5 143:1.0 225:0.02 231:1.0 435:0.5 722:0.25 1128:1.0 1401:1.0 4612:1.0 20 16:0.25 28:0.08333333333333333 87:0.09090909090909091 97:0.5 114:1.0 115:0.14285714285714285 146:2.0 166:1.0 231:1.0 360:0.25 435:1.0 943:1.0 1128:1.0 1541:1.0 2131:1.0 4144:2.0 4597:0.07692307692307693 5647:1.0 20 16:0.25 17:0.047619047619047616 26:0.1111111111111111 28:0.08333333333333333 33:0.5 50:0.1 57:1.0 59:1.0 77:1.0 98:0.5 135:0.3333333333333333 175:0.5 191:0.3333333333333333 225:0.04 311:1.0 361:0.3333333333333333 402:1.0 435:0.5 497:0.2 766:0.3333333333333333 895:1.0 1361:1.0 1411:1.0 1412:1.0 2261:1.0 3743:1.0 4917:1.0 6788:1.0 20 16:0.25 25:0.14285714285714285 26:0.1111111111111111 34:1.0 40:0.16666666666666666 53:0.2 83:0.025 115:0.21428571428571427 430:1.0 435:0.5 492:1.0 497:0.2 738:1.0 1251:1.0 1376:1.0 4486:1.0 20 16:0.25 19:0.25 20:1.0 27:0.5 28:0.08333333333333333 44:0.2 61:0.5 72:0.5 97:0.5 115:0.14285714285714285 126:1.0 135:0.6666666666666666 361:0.3333333333333333 435:1.0 447:1.0 559:1.0 560:1.0 700:1.0 790:1.0 1269:1.0 2220:0.3333333333333333 3856:1.0 4597:0.07692307692307693 5548:0.5 20 28:0.08333333333333333 32:0.3333333333333333 33:0.5 92:0.2 135:0.3333333333333333 145:1.0 176:0.5 225:0.02 435:1.0 568:0.5 672:0.2 684:1.0 807:0.3333333333333333 1261:1.0 1407:0.16666666666666666 2946:1.0 3235:1.0 4144:1.0 4553:0.3333333333333333 5520:1.0 6095:1.0 20 96:1.0 135:0.3333333333333333 296:0.5 701:0.3333333333333333 819:0.5 1763:1.0 3408:1.0 4484:0.5 4875:1.0 5046:1.0 5300:1.0 5373:1.0 5432:1.0 5976:1.0 20 16:0.5 19:0.25 25:0.2857142857142857 28:0.16666666666666666 44:0.2 51:0.25 57:1.0 91:0.14285714285714285 127:0.25 179:0.3333333333333333 291:0.25 366:1.0 377:0.5 412:1.0 435:0.5 665:1.0 868:1.0 1128:1.0 1238:1.0 1460:1.0 1538:1.0 2058:1.0 2147:1.0 2474:1.0 2621:1.0 4144:1.0 5647:1.0 20 13:0.5 16:0.25 17:0.047619047619047616 19:0.5 28:0.25 32:0.3333333333333333 44:0.2 51:0.125 57:1.0 71:0.125 83:0.025 115:0.07142857142857142 146:1.0 238:0.3333333333333333 328:1.0 332:0.5 430:0.3333333333333333 436:0.14285714285714285 556:2.0 690:1.0 769:1.0 1068:1.0 1407:0.16666666666666666 3061:1.0 5001:1.0 20 16:0.25 50:0.1 51:0.125 83:0.025 87:0.09090909090909091 90:1.0 91:0.14285714285714285 92:0.4 114:1.0 194:1.0 293:0.5 361:0.3333333333333333 422:0.3333333333333333 435:0.5 675:0.25 891:1.0 1407:0.16666666666666666 1457:1.0 2179:1.0 2478:1.0 3366:1.0 4144:1.0 4486:1.0 4490:1.0 5651:1.0 6662:1.0 20 19:0.25 28:0.16666666666666666 44:0.2 59:1.0 87:0.09090909090909091 114:0.5 115:0.07142857142857142 225:0.04 402:1.0 434:1.0 435:0.5 514:0.5 535:1.0 664:1.0 807:0.3333333333333333 1293:1.0 1348:1.0 1418:1.0 1457:1.0 3061:1.0 5462:2.0 6510:1.0 20 19:0.25 28:0.16666666666666666 48:0.09090909090909091 51:0.125 53:0.2 57:3.0 83:0.025 114:0.5 146:1.0 218:0.16666666666666666 270:0.125 290:1.0 435:0.5 449:1.0 722:0.25 1261:1.0 2298:1.0 2474:1.0 3408:1.0 4636:1.0 20 16:0.5 28:0.08333333333333333 32:0.3333333333333333 34:1.0 436:0.14285714285714285 535:1.0 554:0.5 624:1.0 819:0.5 820:1.0 1061:1.0 1296:1.0 3408:1.0 4463:1.0 4506:1.0 4523:0.5 20 16:0.25 19:0.5 33:0.5 51:0.125 53:0.2 87:0.09090909090909091 90:1.0 92:0.6 115:0.07142857142857142 156:0.5 187:1.0 435:0.5 552:0.5 1261:1.0 2478:1.0 4144:1.0 4162:1.0 4296:1.0 4609:1.0 4776:1.0 4786:1.0 4821:1.0 20 8:1.0 16:0.5 40:0.16666666666666666 53:0.4 83:0.025 92:0.4 99:1.0 127:0.25 422:0.3333333333333333 435:1.0 689:0.25 807:0.3333333333333333 1296:1.0 1407:0.16666666666666666 3706:0.1111111111111111 3750:1.0 4144:2.0 4460:1.0 4570:0.5 5109:1.0 5280:1.0 5694:1.0 20 16:0.25 19:0.25 20:1.0 21:1.0 25:0.14285714285714285 28:0.16666666666666666 32:0.3333333333333333 39:1.0 48:0.09090909090909091 57:2.0 59:1.0 86:0.1111111111111111 87:0.18181818181818182 97:0.5 115:0.07142857142857142 228:1.0 265:1.0 672:0.2 1537:1.0 1608:1.0 1998:1.0 2817:1.0 5060:1.0 5699:1.0 20 16:0.5 17:0.047619047619047616 27:1.0 53:0.2 54:0.25 90:1.0 225:0.04 433:0.07692307692307693 435:0.5 552:0.5 586:1.0 598:1.0 672:0.2 684:1.0 722:0.25 803:1.0 1059:1.0 1407:0.16666666666666666 1727:1.0 2224:1.0 4144:1.0 4553:0.3333333333333333 4597:0.07692307692307693 4607:1.0 6603:1.0 20 13:0.5 27:0.5 28:0.16666666666666666 32:0.3333333333333333 51:0.125 86:0.1111111111111111 114:0.5 225:0.02 332:0.5 672:0.2 722:0.25 1066:1.0 1068:1.0 2135:0.5 3306:1.0 4459:1.0 4593:1.0 5682:1.0 6168:2.0 6479:1.0 20 28:0.08333333333333333 44:0.2 76:0.5 99:1.0 114:0.5 115:0.07142857142857142 194:1.0 225:0.06 306:0.14285714285714285 323:1.0 393:1.0 435:1.0 664:1.0 720:1.0 1507:1.0 2147:1.0 2179:1.0 2691:1.0 2935:1.0 4144:1.0 4498:1.0 20 16:0.25 19:0.25 44:0.2 57:1.0 61:0.5 91:0.14285714285714285 179:0.3333333333333333 291:0.25 375:1.0 422:0.3333333333333333 1130:0.5 1441:1.0 3212:2.0 3213:1.0 3664:1.0 4630:0.5 4641:0.25 4678:1.0 5041:1.0 5866:1.0 6522:1.0 20 19:0.25 44:0.2 114:0.5 306:0.14285714285714285 374:0.3333333333333333 503:0.25 504:0.3333333333333333 701:0.3333333333333333 859:0.25 1188:1.0 1530:1.0 2048:1.0 5199:1.0 5288:1.0 5643:1.0 6036:1.0 20 16:0.5 19:0.25 28:0.16666666666666666 34:1.0 53:0.4 57:1.0 97:0.5 344:1.0 433:0.07692307692307693 435:0.5 504:0.3333333333333333 649:1.0 664:1.0 672:0.2 856:1.0 966:1.0 1541:1.0 4608:0.2 4621:1.0 4724:1.0 5040:1.0 5329:1.0 6135:1.0 20 19:0.25 25:0.2857142857142857 32:0.3333333333333333 51:0.125 78:1.0 83:0.025 179:0.3333333333333333 229:0.3333333333333333 345:1.0 377:0.5 435:0.5 674:1.0 791:1.0 892:1.0 1176:0.3333333333333333 1231:0.5 1238:1.0 1407:0.16666666666666666 1486:1.0 4238:1.0 4445:1.0 4865:1.0 20 17:0.047619047619047616 25:0.14285714285714285 28:0.08333333333333333 44:0.4 51:0.125 57:1.0 87:0.09090909090909091 92:0.4 115:0.07142857142857142 307:0.5 435:0.5 966:1.0 1238:1.0 1261:1.0 1458:1.0 4497:1.0 4544:1.0 4642:0.5 4934:1.0 5763:1.0 5797:2.0 20 16:0.5 17:0.047619047619047616 19:0.5 28:0.16666666666666666 44:0.4 57:1.0 83:0.025 92:0.2 146:1.0 307:0.5 1407:0.16666666666666666 1458:1.0 1665:1.0 1804:1.0 2336:1.0 2439:1.0 4216:1.0 4642:0.5 4669:1.0 5005:1.0 5405:1.0 5797:2.0 6744:1.0 20 16:0.25 19:0.75 20:1.0 25:0.14285714285714285 57:1.0 71:0.125 76:0.5 91:0.14285714285714285 114:0.5 229:0.3333333333333333 377:0.5 412:1.0 422:0.3333333333333333 435:0.5 553:0.5 2011:1.0 3213:1.0 3664:1.0 4238:1.0 4630:0.5 5041:1.0 5538:1.0 5866:1.0 6522:1.0 6544:1.0 20 16:0.5 19:0.5 28:0.16666666666666666 34:1.0 92:0.4 97:0.5 435:0.5 504:0.3333333333333333 649:1.0 856:1.0 1068:1.0 1411:1.0 1541:1.0 3706:0.1111111111111111 3765:1.0 4489:1.0 4490:1.0 4523:0.5 4610:1.0 4621:1.0 4724:1.0 4789:1.0 5040:1.0 5329:1.0 6135:1.0 6501:1.0 20 16:0.25 27:0.5 44:0.2 179:0.3333333333333333 180:0.25 422:0.3333333333333333 433:0.07692307692307693 681:1.0 889:1.0 1052:1.0 1068:1.0 2058:1.0 2135:0.5 2336:1.0 2819:1.0 4796:1.0 5843:1.0 6479:1.0 20 28:0.16666666666666666 44:0.4 53:0.4 61:0.5 83:0.025 114:1.0 115:0.07142857142857142 135:0.3333333333333333 218:0.16666666666666666 374:0.3333333333333333 383:0.16666666666666666 435:0.5 700:1.0 722:0.25 1128:1.0 1168:1.0 1601:1.0 2335:1.0 4124:1.0 4592:1.0 4705:1.0 5194:1.0 20 16:0.75 25:0.14285714285714285 28:0.08333333333333333 44:0.4 50:0.1 87:0.09090909090909091 90:1.0 146:1.0 176:1.0 187:1.0 247:1.0 377:0.5 388:1.0 422:0.3333333333333333 433:0.07692307692307693 551:1.0 554:0.5 1179:1.0 1469:1.0 2951:1.0 3096:1.0 5477:1.0 6108:1.0 20 16:0.25 26:0.1111111111111111 28:0.08333333333333333 44:0.2 46:0.3333333333333333 50:0.1 53:0.2 76:0.5 114:1.0 115:0.07142857142857142 187:1.0 201:0.5 247:1.0 422:0.3333333333333333 433:0.07692307692307693 554:0.5 606:1.0 1261:1.0 2951:1.0 20 13:0.5 16:0.75 25:0.14285714285714285 28:0.08333333333333333 39:1.0 53:0.2 99:1.0 115:0.07142857142857142 135:0.3333333333333333 225:0.02 307:0.5 338:1.0 405:1.0 435:0.5 664:1.0 2261:1.0 4487:1.0 5206:0.5 5681:1.0 20 28:0.08333333333333333 33:0.5 44:0.4 57:1.0 86:0.1111111111111111 92:0.2 115:0.07142857142857142 135:0.3333333333333333 146:1.0 187:1.0 195:1.0 225:0.02 274:1.0 361:0.3333333333333333 433:0.07692307692307693 435:0.5 436:0.14285714285714285 508:1.0 819:0.5 1407:0.16666666666666666 1977:1.0 2755:1.0 3356:2.0 4144:1.0 4610:1.0 4658:0.3333333333333333 5313:1.0 6130:1.0 20 19:0.5 28:0.08333333333333333 44:0.4 86:0.1111111111111111 92:0.4 96:1.0 97:0.5 115:0.07142857142857142 152:0.5 405:1.0 422:0.3333333333333333 435:1.0 681:1.0 744:1.0 1407:0.16666666666666666 2029:1.0 2192:1.0 2484:1.0 4088:0.3333333333333333 4144:1.0 4497:1.0 4524:1.0 4597:0.07692307692307693 5586:1.0 20 16:0.25 17:0.047619047619047616 19:0.25 28:0.16666666666666666 51:0.125 53:0.4 57:2.0 59:1.0 83:0.025 92:0.2 174:0.5 338:1.0 435:0.5 937:1.0 2220:0.3333333333333333 4144:1.0 4200:1.0 5825:1.0 6075:1.0 20 16:0.25 17:0.047619047619047616 19:0.25 28:0.08333333333333333 44:0.2 51:0.125 53:0.2 95:1.0 114:0.5 146:1.0 174:0.5 179:0.6666666666666666 666:0.5 672:0.2 687:1.0 821:1.0 889:1.0 954:0.5 4630:0.5 4678:1.0 4994:1.0 5313:1.0 5702:1.0 6544:1.0 20 44:0.4 66:1.0 92:0.4 97:0.5 126:1.0 179:0.3333333333333333 192:0.5 223:1.0 256:1.0 270:0.125 291:0.25 323:1.0 375:1.0 387:1.0 435:0.5 547:1.0 579:1.0 1091:1.0 1507:1.0 2405:1.0 4063:1.0 4553:0.3333333333333333 4678:1.0 4899:1.0 5194:1.0 5470:1.0 6034:1.0 20 16:0.25 28:0.08333333333333333 40:0.16666666666666666 97:0.5 114:0.5 127:0.25 179:0.3333333333333333 338:1.0 433:0.07692307692307693 435:1.5 547:1.0 722:0.25 798:1.0 819:0.5 831:1.0 2009:1.0 2029:1.0 2220:0.3333333333333333 4144:2.0 4486:1.0 4690:1.0 4811:0.2 4813:1.0 4814:1.0 5131:1.0 20 19:0.25 28:0.16666666666666666 51:0.125 83:0.025 97:0.5 435:1.0 447:1.0 1176:0.3333333333333333 1218:1.0 1325:1.0 1407:0.16666666666666666 4358:1.0 5795:1.0 20 19:0.25 26:0.1111111111111111 28:0.16666666666666666 44:0.2 97:0.5 114:0.5 115:0.07142857142857142 168:1.0 405:1.0 412:1.0 435:0.5 644:1.0 954:0.5 1261:1.0 1763:1.0 4641:0.25 5332:1.0 20 8:1.0 19:0.25 26:0.1111111111111111 28:0.08333333333333333 225:0.04 231:1.0 255:1.0 274:1.0 306:0.14285714285714285 433:0.07692307692307693 435:0.5 606:1.0 1411:1.0 1412:1.0 1891:1.0 3235:1.0 3706:0.1111111111111111 4144:1.0 4486:1.0 4628:1.0 6030:1.0 6501:1.0 20 15:1.0 16:0.75 19:0.25 28:0.08333333333333333 51:0.125 53:0.2 57:1.0 86:0.1111111111111111 115:0.07142857142857142 126:2.0 145:1.0 225:0.02 345:1.0 433:0.07692307692307693 435:0.5 665:1.0 701:0.3333333333333333 909:0.2 1454:1.0 1586:1.0 1712:1.0 1985:1.0 2633:1.0 4144:1.0 4570:0.5 5219:1.0 5279:1.0 5618:1.0 5694:1.0 5866:1.0 5956:1.0 20 16:0.5 20:1.0 28:0.16666666666666666 44:0.2 51:0.125 57:1.0 60:1.0 61:0.5 81:1.0 114:1.0 115:0.07142857142857142 126:1.0 135:0.3333333333333333 158:1.0 179:0.3333333333333333 223:1.0 231:1.0 270:0.125 587:1.0 701:0.3333333333333333 710:1.0 954:0.5 1109:1.0 1261:1.0 2135:0.5 4063:1.0 4518:1.0 4678:1.0 4796:1.0 4919:1.0 5017:1.0 5435:1.0 20 16:0.25 25:0.14285714285714285 32:0.3333333333333333 72:0.5 83:0.025 91:0.14285714285714285 218:0.16666666666666666 435:0.5 753:1.0 1296:1.0 1407:0.16666666666666666 2134:1.0 4463:1.0 4490:1.0 5046:1.0 5188:1.0 5332:1.0 5453:1.0 5535:1.0 5599:1.0 20 16:0.25 19:0.5 25:0.14285714285714285 32:0.3333333333333333 72:0.5 83:0.025 91:0.14285714285714285 92:0.2 114:0.5 152:0.5 175:0.5 218:0.16666666666666666 231:2.0 266:1.0 307:0.5 361:0.3333333333333333 435:0.5 753:1.0 846:0.3333333333333333 1296:1.0 1407:0.16666666666666666 3050:1.0 3481:1.0 4463:1.0 4490:1.0 5188:1.0 5332:1.0 20 16:0.25 25:0.14285714285714285 26:0.1111111111111111 34:1.0 44:0.2 53:0.2 59:1.0 86:0.1111111111111111 87:0.09090909090909091 114:1.5 146:1.0 158:1.0 166:1.0 345:1.0 361:0.3333333333333333 399:1.0 1052:1.0 1068:1.0 1407:0.16666666666666666 1586:1.0 1712:1.0 2058:1.0 2135:0.5 2336:1.0 2488:1.0 4459:1.0 4796:1.0 4821:1.0 6536:1.0 6554:1.0 20 16:0.5 19:0.25 25:0.14285714285714285 28:0.08333333333333333 57:2.0 115:0.21428571428571427 135:0.3333333333333333 192:0.5 225:0.04 228:1.0 383:0.16666666666666666 435:0.5 664:1.0 672:0.2 738:1.0 807:0.3333333333333333 820:1.0 1407:0.16666666666666666 1412:1.0 1608:1.0 2261:1.0 2817:1.0 3066:1.0 4144:1.0 4497:1.0 4570:0.5 4628:1.0 4639:1.0 4690:1.0 20 19:0.25 28:0.16666666666666666 51:0.125 53:0.2 114:0.5 174:0.5 270:0.125 393:1.0 435:0.5 436:0.14285714285714285 557:0.5 771:1.0 1071:0.5 1386:1.0 1387:1.0 1412:1.0 1679:1.0 3027:1.0 3134:1.0 3251:1.0 4071:1.0 4560:1.0 4609:1.0 4995:1.0 20 25:0.2857142857142857 27:0.5 53:0.2 61:0.5 87:0.18181818181818182 91:0.14285714285714285 92:0.2 99:1.0 426:1.0 435:0.5 702:1.0 1009:1.0 1025:1.0 1093:1.0 1402:1.0 1441:1.0 2000:1.0 2544:1.0 3337:1.0 3728:1.0 4487:1.0 4590:1.0 4595:1.0 5172:1.0 5759:0.5 20 25:0.14285714285714285 28:0.08333333333333333 44:0.2 53:0.2 87:0.09090909090909091 92:0.2 97:0.5 225:0.02 231:1.0 323:1.0 426:1.0 433:0.07692307692307693 435:1.0 554:0.5 1009:1.0 1911:1.0 5096:1.0 5388:1.0 5759:0.5 20 19:0.25 28:0.25 39:1.0 44:0.4 46:0.3333333333333333 57:1.0 87:0.09090909090909091 433:0.15384615384615385 435:1.0 556:1.0 681:1.0 1227:1.0 1407:0.3333333333333333 1613:1.0 1849:1.0 2135:0.5 2488:1.0 5647:1.0 5650:1.0 6421:1.0 20 28:0.08333333333333333 48:0.09090909090909091 51:0.125 57:1.0 86:0.1111111111111111 92:0.2 114:0.5 115:0.07142857142857142 126:1.0 228:2.0 255:1.0 306:0.14285714285714285 422:0.3333333333333333 435:0.5 535:1.0 644:1.0 685:1.0 1402:1.0 1405:0.5 3165:1.0 3182:1.0 4144:1.0 4480:1.0 5688:1.0 20 20:1.0 97:0.5 115:0.07142857142857142 135:0.3333333333333333 152:0.5 231:1.0 323:1.0 374:0.3333333333333333 433:0.07692307692307693 435:0.5 549:1.0 754:1.0 769:1.0 807:0.3333333333333333 828:1.0 1384:1.0 1407:0.16666666666666666 1712:1.0 2798:1.0 4216:1.0 6501:1.0
19dec0368770a702431aaf8cce7c15ea8f805ed0
59b742e36fbe9d77cb51ec949c6625f665133d2b
/Resultados/results_LocGlo_27/results/27/lvar-2/result4s0.tst
311c88754b28c479e85f4ee32f93d676038b1a4e
[]
no_license
Tiburtzio/TFG
3132fd045de3a0e911e2c9e23e9c46e1075a3274
864ce4dd00b7f8fe90eafa65b11d799c5907177e
refs/heads/master
2023-01-03T12:44:56.269655
2020-10-24T18:37:02
2020-10-24T18:37:02
275,638,403
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,742
tst
result4s0.tst
@relation unknow @attribute mcg real[0.11,1.0] @attribute gvh real[0.13,1.0] @attribute alm real[0.21,1.0] @attribute mit real[0.0,1.0] @attribute erl real[0.5,1.0] @attribute pox real[0.0,0.83] @attribute vac real[0.0,0.73] @attribute nuc real[0.0,1.0] @attribute class{MIT,NUC,CYT,ME1,ME2,ME3,EXC,VAC,POX,ERL} @inputs mcg,gvh,alm,mit,erl,pox,vac,nuc @outputs class @data MIT CYT MIT CYT MIT CYT MIT MIT NUC CYT MIT CYT CYT CYT CYT CYT CYT CYT CYT NUC CYT CYT MIT MIT ME2 ME2 ME2 ME2 ME3 ME3 CYT CYT CYT CYT CYT CYT CYT MIT CYT CYT EXC ME2 MIT CYT MIT MIT ME3 ME3 NUC NUC MIT CYT CYT MIT ME3 ME3 CYT CYT NUC CYT MIT MIT MIT CYT MIT CYT ME3 NUC CYT NUC CYT MIT MIT ME3 MIT ME3 MIT ME3 CYT ME3 CYT CYT MIT MIT NUC NUC POX CYT ME3 ME3 CYT CYT MIT CYT CYT NUC CYT CYT POX POX NUC NUC NUC NUC NUC NUC NUC CYT NUC ME3 ME1 ME1 CYT NUC ME2 ME3 CYT MIT ME3 ME3 ME3 ME3 ME3 ME3 ME2 CYT NUC NUC CYT NUC CYT CYT CYT NUC NUC NUC POX ME3 CYT NUC ME1 ME2 CYT CYT CYT CYT NUC NUC ME3 ME3 NUC NUC NUC NUC CYT CYT NUC CYT CYT CYT CYT NUC CYT NUC NUC NUC NUC MIT NUC CYT CYT NUC CYT CYT CYT CYT ME3 ME3 NUC CYT NUC CYT ME3 ME3 CYT NUC CYT NUC ME3 ME3 ME3 ME3 MIT CYT CYT CYT NUC CYT ME3 ME3 NUC ME3 NUC NUC MIT MIT NUC NUC ME2 ME2 ERL ERL ME3 ME3 NUC CYT ME2 ME3 MIT CYT MIT MIT ME3 ME3 NUC ME3 NUC NUC NUC NUC NUC ME3 CYT ME3 NUC CYT CYT CYT CYT CYT EXC EXC MIT MIT MIT ME3 MIT NUC ME2 MIT NUC NUC MIT ME3 MIT MIT MIT CYT MIT CYT MIT CYT MIT MIT MIT CYT MIT MIT ME1 ME1 NUC NUC NUC CYT NUC NUC EXC CYT ME3 ME3 NUC CYT NUC NUC CYT CYT NUC NUC NUC NUC ME2 ME3 NUC NUC POX CYT CYT CYT CYT CYT CYT CYT ME3 ME3 VAC CYT MIT CYT MIT MIT CYT CYT CYT CYT EXC EXC NUC ME3 EXC EXC EXC EXC ME1 ME1 ME3 ME3 NUC CYT ME3 ME3 NUC MIT CYT CYT NUC NUC NUC CYT CYT CYT CYT CYT MIT MIT ME3 ME3 CYT NUC MIT CYT MIT CYT MIT ME3 NUC NUC NUC NUC CYT CYT NUC CYT NUC CYT NUC CYT ME3 ME3 NUC ME3 NUC CYT CYT NUC CYT CYT CYT CYT NUC CYT NUC CYT CYT CYT CYT CYT CYT CYT CYT CYT CYT NUC CYT CYT MIT MIT CYT NUC CYT CYT CYT CYT CYT MIT CYT CYT CYT NUC NUC CYT CYT NUC CYT CYT CYT NUC CYT CYT MIT MIT CYT CYT ME2 NUC ME1 EXC NUC ME3 NUC ME3 MIT CYT NUC CYT NUC NUC NUC MIT NUC CYT CYT CYT NUC CYT MIT ME3 CYT CYT EXC EXC NUC NUC NUC ME3 NUC CYT NUC NUC NUC NUC NUC CYT CYT CYT CYT CYT NUC CYT NUC NUC ME3 ME3 NUC NUC CYT NUC CYT CYT ME3 ME3 MIT MIT NUC NUC ME3 ME3 NUC NUC NUC CYT NUC NUC NUC NUC CYT NUC CYT CYT CYT NUC NUC CYT NUC CYT VAC ME3 CYT CYT MIT NUC CYT CYT CYT CYT CYT CYT CYT CYT CYT ME3 CYT CYT ME3 ME3 NUC NUC VAC ME3 VAC CYT VAC CYT CYT CYT CYT CYT CYT ME3 VAC CYT ME1 ME1 ME1 ME2 MIT MIT ME1 ME3 NUC NUC NUC ME3 NUC NUC CYT CYT ME3 ME3 NUC NUC ME3 ME3 ME1 ME1 ME3 ME3 CYT CYT ME3 ME3 NUC NUC ME3 ME3 ME2 MIT MIT NUC NUC ME3 MIT ME3 MIT MIT NUC ME3 ME3 ME3 CYT CYT NUC NUC
83d135b3f8240ba12ace3a1820462031d48ac741
49148682b78b6520a61de9a700f791835e1b32d5
/Gachan/Gachan3D/Gachan3DTextData/TextHiraganaMplus1p.tst
fda25024998192f9ed86661852833d73f0a48898
[ "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
Ashitagachan/Gachan
535a19ea05bfcb3207a0a106b1d62db48a143f16
63b5410e128628222447c837a7209162487aa246
refs/heads/master
2021-08-07T21:53:13.048753
2020-05-16T08:01:10
2020-05-16T08:01:10
178,514,045
2
0
null
null
null
null
UTF-8
Scilab
false
false
949,488
tst
TextHiraganaMplus1p.tst
//skipped groundPlane_transform //skipped Manipulator1 //skipped UniversalManip //skipped CubeCompass ///////////////////////////////////////////// // object_Trim_Char_x_1_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif DX3DMATERIAL_START( material_initialShadingGroup ) DX3DMATERIAL_DIFF( 1, 0.4, 0.4, 0.4 ) DX3DMATERIAL_SPEC( 1, 1, 1, 1 ) DX3DMATERIAL_TEX( NULL ) DX3DMATERIAL_SHADER( DEFAULT ) DX3DMATERIAL_FLG( 0 ) DX3DMATERIAL_CALLBACK( -1 ) DX3DMATERIAL_END #if ((PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_1_1___initialShadingGroup_0 ) DX3DVERT( 2.52447, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.9125, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.52447, 2.83594, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 2.90896, 1.92966, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 3.00761, 1.70312, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 2.77874, 1.70312, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.99886, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.19298, 1.92953, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.999096, 1.79974, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 1.03851, 0.725513, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 1.05913, 0.971823, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 1.27031, 1.01406, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.744592, 0.796875, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.744592, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.871726, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.739341, 0.797163, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.539541, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.744763, 0.794122, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.99886, 0.796875, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.760723, 1.92973, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.744592, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.785517, 1.4766, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.763655, 1.31571, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.509532, 1.47654, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.744592, 1.25, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.491224, 1.24999, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.744592, 1.13672, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.871726, 1.03276, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.883717, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.767306, 1.24997, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.796129, 1.13678, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.591455, 1.7032, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.744535, 1.91323, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.744592, 1.70312, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.27031, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.27031, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.5074, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.5074, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.53594, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.75502, 1.02345, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.50736, 0.854693, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.5074, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.53594, 1.16719, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 2.77874, 1.02344, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.89753, 1.02341, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 2.52447, 0.699802, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.05781, 0.815624, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.52448, 1.01597, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.15284, 1.47657, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.01593, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.01593, 1.74802, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.01587, 1.28691, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.77874, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 3.033, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 3.00172, 1.25, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 2.76086, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 2.77874, 1.25, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.71104, 1.25002, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 2.72472, 1.7031, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 2.55179, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.77874, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.76102, 1.48917, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 3.03307, 1.48858, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 1.27031, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.27031, 3.28906, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 1.5074, 3.28906, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.27031, 1.96562, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.53594, 2.05156, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 0.998883, 2.11171, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 0.610938, 2.83594, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 0.610938, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 0.99886, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 0.610938, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 0.99886, 2.83594, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 1.27031, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 1.5074, 2.83594, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 1.53594, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.01593, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.01593, 2.83594, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 1.92543, 2.33803, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.01592, 2.3357, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 1.92969, 2.09101, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 1.53594, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 2.52438, 2.23436, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 2.15938, 2.075, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 2.01594, 2.08919, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.01593, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.52447, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 2.9125, 2.83594, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 1.27031, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 1.84244, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 0.99885, 0.976524, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 0.998854, 0.726642, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 0.905152, 1.7034, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 0.490274, 1.29251, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 1.53594, 1.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.53354, 1.02343, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 2.12813, 0.570312, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 2.10256, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 2.37977, 1.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 1.27031, 2.23594, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 1.27031, 2.38281, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 1.5074, 2.38281, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 0.99886, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 1.53594, 3.28906, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 1.53594, 2.30625, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 1.53594, 2.38281, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 2.52447, 1.94869, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 2.40938, 2.00937, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 2.9125, 2.67187, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_1_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_1_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 110 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_1_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_1_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_1_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 15, 12, // 6 20 17, 12, 18, // 7 23 19, 6, 8, // 8 26 20, 21, 22, // 9 29 23, 20, 24, // 10 32 25, 24, 26, // 11 35 27, 28, 14, // 12 38 29, 30, 26, // 13 41 27, 14, 13, // 14 44 31, 32, 33, // 15 47 31, 33, 20, // 16 50 21, 20, 33, // 17 53 34, 35, 36, // 18 56 36, 37, 38, // 19 59 39, 40, 41, // 20 62 39, 41, 42, // 21 65 43, 44, 45, // 22 68 46, 47, 45, // 23 71 48, 49, 50, // 24 74 48, 51, 49, // 25 77 52, 53, 54, // 26 80 55, 52, 56, // 27 83 57, 56, 43, // 28 86 44, 43, 56, // 29 89 58, 59, 60, // 30 92 61, 58, 5, // 31 95 62, 53, 52, // 32 98 63, 64, 65, // 33 101 66, 67, 37, // 34 104 6, 19, 68, // 35 107 69, 70, 71, // 36 110 72, 69, 73, // 37 113 74, 63, 75, // 38 116 76, 77, 78, // 39 119 79, 80, 81, // 40 122 82, 74, 75, // 41 125 83, 3, 60, // 42 128 84, 85, 80, // 43 131 77, 0, 78, // 44 134 86, 78, 2, // 45 137 87, 2, 88, // 46 140 35, 89, 37, // 47 143 49, 90, 50, // 48 146 1, 88, 2, // 49 149 5, 60, 3, // 50 152 18, 91, 10, // 51 155 11, 34, 41, // 52 158 11, 40, 9, // 53 161 41, 40, 11, // 54 164 9, 92, 18, // 55 167 18, 10, 9, // 56 170 14, 28, 91, // 57 173 91, 18, 12, // 58 176 14, 91, 12, // 59 179 13, 12, 15, // 60 182 18, 92, 17, // 61 185 33, 32, 19, // 62 188 93, 33, 19, // 63 191 8, 93, 19, // 64 194 22, 29, 24, // 65 197 24, 20, 22, // 66 200 24, 25, 94, // 67 203 94, 23, 24, // 68 206 13, 16, 25, // 69 209 26, 13, 25, // 70 212 26, 24, 29, // 71 215 13, 26, 30, // 72 218 13, 30, 27, // 73 221 20, 23, 31, // 74 224 33, 93, 21, // 75 227 34, 42, 41, // 76 230 38, 95, 36, // 77 233 36, 95, 42, // 78 236 90, 49, 51, // 79 239 90, 51, 39, // 80 242 42, 90, 39, // 81 245 42, 34, 36, // 82 248 45, 47, 96, // 83 251 96, 43, 45, // 84 254 45, 97, 46, // 85 257 50, 98, 99, // 86 260 50, 99, 48, // 87 263 54, 56, 52, // 88 266 56, 57, 55, // 89 269 43, 96, 57, // 90 272 56, 54, 44, // 91 275 60, 5, 58, // 92 278 52, 55, 61, // 93 281 61, 5, 52, // 94 284 52, 5, 4, // 95 287 52, 4, 62, // 96 290 73, 71, 63, // 97 293 63, 74, 73, // 98 296 63, 76, 75, // 99 299 7, 6, 68, // 100 302 37, 89, 66, // 101 305 100, 101, 102, // 102 308 102, 66, 100, // 103 311 68, 100, 66, // 104 314 66, 7, 68, // 105 317 71, 73, 69, // 106 320 73, 103, 72, // 107 323 74, 103, 73, // 108 326 102, 101, 74, // 109 329 74, 82, 102, // 110 332 65, 104, 76, // 111 335 76, 63, 65, // 112 338 78, 75, 76, // 113 341 67, 38, 37, // 114 344 80, 85, 81, // 115 347 81, 67, 105, // 116 350 81, 105, 79, // 117 353 102, 106, 105, // 118 356 102, 105, 67, // 119 359 67, 66, 102, // 120 362 82, 106, 102, // 121 365 78, 86, 82, // 122 368 82, 75, 78, // 123 371 59, 107, 83, // 124 374 83, 60, 59, // 125 377 99, 98, 84, // 126 380 83, 107, 108, // 127 383 83, 108, 84, // 128 386 80, 83, 84, // 129 389 84, 108, 99, // 130 392 0, 2, 78, // 131 395 2, 87, 86, // 132 398 88, 109, 87, // 133 401 37, 36, 35, // 134 404 DX3DINDEX_END #endif #else #define index_Trim_Char_x_1_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_1_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_1_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_1_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_1_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_1_1__ ) DX3DMODEL_START( model_Trim_Char_x_1_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_1_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_1_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 405 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_1_1__, 670326197 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_1_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_NULL__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_2_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_2_1___initialShadingGroup_0 ) DX3DVERT( 2.39323, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.88125, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.39323, 3.06849, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 2.70767, 1.66159, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 2.70767, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 2.86214, 1.943, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.506603, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.67761, 1.94266, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.506859, 1.82699, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.979841, 0.546513, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.525036, 0.449214, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.556317, 0.705874, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.192164, 0.536067, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.192164, 0.817447, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.271267, 0.817452, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.169685, 0.536325, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( -0.0676857, 0.817447, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.192347, 0.523834, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.506603, 0.536067, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.225223, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.162043, 1.15886, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.0110378, 1.66159, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.192166, 1.90903, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.192164, 1.66159, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.192164, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.853126, 0.817447, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.853126, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.979776, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.979776, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.1375, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 1.41438, 0.817344, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.979776, 0.817447, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 1.1375, 0.932812, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 2.70767, 0.817447, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 2.85746, 0.817436, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 2.39323, 0.416039, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.825, 0.510936, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.39324, 0.743009, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.91145, 1.38022, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.76436, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.76436, 1.66195, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.76428, 1.17454, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 2.73772, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 3.0222, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.98506, 1.09882, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 2.68287, 1.09885, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.70767, 1.16974, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.70767, 1.09883, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.69283, 1.66149, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.49295, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.70732, 1.61597, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.73778, 1.38993, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 3.02222, 1.38877, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 0.853126, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.853126, 3.63125, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 0.979776, 3.63125, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 0.853126, 2.31406, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.853126, 2.50573, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 0.979776, 2.50573, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 0.506603, 2.15827, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 0.0187503, 3.06849, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 0.0187503, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 0.506603, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 0.0187503, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 0.506603, 3.06849, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 0.853126, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 0.979776, 3.06849, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.1375, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 1.76436, 3.14062, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 1.76436, 3.06849, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 1.65836, 2.43988, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 1.76437, 2.43798, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 1.65625, 2.17687, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 1.1375, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.39306, 2.31035, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 1.98438, 2.15312, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 1.76437, 2.17462, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 1.76436, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.39323, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.88125, 3.06849, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 0.853126, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 1.58005, 1.3801, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.98867, 1.66158, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 0.506605, 0.708133, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 0.853126, 0.76875, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 0.506592, 0.449539, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 0.340991, 1.66189, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( -0.122323, 1.13641, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( -0.0952905, 1.38018, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 1.1375, 1.38021, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.48348, 0.817417, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 1.89531, 0.254687, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 1.90311, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.19432, 1.94297, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 0.853126, 2.02812, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 1.1375, 2.3875, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 0.506603, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 1.1375, 3.63125, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 1.1375, 2.11875, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 1.1375, 2.50573, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 2.39324, 2.01204, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 2.24531, 2.08281, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 2.88125, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_2_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_2_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 103 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_2_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_2_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_2_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 15, 12, // 6 20 17, 12, 18, // 7 23 19, 6, 8, // 8 26 20, 14, 13, // 9 29 21, 22, 23, // 10 32 21, 23, 24, // 11 35 24, 24, 23, // 12 38 25, 26, 27, // 13 41 27, 28, 29, // 14 44 30, 9, 31, // 15 47 30, 31, 32, // 16 50 33, 34, 35, // 17 53 36, 37, 35, // 18 56 38, 39, 40, // 19 59 38, 41, 39, // 20 62 42, 43, 44, // 21 65 45, 46, 47, // 22 68 45, 47, 33, // 23 71 34, 33, 47, // 24 74 48, 49, 4, // 25 77 50, 48, 3, // 26 80 51, 52, 43, // 27 83 53, 54, 55, // 28 86 56, 57, 58, // 29 89 6, 19, 59, // 30 92 60, 61, 62, // 31 95 63, 60, 64, // 32 98 65, 53, 66, // 33 101 67, 68, 69, // 34 104 70, 71, 72, // 35 107 73, 65, 66, // 36 110 74, 5, 4, // 37 113 75, 76, 71, // 38 116 68, 0, 69, // 39 119 77, 69, 2, // 40 122 78, 2, 79, // 41 125 26, 80, 28, // 42 128 39, 81, 40, // 43 131 1, 79, 2, // 44 134 5, 82, 3, // 45 137 18, 83, 11, // 46 140 84, 25, 31, // 47 143 84, 31, 9, // 48 146 9, 11, 84, // 49 149 10, 85, 18, // 50 152 18, 11, 10, // 51 155 83, 18, 12, // 52 158 14, 83, 12, // 53 161 13, 12, 15, // 54 164 18, 85, 17, // 55 167 23, 22, 19, // 56 170 86, 23, 19, // 57 173 8, 86, 19, // 58 176 24, 24, 20, // 59 179 87, 88, 20, // 60 182 16, 87, 20, // 61 185 20, 13, 16, // 62 188 20, 88, 24, // 63 191 24, 88, 21, // 64 194 23, 86, 24, // 65 197 27, 31, 25, // 66 200 29, 89, 27, // 67 203 27, 89, 32, // 68 206 81, 39, 41, // 69 209 81, 41, 30, // 70 212 30, 32, 81, // 71 215 32, 31, 27, // 72 218 35, 37, 90, // 73 221 90, 33, 35, // 74 224 35, 91, 36, // 75 227 40, 92, 93, // 76 230 40, 93, 38, // 77 233 44, 47, 46, // 78 236 46, 42, 44, // 79 239 33, 90, 45, // 80 242 47, 44, 34, // 81 245 4, 3, 48, // 82 248 50, 3, 82, // 83 251 43, 42, 51, // 84 254 82, 52, 51, // 85 257 82, 51, 50, // 86 260 64, 62, 53, // 87 263 53, 65, 64, // 88 266 55, 66, 53, // 89 269 7, 6, 59, // 90 272 28, 80, 94, // 91 275 28, 94, 56, // 92 278 56, 95, 28, // 93 281 59, 56, 94, // 94 284 59, 94, 7, // 95 287 62, 64, 60, // 96 290 64, 96, 63, // 97 293 65, 96, 64, // 98 296 58, 57, 65, // 99 299 65, 73, 58, // 100 302 55, 97, 67, // 101 305 66, 55, 67, // 102 308 67, 73, 66, // 103 311 95, 56, 58, // 104 314 71, 76, 72, // 105 317 72, 98, 95, // 106 320 72, 95, 70, // 107 323 58, 99, 95, // 108 326 98, 29, 28, // 109 329 28, 95, 98, // 110 332 73, 99, 58, // 111 335 69, 77, 73, // 112 338 73, 67, 69, // 113 341 49, 100, 74, // 114 344 74, 4, 49, // 115 347 93, 92, 75, // 116 350 74, 100, 101, // 117 353 74, 101, 75, // 118 356 75, 71, 74, // 119 359 75, 101, 93, // 120 362 0, 2, 69, // 121 365 2, 78, 77, // 122 368 79, 102, 78, // 123 371 28, 27, 26, // 124 374 DX3DINDEX_END #endif #else #define index_Trim_Char_x_2_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_2_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_2_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_2_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_2_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_2_1__ ) DX3DMODEL_START( model_Trim_Char_x_2_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_2_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_2_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 375 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_2_1__, 672411333 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_2_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_1_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_3_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_3_1___initialShadingGroup_0 ) DX3DVERT( 1.80067, 1.12364, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 1.80067, 1.10727, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 1.8111, 1.12364, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.59271, 0.85224, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.63391, 0.893584, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.59271, 0.893584, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.968832, 2.89425, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.973439, 2.91094, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.968832, 2.91151, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.840693, 2.04385, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.885333, 2.50396, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.598947, 2.50395, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.696876, 2.94531, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.707687, 1.12347, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.968438, 0.766731, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.968832, 0.893584, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.837147, 1.88402, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.552927, 1.90058, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.858378, 1.58372, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.572942, 1.58381, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.80067, 1.69401, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.78125, 1.70156, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.73451, 1.58373, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.17679, 0.893584, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.17679, 0.666966, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.22404, 0.663513, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.02203, 1.12349, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.968783, 1.22091, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.968832, 1.12364, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.23952, 0.948552, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.17679, 0.963547, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.47609, 1.12369, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.59271, 1.12364, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.38475, 0.893584, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.38483, 0.701438, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.38507, 1.02298, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.80067, 1.58374, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.02751, 1.58374, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.555631, 2.04385, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.03438, 1.60312, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.76875, 0.990624, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 3.04844, 0.990624, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 3.04697, 1.12364, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.81421, 2.50396, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.63252, 2.50396, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.63252, 2.11985, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.51807, 2.50396, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.63252, 2.93124, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.61563, 2.96406, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.35938, 2.87969, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.94315, 2.04385, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.65052, 2.04385, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.73121, 1.58374, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 3.01726, 1.58374, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.76681, 1.12364, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_3_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_3_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 55 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_3_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_3_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_3_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 6, 8, 12, // 4 14 13, 14, 15, // 5 17 16, 9, 17, // 6 20 18, 19, 13, // 7 23 20, 21, 22, // 8 26 23, 24, 25, // 9 29 26, 27, 28, // 10 32 14, 24, 23, // 11 35 26, 28, 15, // 12 38 29, 30, 23, // 13 41 22, 31, 32, // 14 44 33, 34, 3, // 15 47 35, 33, 5, // 16 50 1, 0, 32, // 17 53 20, 36, 37, // 18 56 36, 0, 2, // 19 59 11, 38, 9, // 20 62 12, 11, 10, // 21 65 12, 10, 6, // 22 68 15, 28, 13, // 23 71 9, 38, 17, // 24 74 19, 18, 16, // 25 77 17, 19, 16, // 26 80 13, 28, 27, // 27 83 27, 18, 13, // 28 86 22, 36, 20, // 29 89 34, 33, 23, // 30 92 25, 34, 23, // 31 95 23, 15, 14, // 32 98 15, 23, 30, // 33 101 15, 30, 26, // 34 104 33, 35, 29, // 35 107 23, 33, 29, // 36 110 0, 36, 22, // 37 113 22, 32, 0, // 38 116 3, 5, 33, // 39 119 5, 32, 31, // 40 122 31, 35, 5, // 41 125 32, 5, 4, // 42 128 32, 4, 1, // 43 131 37, 39, 20, // 44 134 2, 37, 36, // 45 137 40, 41, 42, // 46 140 43, 44, 45, // 47 143 46, 45, 44, // 48 146 47, 48, 49, // 49 149 43, 47, 44, // 50 152 50, 51, 52, // 51 155 53, 52, 54, // 52 158 42, 54, 40, // 53 161 45, 51, 50, // 54 164 50, 43, 45, // 55 167 46, 44, 47, // 56 170 49, 46, 47, // 57 173 52, 53, 50, // 58 176 54, 42, 53, // 59 179 DX3DINDEX_END #endif #else #define index_Trim_Char_x_3_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_3_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_3_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_3_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_3_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_3_1__ ) DX3DMODEL_START( model_Trim_Char_x_3_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_3_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_3_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 180 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_3_1__, 674496469 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_3_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_2_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_4_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_4_1___initialShadingGroup_0 ) DX3DVERT( 1.50216, 0.965923, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 1.75556, 1.51026, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 1.50217, 1.51026, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.24447, 0.629312, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.27005, 0.655993, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.24445, 0.656017, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.0115701, 2.64925, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( -0.0407335, 2.07976, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.256742, 2.07978, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.13125, 3.19844, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.311307, 2.64925, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.143618, 0.940619, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.470836, 0.489922, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.471318, 0.656017, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( -0.0200416, 1.51033, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.278129, 1.5103, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.25256, 1.87911, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.470143, 0.940672, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.50217, 1.62936, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.48906, 1.63437, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.44038, 1.51026, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.986834, 0.428435, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.790466, 0.667269, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.72903, 0.656017, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.72903, 0.373462, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.729035, 0.677718, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.471162, 0.938931, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.986742, 0.656017, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.986801, 0.771543, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.13444, 0.940561, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.24445, 0.940765, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.48667, 0.940776, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.7625, 1.52969, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.420313, 3.15938, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( -0.0440816, 1.9011, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.770351, 0.37125, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.74844, 0.773438, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 3.04844, 0.773438, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 3.04624, 0.940765, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.91192, 2.07976, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.75356, 2.64925, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.53301, 2.35952, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.44023, 2.64925, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.53301, 2.64925, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.53301, 3.16802, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.50625, 3.21875, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.23438, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.60432, 2.07976, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.70286, 1.51026, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 3.0059, 1.51026, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.74603, 0.940765, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_4_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_4_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 51 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_4_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_4_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_4_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 6, 10, // 3 11 11, 12, 13, // 4 14 14, 15, 16, // 5 17 11, 17, 15, // 6 20 18, 19, 20, // 7 23 21, 22, 23, // 8 26 12, 24, 23, // 9 29 25, 26, 13, // 10 32 27, 28, 22, // 11 35 20, 29, 30, // 12 38 3, 5, 27, // 13 41 5, 30, 29, // 14 44 4, 31, 30, // 15 47 1, 32, 18, // 16 50 8, 10, 6, // 17 53 10, 33, 9, // 18 56 26, 17, 11, // 19 59 11, 13, 26, // 20 62 8, 7, 34, // 21 65 16, 8, 34, // 22 68 34, 14, 16, // 23 71 15, 14, 11, // 24 74 20, 2, 18, // 25 77 23, 24, 35, // 26 80 35, 21, 23, // 27 83 23, 13, 12, // 28 86 13, 23, 25, // 29 89 22, 25, 23, // 30 92 22, 21, 27, // 31 95 30, 31, 0, // 32 98 0, 2, 20, // 33 101 20, 30, 0, // 34 104 27, 21, 3, // 35 107 28, 27, 5, // 36 110 29, 28, 5, // 37 113 30, 5, 4, // 38 116 18, 2, 1, // 39 119 36, 37, 38, // 40 122 39, 40, 41, // 41 125 42, 41, 43, // 42 128 44, 45, 46, // 43 131 40, 44, 43, // 44 134 39, 47, 48, // 45 137 49, 48, 50, // 46 140 38, 50, 36, // 47 143 41, 47, 39, // 48 146 41, 40, 43, // 49 149 42, 43, 44, // 50 152 46, 42, 44, // 51 155 48, 49, 39, // 52 158 50, 38, 49, // 53 161 DX3DINDEX_END #endif #else #define index_Trim_Char_x_4_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_4_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_4_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_4_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_4_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_4_1__ ) DX3DMODEL_START( model_Trim_Char_x_4_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_4_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_4_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 162 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_4_1__, 676581605 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_4_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_3_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_5_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_5_1___initialShadingGroup_0 ) DX3DVERT( 2.46719, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.4591, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.4591, 2.82032, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.52955, 3.13068, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.07188, 3.19062, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.06477, 3.13381, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.04063, 2.94062, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.06477, 2.93705, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.99432, 3.09383, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.52955, 2.87664, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.99432, 2.8358, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.46719, 2.82031, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.4591, 1.07213, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.45909, 0.993383, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.56866, 1.07214, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.69149, 1.91953, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.90767, 1.91952, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.81, 2.13192, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.06478, 2.05137, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.52955, 2.12764, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.52955, 2.34323, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.06478, 2.32089, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.6, 2.22031, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.52954, 2.39094, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.19041, 2.34323, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.87975, 2.15934, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.87977, 2.34323, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.87977, 2.41677, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.98438, 2.16129, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.45905, 2.07229, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.4591, 2.13138, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.99651, 2.41882, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.51935, 2.34291, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.45909, 2.36338, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.4591, 2.34323, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.61044, 1.91953, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.69149, 2.13138, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.69118, 2.24979, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.52954, 0.94869, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.17344, 0.901562, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.22813, 0.648438, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.52954, 0.681385, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.87978, 0.750874, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.92399, 1.77054, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.64386, 1.75937, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.99953, 1.0722, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.87977, 1.03151, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.4591, 1.28398, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.69146, 1.18569, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.77147, 1.28401, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.69149, 1.28398, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.4591, 1.3478, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.87905, 1.49604, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.69149, 1.49583, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.662501, 1.96562, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.57453, 1.49586, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_5_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_5_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 56 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_5_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_5_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_5_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 5, 6, 7, // 2 8 8, 3, 9, // 3 11 1, 8, 10, // 4 14 2, 11, 0, // 5 17 7, 9, 3, // 6 20 5, 7, 3, // 7 23 9, 10, 8, // 8 26 10, 2, 1, // 9 29 12, 13, 14, // 10 32 15, 16, 17, // 11 35 18, 19, 20, // 12 38 18, 21, 22, // 13 41 20, 23, 24, // 14 44 25, 26, 20, // 15 47 26, 27, 23, // 16 50 28, 29, 30, // 17 53 31, 27, 26, // 18 56 32, 33, 34, // 19 59 35, 15, 36, // 20 62 32, 34, 30, // 21 65 17, 37, 36, // 22 68 38, 39, 40, // 23 71 38, 41, 42, // 24 74 43, 16, 44, // 25 77 45, 46, 42, // 26 80 45, 12, 47, // 27 83 48, 49, 50, // 28 86 47, 12, 14, // 29 89 51, 47, 50, // 30 92 49, 52, 53, // 31 95 17, 36, 15, // 32 98 24, 21, 18, // 33 101 18, 20, 24, // 34 104 22, 54, 18, // 35 107 20, 19, 25, // 36 110 23, 20, 26, // 37 113 26, 25, 28, // 38 116 34, 26, 28, // 39 119 30, 34, 28, // 40 122 26, 34, 33, // 41 125 33, 31, 26, // 42 128 36, 30, 29, // 43 131 29, 35, 36, // 44 134 30, 36, 37, // 45 137 30, 37, 32, // 46 140 40, 41, 38, // 47 143 42, 46, 38, // 48 146 15, 35, 44, // 49 149 44, 55, 53, // 50 152 53, 52, 43, // 51 155 43, 44, 53, // 52 158 44, 16, 15, // 53 161 13, 12, 45, // 54 164 45, 42, 13, // 55 167 47, 51, 45, // 56 170 48, 50, 47, // 57 173 47, 14, 48, // 58 176 50, 53, 55, // 59 179 50, 55, 51, // 60 182 53, 50, 49, // 61 185 DX3DINDEX_END #endif #else #define index_Trim_Char_x_5_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_5_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_5_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_5_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_5_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_5_1__ ) DX3DMODEL_START( model_Trim_Char_x_5_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_5_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_5_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 186 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_5_1__, 678666741 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_5_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_4_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_6_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_6_1___initialShadingGroup_0 ) DX3DVERT( 2.32031, 3.35937, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.17578, 3.36048, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.17578, 3.08719, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.16615, 3.42577, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.595314, 3.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.560938, 3.2375, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.7422, 3.37658, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.16615, 3.15622, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.7422, 3.10491, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.32031, 3.08594, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.31824, 0.870312, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.31823, 0.78499, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.43751, 0.870317, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.60626, 1.92344, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.87523, 1.92342, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.75247, 2.18678, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.590109, 2.13795, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.16615, 2.2293, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.16615, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.590113, 2.41843, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.0140627, 2.29375, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.16614, 2.50488, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.769616, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.60089, 2.26484, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.60089, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.60089, 2.53665, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.73438, 2.26726, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.31825, 2.16735, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.31824, 2.18672, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.7458, 2.53915, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.38581, 2.45004, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.31824, 2.47194, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.31824, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.55933, 1.92344, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.60626, 2.18672, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.60621, 2.33327, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.16614, 0.677254, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.720313, 0.617186, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.790626, 0.343748, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.16614, 0.387463, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.6009, 0.477629, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.59238, 1.73594, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.50562, 1.39689, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.60626, 1.39687, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.8445, 0.870388, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.60089, 0.781578, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.31824, 1.13359, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.60623, 1.02474, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.69601, 1.13363, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.60626, 1.13359, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.31829, 1.16419, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.83468, 1.39715, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.0765637, 2.02812, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.89448, 1.74618, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_6_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_6_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 54 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_6_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_6_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_6_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 3, 7, // 2 8 1, 6, 8, // 3 11 2, 9, 0, // 4 14 5, 7, 3, // 5 17 7, 8, 6, // 6 20 8, 2, 1, // 7 23 10, 11, 12, // 8 26 13, 14, 15, // 9 29 16, 17, 18, // 10 32 16, 19, 20, // 11 35 18, 21, 22, // 12 38 23, 24, 18, // 13 41 24, 25, 21, // 14 44 26, 27, 28, // 15 47 29, 25, 24, // 16 50 30, 31, 32, // 17 53 33, 13, 34, // 18 56 30, 32, 28, // 19 59 15, 35, 34, // 20 62 36, 37, 38, // 21 65 36, 39, 40, // 22 68 41, 42, 43, // 23 71 44, 45, 40, // 24 74 44, 10, 46, // 25 77 47, 48, 49, // 26 80 46, 10, 12, // 27 83 50, 46, 49, // 28 86 48, 51, 43, // 29 89 15, 34, 13, // 30 92 22, 19, 16, // 31 95 16, 18, 22, // 32 98 20, 52, 16, // 33 101 18, 17, 23, // 34 104 21, 18, 24, // 35 107 24, 23, 26, // 36 110 32, 24, 26, // 37 113 26, 28, 32, // 38 116 24, 32, 31, // 39 119 31, 29, 24, // 40 122 34, 28, 27, // 41 125 27, 33, 34, // 42 128 28, 34, 35, // 43 131 28, 35, 30, // 44 134 38, 39, 36, // 45 137 40, 45, 36, // 46 140 13, 33, 41, // 47 143 53, 14, 41, // 48 146 51, 53, 41, // 49 149 43, 51, 41, // 50 152 41, 14, 13, // 51 155 11, 10, 44, // 52 158 44, 40, 11, // 53 161 46, 50, 44, // 54 164 47, 49, 46, // 55 167 46, 12, 47, // 56 170 49, 43, 42, // 57 173 49, 42, 50, // 58 176 43, 49, 48, // 59 179 DX3DINDEX_END #endif #else #define index_Trim_Char_x_6_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_6_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_6_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_6_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_6_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_6_1__ ) DX3DMODEL_START( model_Trim_Char_x_6_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_6_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_6_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 180 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_6_1__, 680751877 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_6_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_5_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_7_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_7_1___initialShadingGroup_0 ) DX3DVERT( 2.46719, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.19688, 3.09821, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.19688, 2.84587, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.775, 3.1224, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.35313, 3.16645, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.35313, 2.91786, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.07188, 3.20625, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.04063, 2.96094, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.775, 2.87261, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.46719, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.99063, 0.984373, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.61875, 0.929314, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.61875, 0.864452, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.77499, 1.42831, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.775, 1.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.35313, 1.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.35313, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.775, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.35313, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.720313, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.93125, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.720313, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.720313, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.93125, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.93125, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.35313, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.775, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.509375, 0.862499, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.670314, 0.651562, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.931253, 0.856346, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.93125, 1.1945, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.782376, 1.07734, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.93125, 1.07734, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.775, 1.71601, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.775, 1.85851, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.35313, 1.52651, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.32341, 1.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.2152, 1.07739, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.35307, 1.18366, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.67031, 2.23594, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.67031, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.61875, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.19688, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.775, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.19688, 2.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.19688, 2.19051, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.19688, 1.9289, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.29357, 1.9289, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.19688, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.61875, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.01711, 1.07739, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.19694, 0.763327, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.19688, 0.864452, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.09141, 1.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.15993, 1.5029, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.09144, 1.58662, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.98594, 1.60957, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.97871, 1.62627, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.92188, 1.61875, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.98594, 1.71601, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.19688, 1.8501, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.98594, 1.9289, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.98594, 1.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.05326, 1.61047, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.98593, 1.62617, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.19688, 1.07734, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.19688, 1.29023, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.94828, 1.29025, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.98591, 1.18713, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.98594, 1.29023, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.98594, 1.39668, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.87329, 1.39656, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.88037, 1.39062, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.88047, 1.39668, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.88047, 1.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.19688, 1.42685, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.57063, 0.678661, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.61875, 0.67952, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.30797, 1.07734, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.40776, 0.689381, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.40781, 0.864452, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.59945, 0.929132, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.40783, 0.959034, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.86445, 1.9289, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.98594, 1.67819, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.03235, 1.71601, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 3.04063, 0.742186, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.61875, 2.19391, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.28125, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.28438, 2.25937, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.67031, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 1.91875, 1.62344, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 1.78231, 1.42843, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_7_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_7_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 93 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_7_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_7_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_7_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 4, 6, 7, // 2 8 1, 3, 8, // 3 11 2, 9, 0, // 4 14 5, 8, 3, // 5 17 7, 5, 4, // 6 20 8, 2, 1, // 7 23 10, 11, 12, // 8 26 13, 14, 15, // 9 29 16, 17, 18, // 10 32 19, 20, 21, // 11 35 22, 21, 23, // 12 38 20, 16, 23, // 13 41 24, 23, 18, // 14 44 25, 18, 26, // 15 47 27, 28, 29, // 16 50 30, 31, 32, // 17 53 33, 34, 35, // 18 56 35, 36, 15, // 19 59 32, 29, 37, // 20 62 30, 37, 38, // 21 65 39, 40, 41, // 22 68 17, 42, 26, // 23 71 43, 26, 44, // 24 74 45, 46, 47, // 25 77 48, 44, 41, // 26 80 49, 41, 40, // 27 83 50, 51, 52, // 28 86 53, 54, 55, // 29 89 56, 57, 58, // 30 92 34, 33, 59, // 31 95 60, 46, 61, // 32 98 62, 53, 55, // 33 101 63, 64, 56, // 34 104 50, 65, 66, // 35 107 67, 68, 69, // 36 110 67, 69, 70, // 37 113 71, 72, 73, // 38 116 71, 73, 74, // 39 119 74, 73, 70, // 40 122 75, 53, 70, // 41 125 60, 47, 46, // 42 128 76, 77, 12, // 43 131 78, 75, 66, // 44 134 51, 79, 80, // 45 137 78, 65, 52, // 46 140 81, 82, 80, // 47 143 45, 83, 61, // 48 146 84, 85, 59, // 49 149 12, 77, 86, // 50 152 12, 86, 10, // 51 155 15, 38, 13, // 52 158 17, 26, 18, // 53 161 20, 23, 21, // 54 164 23, 24, 22, // 55 167 16, 18, 23, // 56 170 18, 25, 24, // 57 173 26, 43, 25, // 58 176 29, 32, 31, // 59 179 31, 27, 29, // 60 182 35, 15, 14, // 61 185 14, 33, 35, // 62 188 30, 32, 37, // 63 191 38, 15, 36, // 64 194 36, 30, 38, // 65 197 41, 87, 39, // 66 200 42, 44, 26, // 67 203 44, 48, 43, // 68 206 44, 42, 88, // 69 209 47, 87, 89, // 70 212 47, 89, 45, // 71 215 89, 87, 41, // 72 218 88, 41, 44, // 73 221 41, 88, 89, // 74 224 41, 49, 48, // 75 227 40, 90, 49, // 76 230 52, 65, 50, // 77 233 84, 59, 33, // 78 236 56, 64, 57, // 79 239 58, 74, 62, // 80 242 58, 62, 56, // 81 245 33, 14, 74, // 82 248 33, 91, 84, // 83 251 74, 58, 91, // 84 254 91, 33, 74, // 85 257 59, 61, 83, // 86 260 83, 34, 59, // 87 263 61, 59, 85, // 88 266 85, 60, 61, // 89 269 63, 56, 62, // 90 272 62, 55, 63, // 91 275 66, 69, 68, // 92 278 68, 50, 66, // 93 281 70, 73, 72, // 94 284 72, 67, 70, // 95 287 14, 13, 92, // 96 290 74, 14, 92, // 97 293 74, 92, 71, // 98 296 70, 62, 74, // 99 299 53, 62, 70, // 100 302 70, 69, 66, // 101 305 70, 66, 75, // 102 308 53, 75, 54, // 103 311 12, 80, 79, // 104 314 12, 79, 76, // 105 317 66, 65, 78, // 106 320 80, 52, 51, // 107 323 52, 80, 82, // 108 326 82, 78, 52, // 109 329 12, 11, 81, // 110 332 81, 80, 12, // 111 335 61, 46, 45, // 112 338 DX3DINDEX_END #endif #else #define index_Trim_Char_x_7_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_7_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_7_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_7_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_7_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_7_1__ ) DX3DMODEL_START( model_Trim_Char_x_7_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_7_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_7_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 339 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_7_1__, 682837013 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_7_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_6_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_8_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_8_1___initialShadingGroup_0 ) DX3DVERT( 2.32031, 3.375, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 1.99323, 3.38015, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 1.99323, 3.11103, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.46953, 3.40945, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.945835, 3.46393, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.945835, 3.20267, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.595314, 3.51406, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.560938, 3.25781, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.46953, 3.14477, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.32031, 3.10469, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.99063, 0.71875, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.51693, 0.647997, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.51693, 0.615105, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.33883, 1.32512, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.33874, 1.40573, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.945835, 1.40573, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.945835, 2.4, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.33874, 2.4, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.945835, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.151563, 2.4, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.422137, 2.4, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.151563, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.151563, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.422137, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.422137, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.945835, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.33874, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( -0.101561, 0.570313, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.0687511, 0.351563, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.422137, 0.635525, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.422137, 0.992895, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.28055, 0.878645, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.422137, 0.878645, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.33874, 1.66927, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.33874, 1.73252, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.945835, 1.41548, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.933753, 1.40573, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.727472, 0.878645, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.945833, 1.04918, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.57344, 2.36875, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.57344, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.51693, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.99323, 2.4, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.33874, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.99323, 2.4599, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.15156, 2.4, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.15625, 2.39219, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.99323, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.51693, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.79437, 0.878647, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.99321, 0.503927, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.99323, 0.615105, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.82961, 1.40573, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.92446, 1.40584, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.82962, 1.52668, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.50237, 1.40573, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.66599, 1.40573, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.66599, 1.5375, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.66599, 1.66927, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.99323, 1.89071, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.99323, 1.93281, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.66599, 1.93281, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.68089, 1.5764, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.666, 1.57604, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.99323, 0.878645, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.99323, 1.14219, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.64109, 1.27387, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.66594, 1.23954, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.66599, 1.27396, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.46971, 1.35528, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.71402, 1.14217, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.99323, 1.2371, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.04433, 1.93281, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.47231, 0.382498, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.51693, 0.383108, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.10131, 0.878628, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.25508, 0.397781, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.25508, 0.615105, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.12415, 0.615105, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.17109, 0.746748, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.12415, 0.746876, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.99323, 0.746876, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.12415, 0.826031, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.49048, 0.647732, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.25512, 0.68334, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.99323, 2.26064, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 1.58696, 1.93281, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.66599, 1.62109, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.72446, 1.66927, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 3.04063, 0.460938, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.51693, 2.32219, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.57344, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 1.60625, 1.57187, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 1.60938, 1.56875, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 1.81404, 1.53765, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 1.50237, 1.35334, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_8_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_8_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 96 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_8_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_8_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_8_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 4, 6, 7, // 2 8 1, 3, 8, // 3 11 2, 9, 0, // 4 14 5, 8, 3, // 5 17 7, 5, 4, // 6 20 8, 2, 1, // 7 23 10, 11, 12, // 8 26 13, 14, 15, // 9 29 16, 17, 18, // 10 32 19, 20, 21, // 11 35 22, 21, 23, // 12 38 20, 16, 23, // 13 41 24, 23, 18, // 14 44 25, 18, 26, // 15 47 27, 28, 29, // 16 50 30, 31, 32, // 17 53 33, 34, 35, // 18 56 35, 36, 15, // 19 59 32, 29, 37, // 20 62 30, 37, 38, // 21 65 39, 40, 41, // 22 68 17, 42, 26, // 23 71 43, 26, 44, // 24 74 45, 46, 41, // 25 77 47, 45, 41, // 26 80 48, 41, 40, // 27 83 49, 50, 51, // 28 86 52, 53, 54, // 29 89 55, 56, 57, // 30 92 34, 33, 58, // 31 95 59, 60, 61, // 32 98 56, 52, 54, // 33 101 62, 63, 57, // 34 104 49, 64, 65, // 35 107 66, 67, 68, // 36 110 14, 13, 69, // 37 113 66, 68, 56, // 38 116 70, 65, 71, // 39 119 59, 72, 60, // 40 122 73, 74, 12, // 41 125 75, 71, 65, // 42 128 76, 77, 78, // 43 131 79, 80, 78, // 44 134 81, 51, 78, // 45 137 75, 64, 81, // 46 140 79, 82, 80, // 47 143 83, 84, 77, // 48 146 85, 86, 61, // 49 149 87, 88, 58, // 50 152 12, 74, 89, // 51 155 12, 89, 10, // 52 158 15, 38, 13, // 53 161 17, 26, 18, // 54 164 20, 23, 21, // 55 167 23, 24, 22, // 56 170 16, 18, 23, // 57 173 18, 25, 24, // 58 176 26, 43, 25, // 59 179 29, 32, 31, // 60 182 31, 27, 29, // 61 185 35, 15, 14, // 62 188 14, 33, 35, // 63 191 30, 32, 37, // 64 194 38, 15, 36, // 65 197 36, 30, 38, // 66 200 41, 90, 39, // 67 203 42, 44, 26, // 68 206 44, 47, 43, // 69 209 46, 85, 72, // 70 212 44, 42, 45, // 71 215 45, 47, 44, // 72 218 85, 60, 72, // 73 221 90, 41, 46, // 74 224 72, 90, 46, // 75 227 41, 48, 47, // 76 230 40, 91, 48, // 77 233 81, 64, 49, // 78 236 49, 51, 81, // 79 239 87, 58, 92, // 80 242 57, 63, 93, // 81 245 93, 14, 55, // 82 248 57, 93, 55, // 83 251 14, 93, 92, // 84 254 33, 92, 58, // 85 257 92, 33, 14, // 86 260 58, 61, 86, // 87 263 58, 86, 34, // 88 266 61, 58, 88, // 89 269 61, 88, 59, // 90 272 94, 57, 56, // 91 275 54, 94, 56, // 92 278 57, 94, 62, // 93 281 65, 70, 49, // 94 284 69, 95, 55, // 95 287 55, 14, 69, // 96 290 56, 55, 95, // 97 293 56, 95, 66, // 98 296 52, 56, 68, // 99 299 71, 53, 52, // 100 302 71, 52, 67, // 101 305 71, 67, 70, // 102 308 68, 67, 52, // 103 311 12, 77, 76, // 104 314 12, 76, 73, // 105 317 65, 64, 75, // 106 320 78, 51, 50, // 107 323 50, 76, 78, // 108 326 78, 77, 84, // 109 329 78, 84, 79, // 110 332 78, 80, 81, // 111 335 81, 80, 82, // 112 338 82, 75, 81, // 113 341 12, 11, 83, // 114 344 83, 77, 12, // 115 347 61, 60, 85, // 116 350 DX3DINDEX_END #endif #else #define index_Trim_Char_x_8_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_8_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_8_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_8_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_8_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_8_1__ ) DX3DMODEL_START( model_Trim_Char_x_8_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_8_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_8_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 351 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_8_1__, 684922149 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_8_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_7_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_9_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_9_1___initialShadingGroup_0 ) DX3DVERT( 2.30305, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.425, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.30305, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.60938, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.60938, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.3811, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.3811, 1.2914, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.3811, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.60938, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.689631, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.920119, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.919967, 1.65517, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.920114, 0.992374, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.920119, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.804875, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.459238, 1.2914, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.689631, 1.2914, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.689631, 1.12558, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.689496, 0.850952, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.582431, 0.959713, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.689631, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.732648, 1.29137, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.78857, 1.12536, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.596285, 1.69261, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.689631, 1.49195, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.48855, 1.49188, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.731949, 1.31015, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.971015, 1.69262, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 1.34098, 1.15475, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.34048, 1.2914, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.975297, 0.959919, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.920133, 0.719715, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 1.15061, 0.67955, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.15063, 0.921169, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.28726, 0.959759, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.34065, 1.12558, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.3811, 1.12558, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.3811, 1.04267, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.32355, 1.01279, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.32347, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.33224, 1.04267, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.3811, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.60981, 1.1577, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.49634, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.52209, 0.794361, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.49634, 0.793941, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 1.3811, 0.793941, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.49599, 0.767975, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 1.38125, 0.706203, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 0.576564, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 0.920119, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 0.576564, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 0.920138, 1.95697, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 0.576564, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.920119, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.60938, 1.88906, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.34056, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 1.34063, 1.84219, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 1.34063, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 1.34063, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.3811, 2.22469, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 1.60938, 2.22469, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.90146, 1.44003, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.76402, 1.2914, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 2.76402, 1.49195, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.30304, 0.682194, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.01094, 0.628124, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.95625, 0.874996, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.53354, 1.65935, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.53354, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.76402, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.60663, 1.29145, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.76403, 0.979954, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.30837, 0.959713, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.53354, 1.13207, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.53354, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.30307, 0.957405, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.74869, 0.959759, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.53357, 0.777641, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.50137, 1.6925, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.62322, 1.43593, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 2.61816, 1.49189, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.88967, 1.29139, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 1.84207, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 1.84207, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 2.30305, 1.95859, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.30305, 1.82215, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 1.86719, 1.9002, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 1.84207, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 2.76418, 1.81232, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.84401, 1.69254, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 2.53316, 2.00255, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.6026, 1.95822, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.53354, 1.95859, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 2.30305, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 2.425, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 1.3811, 3.28906, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 1.60938, 3.28906, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 1.60939, 1.2914, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 0.780152, 1.49203, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 0.804291, 1.10254, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 0.458958, 1.30882, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 1.13952, 0.921051, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 1.16911, 0.679359, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 1.59572, 0.959763, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 0.920119, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 1.60938, 2.14531, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 1.84207, 2.15848, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 1.84207, 1.90031, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 1.34063, 2.10312, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( 1.34063, 2.22469, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 1.34063, 3.28906, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( 1.85691, 2.15854, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT( 2.30304, 2.1012, 0 ) DX3DVNORM( 0, 0, -1 ) //113 DX3DVERT( 2.425, 2.64062, 0 ) DX3DVNORM( 0, 0, -1 ) //114 DX3DVERT( 2.76402, 2.94147, 0 ) DX3DVNORM( 0, 0, -1 ) //115 DX3DVERT( 2.91737, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //116 DX3DVERT( 2.76402, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //117 DX3DVERT( 3.05675, 2.22469, 0 ) DX3DVNORM( 0, 0, -1 ) //118 DX3DVERT( 3.01719, 2.2, 0 ) DX3DVNORM( 0, 0, -1 ) //119 DX3DVERT( 3.00125, 2.22469, 0 ) DX3DVNORM( 0, 0, -1 ) //120 DX3DVERT( 2.61089, 2.75687, 0 ) DX3DVNORM( 0, 0, -1 ) //121 DX3DVERT( 2.76402, 2.56396, 0 ) DX3DVNORM( 0, 0, -1 ) //122 DX3DVERT( 2.52969, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //123 DX3DVERT( 2.71719, 2.99531, 0 ) DX3DVNORM( 0, 0, -1 ) //124 DX3DVERT( 3.225, 2.32969, 0 ) DX3DVNORM( 0, 0, -1 ) //125 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_9_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_9_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 126 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_9_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_9_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_9_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 18, 19, 20, // 6 20 18, 20, 14, // 7 23 17, 16, 21, // 8 26 20, 17, 22, // 9 29 23, 9, 24, // 10 32 25, 24, 16, // 11 35 26, 21, 16, // 12 38 10, 27, 11, // 13 41 28, 29, 6, // 14 44 13, 12, 30, // 15 47 31, 13, 30, // 16 50 32, 33, 34, // 17 53 35, 36, 37, // 18 56 34, 38, 39, // 19 59 40, 37, 41, // 20 62 42, 43, 36, // 21 65 44, 45, 43, // 22 68 46, 41, 43, // 23 71 47, 48, 46, // 24 74 44, 47, 45, // 25 77 49, 50, 51, // 26 80 52, 10, 9, // 27 83 53, 51, 54, // 28 86 55, 8, 7, // 29 89 7, 56, 57, // 30 92 58, 3, 5, // 31 95 59, 4, 60, // 32 98 4, 61, 60, // 33 101 62, 63, 64, // 34 104 65, 66, 67, // 35 107 68, 69, 70, // 36 110 71, 63, 72, // 37 113 73, 74, 75, // 38 116 65, 76, 73, // 39 119 77, 78, 75, // 40 122 68, 79, 69, // 41 125 80, 81, 64, // 42 128 82, 72, 63, // 43 131 83, 0, 84, // 44 134 85, 86, 87, // 45 137 88, 84, 2, // 46 140 89, 90, 70, // 47 143 91, 92, 93, // 48 146 91, 93, 85, // 49 149 93, 69, 79, // 50 152 89, 70, 69, // 51 155 94, 2, 95, // 52 158 29, 56, 7, // 53 161 1, 95, 2, // 54 164 3, 83, 84, // 55 167 96, 97, 3, // 56 170 3, 58, 96, // 57 173 8, 98, 6, // 58 176 99, 24, 9, // 59 179 11, 99, 9, // 60 182 14, 100, 12, // 61 185 17, 20, 19, // 62 188 19, 15, 17, // 63 191 14, 13, 31, // 64 194 14, 31, 18, // 65 197 21, 22, 17, // 66 200 100, 14, 20, // 67 203 22, 100, 20, // 68 206 24, 25, 23, // 69 209 16, 15, 101, // 70 212 101, 25, 16, // 71 215 24, 99, 26, // 72 218 16, 24, 26, // 73 221 36, 35, 28, // 74 224 28, 6, 36, // 75 227 102, 33, 32, // 76 230 30, 102, 31, // 77 233 32, 31, 102, // 78 236 39, 41, 46, // 79 239 48, 103, 46, // 80 242 46, 103, 32, // 81 245 32, 34, 46, // 82 248 46, 34, 39, // 83 251 37, 40, 35, // 84 254 41, 39, 38, // 85 257 41, 38, 40, // 86 260 43, 41, 37, // 87 263 42, 104, 43, // 88 266 6, 98, 42, // 89 269 42, 36, 6, // 90 272 37, 36, 43, // 91 275 43, 104, 44, // 92 278 43, 45, 46, // 93 281 46, 45, 47, // 94 284 50, 54, 51, // 95 287 9, 23, 52, // 96 290 54, 105, 53, // 97 293 106, 107, 108, // 98 296 60, 61, 106, // 99 299 106, 109, 60, // 100 302 55, 57, 106, // 101 305 108, 55, 106, // 102 308 27, 10, 52, // 103 311 109, 110, 60, // 104 314 57, 109, 106, // 105 317 57, 55, 7, // 106 320 52, 109, 57, // 107 323 52, 57, 27, // 108 326 58, 111, 96, // 109 329 54, 50, 58, // 110 332 58, 5, 54, // 111 335 60, 110, 59, // 112 338 59, 105, 54, // 113 341 54, 5, 59, // 114 344 84, 88, 4, // 115 347 4, 3, 84, // 116 350 4, 59, 5, // 117 353 62, 82, 63, // 118 356 64, 70, 90, // 119 359 90, 62, 64, // 120 362 67, 76, 65, // 121 365 70, 64, 81, // 122 368 70, 81, 68, // 123 371 72, 77, 75, // 124 374 72, 75, 74, // 125 377 72, 74, 71, // 126 380 73, 75, 78, // 127 383 73, 78, 65, // 128 386 63, 71, 80, // 129 389 64, 63, 80, // 130 392 0, 2, 84, // 131 395 108, 107, 112, // 132 398 87, 112, 113, // 133 401 87, 113, 85, // 134 404 112, 87, 108, // 135 407 2, 94, 88, // 136 410 85, 113, 91, // 137 413 86, 85, 93, // 138 416 79, 86, 93, // 139 419 69, 93, 92, // 140 422 92, 89, 69, // 141 425 95, 114, 94, // 142 428 7, 6, 29, // 143 431 115, 116, 117, // 144 434 118, 119, 120, // 145 437 115, 117, 121, // 146 440 117, 122, 121, // 147 443 118, 120, 122, // 148 446 123, 124, 115, // 149 449 115, 121, 123, // 150 452 122, 117, 116, // 151 455 122, 116, 125, // 152 458 122, 125, 118, // 153 461 DX3DINDEX_END #endif #else #define index_Trim_Char_x_9_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_9_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_9_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_9_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_9_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_9_1__ ) DX3DMODEL_START( model_Trim_Char_x_9_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_9_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_9_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 462 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_9_1__, 687007285 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_9_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_8_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_10_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_10_1___initialShadingGroup_0 ) DX3DVERT( 2.09621, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.22969, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.09621, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.22813, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.22813, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 0.967429, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.22813, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.22836, 0.98, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.967429, 0.98, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.12084, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.403036, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.402831, 1.6362, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.12084, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.12084, 0.98, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.159555, 0.980007, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.0602992, 0.648327, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( -0.1391, 0.980003, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.120764, 0.593784, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.403036, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.0195864, 1.6429, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.12084, 1.31141, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( -0.161555, 1.1526, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( -0.14378, 1.31143, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.123004, 1.15375, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.412179, 1.64307, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.944034, 0.939285, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.943813, 0.98, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.403111, 0.713646, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.558341, 0.648502, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.403107, 0.431385, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.706034, 0.381924, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.685237, 0.63533, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.784865, 0.648621, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.826335, 0.662888, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.826331, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 0.93443, 0.814274, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 0.967429, 0.814297, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 0.967429, 0.731445, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 0.896791, 0.719917, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.89688, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.90433, 0.73148, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 0.967429, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.22844, 0.949497, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.19193, 0.648579, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.10853, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.10854, 0.505714, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 0.967429, 0.482891, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.08348, 0.48288, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 0.967386, 0.420498, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( -0.0203113, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 0.403036, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( -0.0203113, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 0.403021, 1.95518, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( -0.0203113, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.403036, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.22813, 1.9125, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 0.967429, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.943476, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 0.943751, 1.86562, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 0.943751, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 0.943751, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 0.967429, 2.30562, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.22813, 2.30562, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.86557, 1.32058, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 2.66061, 1.31141, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.66061, 1.47711, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.70781, 0.578125, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 2.09626, 0.662636, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.09621, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.51951, 1.5265, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.51951, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.66061, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.49547, 0.979996, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.66061, 0.98, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.66062, 0.704277, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.37841, 0.828838, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.37841, 0.648594, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.37843, 0.480461, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.0962, 0.373264, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.60966, 0.64859, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.57317, 1.3114, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 2.43131, 1.64281, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.57306, 1.31874, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 2.54307, 1.47711, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 2.8132, 0.98, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.53182, 3.10156, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 1.53182, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.09622, 2.14239, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 2.09622, 1.85275, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 1.57813, 1.93132, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 1.53182, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 2.66065, 1.81806, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.78867, 1.64286, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.09621, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 2.22969, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 0.967429, 3.63125, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 1.22813, 3.63125, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 0.149704, 1.3114, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 0.672437, 0.635128, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 0.685231, 0.382072, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 0.403036, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 1.22813, 2.18438, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 1.53183, 2.20456, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 1.53182, 1.93111, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 0.943751, 2.14219, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 0.943751, 2.30562, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 0.943751, 3.63125, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 1.76563, 0.317184, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 1.57576, 2.20495, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 2.22969, 2.85156, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( 2.66061, 3.17113, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 2.83308, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( 2.66061, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT( 3.03237, 2.30562, 0 ) DX3DVNORM( 0, 0, -1 ) //113 DX3DVERT( 3.00938, 2.29063, 0 ) DX3DVNORM( 0, 0, -1 ) //114 DX3DVERT( 2.99968, 2.30562, 0 ) DX3DVNORM( 0, 0, -1 ) //115 DX3DVERT( 2.49324, 2.96844, 0 ) DX3DVNORM( 0, 0, -1 ) //116 DX3DVERT( 2.66061, 2.77144, 0 ) DX3DVNORM( 0, 0, -1 ) //117 DX3DVERT( 3.225, 2.43125, 0 ) DX3DVNORM( 0, 0, -1 ) //118 DX3DVERT( 2.38594, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //119 DX3DVERT( 2.58906, 3.25, 0 ) DX3DVNORM( 0, 0, -1 ) //120 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_10_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_10_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 121 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_10_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_10_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_10_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 15, 12, // 6 20 17, 12, 18, // 7 23 19, 9, 20, // 8 26 21, 22, 20, // 9 29 23, 14, 13, // 10 32 10, 24, 11, // 11 35 25, 26, 8, // 12 38 18, 27, 28, // 13 41 29, 18, 28, // 14 44 30, 31, 32, // 15 47 32, 33, 34, // 16 50 35, 36, 37, // 17 53 33, 38, 39, // 18 56 40, 37, 41, // 19 59 42, 43, 44, // 20 62 43, 45, 44, // 21 65 46, 41, 44, // 22 68 47, 48, 46, // 23 71 49, 50, 51, // 24 74 52, 10, 9, // 25 77 53, 51, 54, // 26 80 55, 6, 56, // 27 83 56, 57, 58, // 28 86 59, 3, 5, // 29 89 60, 4, 61, // 30 92 4, 62, 61, // 31 95 63, 64, 65, // 32 98 66, 67, 68, // 33 101 69, 70, 71, // 34 104 72, 73, 74, // 35 107 67, 75, 76, // 36 110 77, 78, 68, // 37 113 79, 77, 76, // 38 116 80, 64, 73, // 39 119 69, 81, 70, // 40 122 82, 83, 65, // 41 125 84, 74, 73, // 42 128 85, 0, 86, // 43 131 87, 88, 89, // 44 134 90, 86, 2, // 45 137 91, 92, 71, // 46 140 91, 70, 81, // 47 143 93, 2, 94, // 48 146 26, 57, 56, // 49 149 1, 94, 2, // 50 152 3, 85, 86, // 51 155 95, 96, 3, // 52 158 3, 59, 95, // 53 161 8, 56, 6, // 54 164 97, 20, 9, // 55 167 9, 11, 97, // 56 170 27, 18, 12, // 57 173 14, 27, 12, // 58 176 13, 12, 15, // 59 179 18, 29, 17, // 60 182 20, 22, 19, // 61 185 16, 23, 13, // 62 188 20, 16, 21, // 63 191 20, 97, 23, // 64 194 23, 16, 20, // 65 197 36, 35, 25, // 66 200 8, 36, 25, // 67 203 98, 31, 99, // 68 206 28, 98, 29, // 69 209 99, 29, 98, // 70 212 39, 41, 46, // 71 215 30, 99, 31, // 72 218 46, 48, 30, // 73 221 30, 32, 46, // 74 224 46, 32, 34, // 75 227 46, 34, 39, // 76 230 37, 40, 35, // 77 233 39, 34, 33, // 78 236 41, 39, 38, // 79 239 41, 38, 40, // 80 242 44, 41, 37, // 81 245 8, 7, 42, // 82 248 36, 8, 42, // 83 251 44, 36, 42, // 84 254 37, 36, 44, // 85 257 44, 45, 47, // 86 260 47, 46, 44, // 87 263 50, 54, 51, // 88 266 9, 19, 52, // 89 269 54, 100, 53, // 90 272 101, 102, 103, // 91 275 61, 62, 101, // 92 278 61, 101, 55, // 93 281 55, 104, 61, // 94 284 103, 55, 101, // 95 287 24, 10, 52, // 96 290 104, 105, 61, // 97 293 58, 104, 55, // 98 296 58, 55, 56, // 99 299 52, 104, 58, // 100 302 52, 58, 24, // 101 305 59, 106, 95, // 102 308 54, 50, 59, // 103 311 59, 5, 54, // 104 314 61, 105, 60, // 105 317 60, 100, 54, // 106 320 54, 5, 60, // 107 323 86, 90, 4, // 108 326 4, 3, 86, // 109 329 4, 60, 5, // 110 332 84, 73, 64, // 111 335 65, 71, 92, // 112 338 92, 63, 65, // 113 341 64, 63, 84, // 114 344 78, 107, 66, // 115 347 66, 68, 78, // 116 350 71, 65, 83, // 117 353 83, 69, 71, // 118 356 74, 79, 76, // 119 359 74, 76, 75, // 120 362 74, 75, 72, // 121 365 76, 68, 67, // 122 368 68, 76, 77, // 123 371 73, 72, 80, // 124 374 64, 80, 82, // 125 377 82, 65, 64, // 126 380 0, 2, 86, // 127 383 89, 103, 102, // 128 386 89, 102, 108, // 129 389 108, 87, 89, // 130 392 2, 93, 90, // 131 395 91, 71, 70, // 132 398 88, 87, 91, // 133 401 81, 88, 91, // 134 404 94, 109, 93, // 135 407 56, 8, 26, // 136 410 110, 111, 112, // 137 413 113, 114, 115, // 138 416 110, 112, 116, // 139 419 112, 117, 116, // 140 422 118, 115, 117, // 141 425 119, 120, 110, // 142 428 110, 116, 119, // 143 431 118, 113, 115, // 144 434 117, 112, 111, // 145 437 111, 118, 117, // 146 440 DX3DINDEX_END #endif #else #define index_Trim_Char_x_10_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_10_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_10_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_10_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_10_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_10_1__ ) DX3DMODEL_START( model_Trim_Char_x_10_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_10_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_10_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 441 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_10_1__, 3902015397 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_10_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_9_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_11_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_11_1___initialShadingGroup_0 ) DX3DVERT( 2.97813, 1.13906, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 3.25625, 1.20937, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 3.12738, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.9082, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.68542, 2.91022, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.68542, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 2.64839, 2.99875, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 2.33796, 2.99875, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 2.56563, 3.19063, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.29688, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.68542, 2.09868, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.60131, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.82525, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.11472, 1.51196, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.12182, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.11458, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.45426, 0.656185, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.972922, 0.780411, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.972917, 0.479805, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.4491, 2.57785, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.54374, 2.57338, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.54375, 2.66688, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( -0.121874, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( -0.121874, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.402084, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.576564, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.511413, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.806226, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.972917, 3.64398, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.80625, 3.6625, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.674611, 2.99875, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.972917, 3.02898, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.0875, 3.63125, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.0672055, 1.0075, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( -0.16875, 0.450001, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.0968765, 0.34375, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.402084, 1.96182, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.308803, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.402084, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.374962, 1.0075, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.402084, 1.07843, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.610276, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.81875, 0.84375, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.725, 0.581253, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.1133, 2.33502, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.0377, 2.66703, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.82917, 2.50094, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.8155, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.82917, 2.335, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.82917, 2.66688, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.82912, 2.80896, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.68646, 2.66688, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.68646, 2.55146, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.75761, 2.50094, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.8292, 0.538399, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.92051, 0.675472, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.82917, 0.675625, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.82824, 2.0414, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.8237, 1.67125, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.72424, 1.00745, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.82917, 1.0075, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.68645, 0.415424, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.8043, 0.509689, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.68646, 0.509689, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.54368, 0.685333, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.68646, 0.675625, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.54375, 0.509689, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.54374, 0.373085, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.54375, 0.675625, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.04369, 1.00745, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.12513, 2.04258, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.11476, 2.31707, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.50315, 0.371723, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 0.972917, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 0.972917, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.54374, 2.83981, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.47921, 2.84085, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.402084, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 0.93125, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 0.966374, 2.99875, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 0.868751, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 0.639063, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_11_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_11_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 82 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_11_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_11_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_11_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 4, 6, 7, // 2 8 8, 9, 7, // 3 11 3, 5, 10, // 4 14 5, 11, 10, // 5 17 2, 12, 0, // 6 20 11, 5, 4, // 7 23 7, 11, 4, // 8 26 7, 6, 8, // 9 29 10, 12, 2, // 10 32 10, 2, 3, // 11 35 13, 14, 15, // 12 38 16, 17, 18, // 13 41 19, 20, 21, // 14 44 22, 23, 24, // 15 47 25, 26, 27, // 16 50 28, 29, 30, // 17 53 31, 32, 28, // 18 56 33, 34, 35, // 19 59 36, 37, 38, // 20 62 33, 39, 40, // 21 65 36, 38, 41, // 22 68 17, 42, 43, // 23 71 38, 40, 41, // 24 74 44, 45, 46, // 25 77 47, 48, 46, // 26 80 49, 50, 51, // 27 83 20, 52, 51, // 28 86 53, 46, 49, // 29 89 45, 50, 49, // 30 92 54, 55, 56, // 31 95 57, 58, 15, // 32 98 58, 59, 60, // 33 101 61, 62, 63, // 34 104 59, 64, 65, // 35 107 66, 67, 61, // 36 110 68, 66, 63, // 37 113 54, 56, 65, // 38 116 55, 69, 60, // 39 119 14, 70, 71, // 40 122 68, 64, 16, // 41 125 72, 67, 66, // 42 128 18, 72, 66, // 43 131 66, 16, 18, // 44 134 16, 66, 68, // 45 137 73, 74, 19, // 46 140 21, 75, 76, // 47 143 76, 19, 21, // 48 146 19, 76, 73, // 49 149 24, 77, 22, // 50 152 78, 79, 30, // 51 155 77, 24, 25, // 52 158 80, 78, 81, // 53 161 27, 80, 25, // 54 164 81, 25, 80, // 55 167 25, 81, 77, // 56 170 74, 73, 78, // 57 173 30, 81, 78, // 58 176 78, 80, 74, // 59 179 30, 79, 31, // 60 182 31, 28, 30, // 61 185 35, 39, 33, // 62 188 40, 38, 37, // 63 191 40, 37, 33, // 64 194 27, 26, 36, // 65 197 41, 27, 36, // 66 200 43, 18, 17, // 67 203 46, 48, 44, // 68 206 46, 45, 49, // 69 209 46, 53, 47, // 70 212 75, 21, 51, // 71 215 51, 50, 75, // 72 218 51, 21, 20, // 73 221 49, 51, 52, // 74 224 49, 52, 53, // 75 227 71, 44, 48, // 76 230 57, 48, 47, // 77 233 57, 15, 71, // 78 236 48, 57, 71, // 79 239 13, 15, 58, // 80 242 60, 69, 58, // 81 245 58, 69, 13, // 82 248 64, 68, 65, // 83 251 56, 60, 59, // 84 254 59, 65, 56, // 85 257 61, 63, 66, // 86 260 63, 65, 68, // 87 263 65, 63, 62, // 88 266 62, 54, 65, // 89 269 60, 56, 55, // 90 272 71, 15, 14, // 91 275 DX3DINDEX_END #endif #else #define index_Trim_Char_x_11_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_11_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_11_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_11_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_11_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_11_1__ ) DX3DMODEL_START( model_Trim_Char_x_11_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_11_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_11_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 276 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_11_1__, 3904100533 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_11_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_10_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_12_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_12_1___initialShadingGroup_0 ) DX3DVERT( 3.03794, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.72684, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.97031, 1.06875, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.73352, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.6724, 2.46068, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.6724, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 2.58438, 2.63281, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 2.32344, 2.52031, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 2.41573, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.6724, 1.79625, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 3.24063, 1.15937, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.10431, 1.53683, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.11002, 1.67313, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.10417, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.44131, 0.656361, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.967723, 0.77779, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.967709, 0.476273, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.53594, 2.67015, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.4941, 2.84098, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.40404, 2.57814, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( -0.121874, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( -0.121874, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.39948, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.576564, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.512194, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.806977, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.967709, 3.64456, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.80625, 3.6625, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.675441, 3.0025, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.967709, 3.0049, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.0875, 3.63125, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.0675761, 1.00843, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( -0.16875, 0.449997, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.0968765, 0.34375, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.39948, 1.95339, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.309428, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.39948, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.375324, 1.00843, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.39948, 1.07156, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.610884, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.80625, 0.84375, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.709375, 0.581249, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.10316, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.02111, 2.67047, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.96211, 2.67015, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.80153, 2.33782, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.82005, 2.33781, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.82005, 2.50398, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.82005, 2.67015, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.82013, 2.80244, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.678, 2.67015, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.60954, 2.56463, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.67815, 2.55033, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.74128, 2.50412, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.96211, 2.73732, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.82005, 0.545578, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.90573, 0.675789, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.82005, 0.676094, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.81342, 1.91691, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.80859, 1.67312, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.71465, 1.00845, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.82005, 1.00843, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.67799, 0.419323, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.78951, 0.509922, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.678, 0.509922, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.53602, 0.689785, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.678, 0.676094, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.53594, 0.509922, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.53589, 0.374088, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.53594, 0.676094, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.0305, 1.00842, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.11287, 2.03963, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.11265, 2.13104, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.48863, 0.371883, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.43541, 2.57795, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.53594, 2.57314, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.53594, 2.84066, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.967709, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 0.967709, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 0.39948, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 0.93125, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 0.967188, 3.0025, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 0.868751, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 0.639063, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.10417, 2.32744, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.11246, 1.90142, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.92344, 2.89531, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 3.14795, 3.0025, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.86514, 3.0025, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.6724, 3.6022, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.55313, 3.5375, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.6724, 3.34029, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 3.16563, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.79219, 3.66719, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.37031, 2.7625, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.60469, 2.875, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.53604, 3.0025, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.10417, 3.44137, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.00781, 3.39063, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.10417, 3.23271, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.24219, 3.51406, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.23878, 3.0025, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_12_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_12_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 102 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_12_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_12_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_12_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 3, 5, 9, // 3 11 5, 8, 9, // 4 14 2, 10, 0, // 5 17 8, 5, 4, // 6 20 4, 6, 8, // 7 23 9, 1, 0, // 8 26 9, 0, 3, // 9 29 11, 12, 13, // 10 32 14, 15, 16, // 11 35 17, 18, 19, // 12 38 20, 21, 22, // 13 41 23, 24, 25, // 14 44 26, 27, 28, // 15 47 29, 30, 26, // 16 50 31, 32, 33, // 17 53 34, 35, 36, // 18 56 31, 37, 38, // 19 59 34, 36, 39, // 20 62 15, 40, 41, // 21 65 36, 38, 39, // 22 68 42, 43, 44, // 23 71 45, 46, 47, // 24 74 48, 49, 50, // 25 77 51, 52, 50, // 26 80 53, 47, 48, // 27 83 43, 54, 44, // 28 86 54, 49, 48, // 29 89 55, 56, 57, // 30 92 58, 59, 13, // 31 95 59, 60, 61, // 32 98 62, 63, 64, // 33 101 60, 65, 66, // 34 104 67, 68, 62, // 35 107 69, 67, 64, // 36 110 55, 57, 66, // 37 113 56, 70, 61, // 38 116 71, 72, 58, // 39 119 69, 65, 14, // 40 122 73, 68, 67, // 41 125 16, 73, 67, // 42 128 67, 14, 16, // 43 131 14, 67, 69, // 44 134 74, 75, 17, // 45 137 17, 76, 18, // 46 140 77, 78, 19, // 47 143 77, 19, 18, // 48 146 17, 19, 74, // 49 149 22, 79, 20, // 50 152 80, 81, 28, // 51 155 79, 22, 23, // 52 158 82, 80, 83, // 53 161 25, 82, 23, // 54 164 83, 23, 82, // 55 167 23, 83, 79, // 56 170 78, 77, 80, // 57 173 28, 83, 80, // 58 176 80, 82, 78, // 59 179 28, 81, 29, // 60 182 29, 26, 28, // 61 185 33, 37, 31, // 62 188 38, 36, 35, // 63 191 38, 35, 31, // 64 194 25, 24, 34, // 65 197 39, 25, 34, // 66 200 41, 16, 15, // 67 203 47, 46, 42, // 68 206 44, 47, 42, // 69 209 47, 44, 48, // 70 212 47, 53, 45, // 71 215 76, 17, 50, // 72 218 50, 49, 76, // 73 221 50, 17, 75, // 74 224 50, 75, 51, // 75 227 48, 50, 52, // 76 230 48, 52, 53, // 77 233 48, 44, 54, // 78 236 84, 42, 46, // 79 239 58, 46, 45, // 80 242 58, 72, 84, // 81 245 46, 58, 84, // 82 248 11, 13, 59, // 83 251 61, 70, 59, // 84 254 59, 70, 11, // 85 257 65, 69, 66, // 86 260 57, 61, 60, // 87 263 60, 66, 57, // 88 266 62, 64, 67, // 89 269 64, 66, 69, // 90 272 66, 64, 63, // 91 275 63, 55, 66, // 92 278 61, 57, 56, // 93 281 13, 12, 85, // 94 284 85, 58, 13, // 95 287 71, 58, 85, // 96 290 86, 87, 88, // 97 293 89, 90, 91, // 98 296 92, 93, 89, // 99 299 88, 87, 92, // 100 302 91, 88, 92, // 101 305 89, 91, 92, // 102 308 94, 95, 96, // 103 311 97, 98, 99, // 104 314 96, 100, 97, // 105 317 96, 101, 94, // 106 320 99, 101, 96, // 107 323 96, 97, 99, // 108 326 DX3DINDEX_END #endif #else #define index_Trim_Char_x_12_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_12_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_12_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_12_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_12_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_12_1__ ) DX3DMODEL_START( model_Trim_Char_x_12_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_12_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_12_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 327 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_12_1__, 3906185669 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_12_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_11_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_13_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_13_1___initialShadingGroup_0 ) DX3DVERT( 2.52656, 0.395313, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.49063, 0.648438, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.38156, 0.631828, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 3.00156, 2.22344, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.99375, 2.46875, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.38156, 2.44277, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.14156, 2.15864, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.14156, 2.40358, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.521563, 2.39492, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.14156, 3.08281, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.14156, 3.14808, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.521563, 3.13828, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.0421881, 3.13594, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.0421881, 3.08281, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.521563, 3.08281, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.521563, 2.1488, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( -0.0984375, 2.39219, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.0421881, 2.8875, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.521563, 2.8905, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.14156, 2.90162, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.85156, 2.17656, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.91375, 2.03696, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.91375, 2.52968, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.57813, 3.15937, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.62188, 2.91406, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.91406, 2.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.91375, 3.08281, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.90731, 3.08281, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.90156, 3.21406, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.38156, 3.18686, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.91375, 3.16853, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.38156, 3.08281, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.05469, 2.43125, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.01996, 2.52968, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.38154, 2.94163, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.9125, 2.96406, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.831361, 0.394497, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.14154, 0.339764, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.14156, 0.593739, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.521652, 1.67419, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.521563, 1.42343, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.618515, 1.4235, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.238069, 1.42343, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.196804, 0.8703, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.521291, 0.512608, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.521563, 0.593739, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.154587, 1.1194, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.466791, 1.12122, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.538914, 0.870247, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.521407, 0.89867, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.521563, 0.8703, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.831563, 0.593739, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.831552, 0.663662, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.57957, 0.570053, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.24143, 1.8073, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.14153, 1.80531, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.25136, 1.5611, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.44628, 1.42343, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.54219, 1.49063, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.38156, 1.74434, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.10938, 1.64687, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.38156, 1.42343, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.38155, 0.373531, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.91375, 0.581711, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.38156, 1.37809, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.28125, 1.30781, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 0.521327, 1.32341, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.38156, 2.1939, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( -0.0984375, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.75781, 2.41875, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.72101, 2.52968, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.81719, 3.63594, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.53125, 3.62031, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.87188, 3.16719, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.94176, 1.97655, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.25163, 1.97655, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.15156, 2.18438, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.14156, 1.55849, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.91375, 0.327034, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.58148, 0.316746, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.91375, 1.45263, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.91371, 1.70503, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.10469, 1.63906, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.00053, 1.42342, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_13_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_13_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 84 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_13_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_13_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_13_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 8, 16, // 5 17 13, 17, 18, // 6 20 19, 9, 14, // 7 23 20, 21, 22, // 8 26 23, 10, 9, // 9 29 24, 25, 26, // 10 32 27, 28, 29, // 11 35 30, 26, 31, // 12 38 32, 33, 22, // 13 41 34, 31, 26, // 14 44 34, 35, 27, // 15 47 36, 37, 38, // 16 50 39, 40, 41, // 17 53 39, 42, 40, // 18 56 43, 44, 45, // 19 59 46, 43, 47, // 20 62 48, 49, 50, // 21 65 44, 36, 51, // 22 68 48, 50, 45, // 23 71 38, 52, 51, // 24 74 53, 38, 38, // 25 77 54, 55, 56, // 26 80 57, 58, 59, // 27 83 60, 61, 59, // 28 86 62, 2, 63, // 29 89 64, 61, 65, // 30 92 57, 61, 64, // 31 95 66, 41, 40, // 32 98 2, 62, 0, // 33 101 5, 67, 3, // 34 104 8, 15, 6, // 35 107 11, 14, 9, // 36 110 14, 11, 12, // 37 113 16, 68, 15, // 38 116 18, 14, 13, // 39 119 14, 18, 19, // 40 122 69, 7, 6, // 41 125 22, 70, 69, // 42 128 69, 20, 22, // 43 131 6, 20, 69, // 44 134 71, 72, 23, // 45 137 26, 30, 73, // 46 140 26, 73, 23, // 47 143 23, 24, 26, // 48 146 23, 73, 71, // 49 149 24, 70, 22, // 50 152 9, 19, 24, // 51 155 24, 23, 9, // 52 158 29, 31, 27, // 53 161 31, 29, 30, // 54 164 74, 75, 76, // 55 167 32, 76, 5, // 56 170 22, 21, 32, // 57 173 76, 67, 5, // 58 176 76, 21, 74, // 59 179 76, 32, 21, // 60 182 22, 33, 25, // 61 185 25, 24, 22, // 62 188 26, 25, 34, // 63 191 27, 31, 34, // 64 194 38, 51, 36, // 65 197 77, 55, 39, // 66 200 41, 77, 39, // 67 203 45, 50, 43, // 68 206 43, 50, 49, // 69 209 66, 40, 42, // 70 212 47, 66, 42, // 71 215 42, 46, 47, // 72 218 49, 47, 43, // 73 221 51, 45, 44, // 74 224 45, 51, 52, // 75 227 45, 52, 48, // 76 230 51, 38, 38, // 77 233 78, 63, 53, // 78 236 37, 79, 53, // 79 239 53, 38, 37, // 80 242 53, 79, 78, // 81 245 55, 77, 56, // 82 248 56, 80, 81, // 83 251 81, 54, 56, // 84 254 59, 61, 57, // 85 257 82, 81, 80, // 86 260 61, 82, 83, // 87 263 75, 74, 60, // 88 266 60, 59, 75, // 89 269 82, 61, 60, // 90 272 80, 83, 82, // 91 275 63, 78, 62, // 92 278 83, 65, 61, // 93 281 DX3DINDEX_END #endif #else #define index_Trim_Char_x_13_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_13_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_13_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_13_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_13_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_13_1__ ) DX3DMODEL_START( model_Trim_Char_x_13_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_13_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_13_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 282 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_13_1__, 3908270805 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_13_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_12_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_14_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_14_1___initialShadingGroup_0 ) DX3DVERT( 2.44375, 0.356247, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.40938, 0.609371, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.18438, 0.577023, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.50256, 0.277687, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.60391, 0.278656, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.50032, 0.531002, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.57447, 2.63332, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.60391, 2.53065, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.60391, 2.63332, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.44297, 2.1087, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.44297, 2.3557, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.137499, 2.35312, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.00312505, 3.09687, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.00312505, 2.84843, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.44297, 2.85119, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.60391, 3.59106, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.42344, 3.58125, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.4544, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.02344, 2.11644, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.02344, 2.36385, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.44297, 3.09905, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.02344, 2.86178, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.51563, 2.875, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.297443, 0.572346, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.442761, 0.472633, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.44297, 0.57251, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.443009, 1.63738, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.376427, 1.59972, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.44297, 1.5998, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.152735, 0.866913, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.436386, 0.866913, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.385514, 1.08253, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.103732, 0.866917, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.152735, 1.23336, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.152755, 1.37686, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.0919804, 1.23336, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.442711, 1.29115, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.152741, 0.749485, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.442969, 0.854996, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.13897, 1.76835, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.0234, 1.76555, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.02344, 1.5998, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.733204, 1.5998, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.0234, 0.305336, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.02344, 0.560543, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.950212, 0.572536, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.733211, 1.4752, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.02343, 1.51859, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.733018, 0.360332, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.733204, 0.57251, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.733204, 0.630913, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.14618, 1.52201, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.9625, 2.18437, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.95469, 2.43125, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.76484, 2.42204, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.65313, 2.37968, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.60391, 2.37817, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.60391, 2.13005, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.74888, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.71094, 3.59687, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.7625, 3.12812, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.60391, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.76484, 2.17464, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.18438, 2.39622, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.44375, 2.91093, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.43281, 3.15937, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.18438, 3.14684, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.18435, 0.319725, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.60391, 0.532177, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.00312, 1.60781, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.18438, 1.5998, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.18438, 1.86446, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.17188, 1.26875, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.18438, 1.2774, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.33956, 1.5998, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.43594, 1.45156, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( -0.137499, 2.10625, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.02344, 3.10838, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.46875, 3.12031, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 0.412565, 1.23352, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 0.0732674, 1.08024, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.60391, 1.5998, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.60385, 1.7187, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.60391, 1.46869, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.78532, 2.04452, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.09274, 2.04452, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.04688, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.86889, 2.63332, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.74688, 2.13437, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 1.94844, 2.3875, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.18438, 2.15055, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 1.80938, 2.88281, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.18438, 2.89772, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2, 1.6, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 3.12656, 3.10468, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 3.34531, 3.21406, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 3.34099, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 3.00938, 3.81094, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.79219, 3.69375, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 3.06344, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.76484, 3.14227, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.80781, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.7769, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 2.76484, 3.24461, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 2.76484, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 2.47969, 3.74531, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 2.26563, 3.63125, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 2.50229, 3.22213, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 2.59219, 3.05468, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_14_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_14_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 109 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_14_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_14_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_14_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 18, 19, 10, // 6 20 20, 14, 21, // 7 23 6, 8, 22, // 8 26 23, 24, 25, // 9 29 26, 27, 28, // 10 32 29, 30, 31, // 11 35 32, 29, 33, // 12 38 34, 35, 33, // 13 41 34, 33, 36, // 14 44 32, 37, 29, // 15 47 23, 25, 38, // 16 50 39, 40, 41, // 17 53 26, 28, 42, // 18 56 43, 44, 45, // 19 59 42, 46, 47, // 20 62 28, 36, 46, // 21 65 24, 48, 49, // 22 68 50, 38, 25, // 23 71 45, 50, 49, // 24 74 41, 47, 51, // 25 77 52, 53, 54, // 26 80 55, 56, 57, // 27 83 58, 59, 15, // 28 86 60, 61, 8, // 29 89 62, 54, 63, // 30 92 64, 65, 66, // 31 95 67, 2, 68, // 32 98 69, 70, 71, // 33 101 72, 73, 70, // 34 104 74, 71, 70, // 35 107 73, 75, 74, // 36 110 57, 56, 19, // 37 113 2, 67, 0, // 38 116 4, 68, 5, // 39 119 5, 44, 43, // 40 122 5, 43, 3, // 41 125 11, 76, 9, // 42 128 14, 20, 12, // 43 131 17, 61, 15, // 44 134 10, 9, 18, // 45 137 21, 77, 20, // 46 140 78, 77, 21, // 47 143 61, 17, 78, // 48 146 61, 78, 22, // 49 149 61, 22, 8, // 50 152 21, 22, 78, // 51 155 31, 79, 33, // 52 158 33, 29, 31, // 53 161 33, 35, 80, // 54 164 33, 80, 32, // 55 167 33, 79, 36, // 56 170 36, 28, 27, // 57 173 27, 34, 36, // 58 176 38, 30, 29, // 59 179 38, 29, 37, // 60 182 37, 23, 38, // 61 185 41, 81, 82, // 62 188 41, 82, 39, // 63 191 42, 41, 40, // 64 194 42, 40, 26, // 65 197 49, 48, 43, // 66 200 45, 49, 43, // 67 203 47, 41, 42, // 68 206 46, 42, 28, // 69 209 49, 25, 24, // 70 212 25, 49, 50, // 71 215 51, 83, 81, // 72 218 51, 81, 41, // 73 221 54, 62, 52, // 74 224 84, 85, 86, // 75 227 87, 8, 7, // 76 230 88, 89, 55, // 77 233 57, 88, 55, // 78 236 55, 89, 87, // 79 239 7, 55, 87, // 80 242 86, 90, 63, // 81 245 86, 89, 88, // 82 248 88, 84, 86, // 83 251 63, 89, 86, // 84 254 15, 61, 58, // 85 257 91, 92, 66, // 86 260 60, 58, 61, // 87 263 8, 87, 91, // 88 266 8, 91, 60, // 89 269 66, 60, 91, // 90 272 63, 90, 62, // 91 275 66, 92, 64, // 92 278 68, 4, 67, // 93 281 93, 82, 81, // 94 284 69, 93, 70, // 95 287 71, 85, 84, // 96 290 84, 69, 71, // 97 293 93, 72, 70, // 98 296 83, 93, 81, // 99 299 72, 93, 83, // 100 302 74, 70, 73, // 101 305 19, 18, 57, // 102 308 94, 95, 96, // 103 311 97, 98, 99, // 104 314 96, 99, 94, // 105 317 99, 96, 97, // 106 320 100, 101, 102, // 107 323 102, 103, 104, // 108 326 105, 106, 107, // 109 329 100, 104, 107, // 110 332 102, 104, 100, // 111 335 107, 104, 103, // 112 338 103, 105, 107, // 113 341 107, 108, 100, // 114 344 DX3DINDEX_END #endif #else #define index_Trim_Char_x_14_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_14_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_14_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_14_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_14_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_14_1__ ) DX3DMODEL_START( model_Trim_Char_x_14_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_14_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_14_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 345 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_14_1__, 3910355941 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_14_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_13_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_15_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_15_1___initialShadingGroup_0 ) DX3DVERT( 2.2375, 0.195313, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.44844, 0.40625, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.12341, 0.683483, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.87695, 3.04018, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.98636, 3.12433, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.87695, 3.12433, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.814283, 2.63616, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.733981, 2.58226, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.733998, 2.23172, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.194262, 2.14799, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.448243, 2.14799, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 1.30548, 2.97965, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.30547, 2.63616, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.87695, 3.40829, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.50294, 3.12432, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.30547, 2.61921, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.32939, 2.63616, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.01659, 1.17162, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.30547, 0.955315, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.30547, 1.17165, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.30547, 1.32579, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.733986, 1.37356, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.733985, 1.65982, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.448243, 1.65982, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.734152, 1.72979, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.525638, 1.90394, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.448243, 1.78186, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.337631, 1.65982, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.448243, 2.02595, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.216034, 1.78188, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.305355, 1.68616, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.305372, 1.78186, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.305372, 1.9039, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.591115, 2.12894, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.615663, 2.14798, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.591114, 2.14799, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.501483, 1.98125, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.50864, 2.02597, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.833896, 1.65954, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.51128, 1.17165, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.65233, 0.683483, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.87695, 0.500469, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.87695, 0.683483, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.87695, 0.885376, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.32813, 3.39375, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.13594, 3.6125, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.448243, 1.9039, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.162499, 1.98125, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.168569, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_15_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_15_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 49 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_15_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_15_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_15_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 7, 9, 10, // 3 11 11, 6, 12, // 4 14 13, 5, 4, // 5 17 13, 14, 5, // 6 20 12, 15, 16, // 7 23 14, 11, 16, // 8 26 17, 18, 19, // 9 29 17, 19, 20, // 10 32 21, 22, 23, // 11 35 24, 25, 26, // 12 38 27, 23, 26, // 13 41 28, 10, 9, // 14 44 29, 30, 31, // 15 47 29, 31, 32, // 16 50 32, 31, 26, // 17 53 33, 34, 35, // 18 56 36, 37, 28, // 19 59 33, 35, 10, // 20 62 38, 24, 22, // 21 65 39, 20, 19, // 22 68 40, 41, 42, // 23 71 40, 42, 43, // 24 74 2, 43, 42, // 25 77 2, 42, 41, // 26 80 41, 0, 2, // 27 83 15, 12, 6, // 28 86 6, 8, 15, // 29 89 35, 34, 8, // 30 92 35, 8, 7, // 31 95 7, 10, 35, // 32 98 44, 45, 13, // 33 101 4, 44, 13, // 34 104 11, 12, 16, // 35 107 3, 5, 14, // 36 110 14, 16, 3, // 37 113 38, 22, 21, // 38 116 38, 21, 17, // 39 119 20, 38, 17, // 40 122 23, 27, 21, // 41 125 25, 46, 26, // 42 128 23, 22, 24, // 43 131 24, 26, 23, // 44 134 26, 31, 30, // 45 137 30, 27, 26, // 46 140 47, 48, 32, // 47 143 32, 46, 28, // 48 146 28, 9, 32, // 49 149 32, 9, 47, // 50 152 32, 48, 29, // 51 155 26, 46, 32, // 52 158 46, 25, 36, // 53 161 28, 46, 36, // 54 164 10, 28, 37, // 55 167 10, 37, 33, // 56 170 39, 19, 18, // 57 173 39, 18, 40, // 58 176 43, 39, 40, // 59 179 DX3DINDEX_END #endif #else #define index_Trim_Char_x_15_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_15_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_15_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_15_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_15_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_15_1__ ) DX3DMODEL_START( model_Trim_Char_x_15_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_15_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_15_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 180 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_15_1__, 3912441077 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_15_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_14_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_16_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_16_1___initialShadingGroup_0 ) DX3DVERT( 1.82844, 0.354046, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.05469, 0.15625, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.25, 0.379688, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.82844, 3.54983, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.82844, 3.17245, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.12813, 3.41406, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.595939, 2.48646, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.595942, 2.27176, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.907773, 2.48646, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.2122, 3.07059, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.21006, 3.069, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 1.21219, 3.06901, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.441873, 2.16045, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.488252, 2.19524, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.441876, 2.19518, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.595859, 2.63059, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.387173, 2.48595, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.287814, 2.04955, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.287814, 2.19518, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.0365826, 2.19518, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.287819, 2.41599, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.287814, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.340163, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.318737, 1.98125, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.334818, 2.04955, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.21219, 2.7036, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.69665, 3.06901, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.21219, 0.864586, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.2122, 1.23993, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.10625, 1.32137, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.595928, 1.69499, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.595939, 1.61263, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.287823, 1.55308, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.595951, 1.33198, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.209099, 1.6125, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.287814, 1.61263, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.287814, 1.75827, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.0489047, 1.75827, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.133749, 1.67303, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.133751, 1.75827, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.133751, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.3688, 0.738804, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.82844, 0.738804, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.82844, 0.742146, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.83242, 0.738804, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.95313, 3.65156, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( -0.0203198, 1.98125, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( -0.0142835, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.610634, 1.32137, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.80313, 2.04844, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 3.06094, 2.17656, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.88919, 2.48646, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.44469, 2.77512, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.39844, 2.75, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.44469, 2.67343, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.65156, 2.8875, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.55587, 2.48646, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.21875, 1.89688, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.23317, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.215, 1.90391, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.44469, 2.00705, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.47188, 2.02031, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.44469, 2.0718, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.82844, 2.5902, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.82031, 2.58594, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.82844, 2.57254, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.21304, 2.48646, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.88047, 2.48646, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.07344, 2.71875, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_16_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_16_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 69 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_16_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_16_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_16_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 6, // 5 17 17, 18, 19, // 6 20 20, 19, 18, // 7 23 7, 6, 16, // 8 26 21, 22, 23, // 9 29 18, 17, 24, // 10 32 15, 8, 25, // 11 35 11, 25, 26, // 12 38 9, 11, 26, // 13 41 27, 28, 29, // 14 44 29, 30, 31, // 15 47 32, 33, 31, // 16 50 34, 32, 35, // 17 53 34, 35, 36, // 18 56 37, 38, 39, // 19 59 37, 39, 40, // 20 62 40, 39, 36, // 21 65 30, 22, 36, // 22 68 41, 0, 42, // 23 71 41, 42, 43, // 24 74 44, 43, 42, // 25 77 44, 42, 0, // 26 80 0, 2, 44, // 27 83 5, 45, 3, // 28 86 46, 47, 40, // 29 89 40, 21, 17, // 30 92 17, 19, 40, // 31 95 40, 19, 46, // 32 98 20, 18, 14, // 33 101 16, 14, 13, // 34 104 13, 7, 16, // 35 107 14, 16, 20, // 36 110 23, 24, 17, // 37 113 17, 21, 23, // 38 116 12, 14, 18, // 39 119 18, 24, 12, // 40 122 15, 6, 8, // 41 125 25, 11, 10, // 42 128 25, 10, 15, // 43 131 26, 4, 3, // 44 134 3, 9, 26, // 45 137 29, 48, 27, // 46 140 31, 33, 48, // 47 143 48, 29, 31, // 48 146 31, 35, 32, // 49 149 36, 39, 38, // 50 152 36, 38, 34, // 51 155 40, 47, 37, // 52 158 36, 21, 40, // 53 161 22, 21, 36, // 54 164 35, 31, 30, // 55 167 30, 36, 35, // 56 170 28, 27, 41, // 57 173 43, 28, 41, // 58 176 49, 50, 51, // 59 179 52, 53, 54, // 60 182 55, 52, 54, // 61 185 51, 56, 49, // 62 188 56, 51, 55, // 63 191 54, 56, 55, // 64 194 57, 58, 59, // 65 197 60, 61, 62, // 66 200 63, 64, 65, // 67 203 66, 67, 59, // 68 206 68, 63, 65, // 69 209 59, 58, 60, // 70 212 59, 60, 62, // 71 215 62, 66, 59, // 72 218 67, 66, 68, // 73 221 65, 67, 68, // 74 224 DX3DINDEX_END #endif #else #define index_Trim_Char_x_16_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_16_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_16_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_16_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_16_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_16_1__ ) DX3DMODEL_START( model_Trim_Char_x_16_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_16_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_16_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 225 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_16_1__, 3914526213 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_16_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_15_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_17_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_17_1___initialShadingGroup_0 ) DX3DVERT( 2.63672, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 3.17813, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.63672, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.0125, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.55391, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.0125, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.55391, 0.340073, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.48125, 0.320313, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.39219, 0.578125, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.93125, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.93125, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 2.5142, 1.38489, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 2.23559, 1.38494, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 2.2581, 1.9211, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 2.00752, 0.848701, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 2.09531, 0.946983, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 2.09531, 0.848701, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 2.09529, 0.568291, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.55391, 0.624657, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 2.35913, 0.848625, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 2.09531, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 1.55391, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 2.5431, 2.18112, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 2.5422, 1.92109, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 2.25855, 2.09148, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 2.25781, 2.99349, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 2.25781, 3.52969, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 2.54219, 3.52969, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 2.25781, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 2.54219, 2.99349, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 3.17813, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 2.09531, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 2.25785, 2.45729, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 2.54226, 2.45729, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 2.54219, 2.77344, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 2.54219, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 2.25781, 2.51563, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 0.317995, 2.99349, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 0.017159, 2.99349, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.123438, 3.49532, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.229688, 1.90391, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 0.249119, 1.3849, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( -0.0509304, 1.3849, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 0.3123, 0.848701, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 0.417188, 0.351563, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 0.123438, 0.3125, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 0.0115664, 0.848701, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 0.229709, 1.9211, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( -0.0702909, 1.9211, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( -0.0482577, 2.45729, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 0.251805, 2.45729, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 0.417188, 3.45625, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( -0.070312, 1.90391, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_17_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_17_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 53 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_17_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_17_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_17_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 3, 10, // 3 11 11, 12, 13, // 4 14 14, 15, 16, // 5 17 17, 6, 18, // 6 20 19, 17, 16, // 7 23 19, 16, 15, // 8 26 4, 20, 21, // 9 29 22, 23, 24, // 10 32 25, 26, 27, // 11 35 28, 25, 29, // 12 38 1, 30, 2, // 13 41 4, 21, 5, // 14 44 8, 18, 6, // 15 47 3, 5, 10, // 16 50 13, 23, 11, // 17 53 14, 16, 17, // 18 56 17, 18, 14, // 19 59 12, 11, 19, // 20 62 15, 12, 19, // 21 65 20, 31, 21, // 22 68 23, 13, 24, // 23 71 32, 33, 22, // 24 74 22, 24, 32, // 25 77 27, 29, 25, // 26 80 34, 0, 35, // 27 83 31, 20, 28, // 28 86 32, 36, 34, // 29 89 34, 36, 28, // 30 92 29, 34, 28, // 31 95 28, 36, 31, // 32 98 35, 33, 32, // 33 101 0, 2, 35, // 34 104 32, 34, 35, // 35 107 37, 38, 39, // 36 110 40, 41, 42, // 37 113 43, 44, 45, // 38 116 41, 43, 46, // 39 119 47, 48, 49, // 40 122 50, 49, 38, // 41 125 39, 51, 37, // 42 128 48, 47, 40, // 43 131 52, 48, 40, // 44 134 40, 42, 52, // 45 137 45, 46, 43, // 46 140 46, 42, 41, // 47 143 49, 50, 47, // 48 146 38, 37, 50, // 49 149 DX3DINDEX_END #endif #else #define index_Trim_Char_x_17_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_17_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_17_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_17_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_17_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_17_1__ ) DX3DMODEL_START( model_Trim_Char_x_17_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_17_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_17_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 150 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_17_1__, 3916611349 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_17_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_16_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_18_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_18_1___initialShadingGroup_0 ) DX3DVERT( 2.21358, 0.936394, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.31968, 1.45936, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.21354, 1.45937, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.62969, 0.569916, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.62943, 0.697632, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.18438, 0.539055, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.04583, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.62969, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.04583, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.853126, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.853126, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.853126, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.04583, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.62969, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.7974, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 3.1, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.7974, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.04755, 2.05838, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 2.04755, 2.05234, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 2.21354, 2.05234, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 2.04688, 3.49062, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 2.04688, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.21354, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.04688, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.21354, 3.49062, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.33594, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.33686, 2.05234, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.33683, 2.13766, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.33594, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.7974, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 3.1, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.92152, 0.552521, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.94476, 0.570076, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.92162, 0.569916, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.0315, 1.45937, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.85858, 0.866402, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.92162, 0.866402, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.62969, 0.396057, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.18283, 0.866333, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.275, 0.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.62969, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.04688, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.33594, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.21354, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.33594, 3.49062, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 3.1, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.250819, 0.866402, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( -0.0482047, 0.866402, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.0734386, 0.273438, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.17761, 2.05234, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.220862, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( -0.0773101, 2.64531, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.321993, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 0.365626, 3.41718, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.0734386, 3.45625, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 0.0209304, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 0.175001, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( -0.119339, 2.05234, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( -0.121874, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.18724, 1.45937, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( -0.109981, 1.45937, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 0.365626, 0.312492, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 3.36762, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 3.11358, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 3.15469, 3.13593, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.11094, 3.83125, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.88594, 3.74844, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 3.38125, 3.20312, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.7974, 3.1104, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.90469, 3.14062, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.86546, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.7974, 3.40016, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.7974, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.63906, 3.75312, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.42188, 3.675, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.61808, 3.23827, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.68281, 3.07813, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_18_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_18_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 77 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_18_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_18_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_18_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 6, 10, // 3 11 11, 10, 8, // 4 14 12, 8, 13, // 5 17 14, 15, 16, // 6 20 17, 18, 19, // 7 23 20, 21, 22, // 8 26 22, 21, 23, // 9 29 24, 22, 25, // 10 32 19, 26, 27, // 11 35 28, 25, 22, // 12 38 29, 16, 30, // 13 41 31, 32, 33, // 14 44 18, 34, 2, // 15 47 34, 35, 36, // 16 50 3, 37, 31, // 17 53 4, 3, 33, // 18 56 32, 38, 36, // 19 59 1, 26, 19, // 20 62 5, 39, 37, // 21 65 37, 3, 5, // 22 68 7, 13, 8, // 23 71 6, 8, 10, // 24 74 8, 12, 11, // 25 77 13, 40, 12, // 26 80 15, 30, 16, // 27 83 13, 7, 41, // 28 86 41, 42, 43, // 29 89 19, 41, 17, // 30 92 41, 23, 13, // 31 95 22, 24, 20, // 32 98 23, 40, 13, // 33 101 23, 41, 43, // 34 104 23, 43, 22, // 35 107 25, 44, 24, // 36 110 42, 14, 16, // 37 113 42, 41, 19, // 38 116 27, 42, 19, // 39 119 42, 28, 43, // 40 122 16, 29, 28, // 41 125 28, 42, 16, // 42 128 22, 43, 28, // 43 131 30, 45, 29, // 44 134 2, 19, 18, // 45 137 36, 38, 0, // 46 140 0, 2, 34, // 47 143 34, 36, 0, // 48 146 31, 33, 3, // 49 149 33, 36, 35, // 50 152 35, 4, 33, // 51 155 36, 33, 32, // 52 158 19, 2, 1, // 53 161 46, 47, 48, // 54 164 49, 50, 51, // 55 167 52, 53, 54, // 56 170 50, 52, 55, // 57 173 56, 57, 58, // 58 176 59, 60, 47, // 59 179 48, 61, 46, // 60 182 51, 57, 49, // 61 185 54, 55, 52, // 62 188 55, 51, 50, // 63 191 56, 49, 57, // 64 194 60, 59, 56, // 65 197 58, 60, 56, // 66 200 47, 46, 59, // 67 203 62, 63, 64, // 68 206 65, 66, 63, // 69 209 64, 67, 62, // 70 212 63, 62, 65, // 71 215 68, 69, 70, // 72 218 70, 71, 72, // 73 221 71, 73, 74, // 74 224 68, 72, 75, // 75 227 70, 72, 68, // 76 230 75, 72, 71, // 77 233 71, 74, 75, // 78 236 75, 76, 68, // 79 239 DX3DINDEX_END #endif #else #define index_Trim_Char_x_18_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_18_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_18_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_18_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_18_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_18_1__ ) DX3DMODEL_START( model_Trim_Char_x_18_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_18_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_18_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 240 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_18_1__, 3918696485 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_18_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_17_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_19_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_19_1___initialShadingGroup_0 ) DX3DVERT( 2.25991, 0.70797, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.2599, 0.429298, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.82344, 0.539063, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.709653, 1.86165, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.787501, 1.93906, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.70977, 2.00124, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.568751, 2.11406, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.301488, 1.82675, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.13283, 0.661621, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.709768, 0.759064, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.70977, 0.614319, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.335511, 1.34137, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.675871, 1.82673, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.37096, 0.614212, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.709769, 0.467857, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.520642, 0.856781, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.357568, 1.02711, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.357761, 0.856766, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.011693, 1.09915, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.105487, 0.856941, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.310506, 1.2087, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.0271039, 1.34157, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.357683, 0.622368, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.47411, 0.643738, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.13283, 0.387924, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.69636, 0.64994, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.69636, 0.377159, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.76094, 0.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.326709, 1.09898, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.0057086, 1.18444, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.47634, 0.371826, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.2599, 3.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.2599, 3.01563, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.58125, 3.01563, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.56929, 3.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.56929, 3.01563, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.13283, 3.01563, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.357813, 3.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.357813, 3.01563, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.13283, 3.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.69636, 3.01563, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.69636, 3.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.58125, 3.28125, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_19_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_19_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 43 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_19_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_19_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_19_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 5, 6, 7, // 2 8 8, 9, 10, // 3 11 11, 12, 7, // 4 14 13, 14, 10, // 5 17 15, 16, 17, // 6 20 18, 19, 17, // 7 23 20, 11, 21, // 8 26 17, 19, 22, // 9 29 15, 17, 13, // 10 32 23, 8, 24, // 11 35 25, 26, 1, // 12 38 2, 27, 0, // 13 41 7, 12, 5, // 14 44 3, 5, 12, // 15 47 14, 24, 8, // 16 50 10, 14, 8, // 17 53 7, 21, 11, // 18 56 16, 28, 18, // 19 59 18, 17, 16, // 20 62 18, 28, 20, // 21 65 21, 29, 20, // 22 68 20, 29, 18, // 23 71 17, 22, 13, // 24 74 13, 10, 9, // 25 77 9, 15, 13, // 26 80 26, 25, 23, // 27 83 30, 26, 23, // 28 86 24, 30, 23, // 29 89 1, 0, 25, // 30 92 31, 32, 33, // 31 95 34, 35, 36, // 32 98 37, 38, 35, // 33 101 39, 36, 40, // 34 104 41, 40, 32, // 35 107 33, 42, 31, // 36 110 36, 39, 34, // 37 113 35, 34, 37, // 38 116 40, 41, 39, // 39 119 32, 31, 41, // 40 122 DX3DINDEX_END #endif #else #define index_Trim_Char_x_19_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_19_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_19_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_19_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_19_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_19_1__ ) DX3DMODEL_START( model_Trim_Char_x_19_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_19_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_19_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 123 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_19_1__, 3920781621 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_19_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_18_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_20_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_20_1___initialShadingGroup_0 ) DX3DVERT( 2.61969, 0.785057, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.61965, 0.497719, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.78438, 0.539063, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.43618, 0.643745, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.02884, 0.669968, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.02883, 0.395264, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.248904, 0.670525, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.498586, 0.529724, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.498547, 0.670616, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.498282, 1.67081, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.498535, 2.08351, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.0835873, 1.5668, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.271445, 1.2087, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.0317872, 1.18446, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.00881602, 0.96933, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.233401, 0.969368, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.233349, 0.682358, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.357353, 0.96949, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.748438, 1.93906, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.529688, 2.11406, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.498547, 0.845566, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.55913, 0.645737, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.55913, 0.373489, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.08943, 0.412949, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.08946, 0.689911, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.72188, 0.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.43837, 0.371826, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.419031, 1.56684, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.08942, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.08942, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.54219, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.02884, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.02884, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.55913, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.31875, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.31875, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.498547, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.498547, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.55913, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.54219, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.9125, 2.09062, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 3.06196, 2.16437, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.8724, 2.16437, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.83811, 2.76187, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.61971, 2.60626, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.59444, 2.76187, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.54219, 2.73438, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.61971, 2.77518, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.61971, 2.76187, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.77969, 2.85938, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 3.15, 2.20781, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.35469, 1.95469, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.58906, 2.06718, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.53747, 2.16437, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.22656, 2.71094, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.08942, 2.6368, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.99531, 2.58594, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.08942, 2.4305, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.24129, 2.16437, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_20_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_20_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 59 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_20_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_20_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_20_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 14, 16, // 5 17 17, 15, 16, // 6 20 18, 19, 10, // 7 23 4, 20, 8, // 8 26 21, 22, 23, // 9 29 24, 23, 1, // 10 32 2, 25, 0, // 11 35 22, 21, 3, // 12 38 26, 22, 3, // 13 41 3, 5, 26, // 14 44 11, 27, 9, // 15 47 12, 27, 11, // 16 50 15, 17, 12, // 17 53 12, 14, 15, // 18 56 11, 13, 12, // 19 59 16, 6, 8, // 20 62 16, 8, 20, // 21 65 16, 20, 17, // 22 68 10, 9, 18, // 23 71 7, 5, 4, // 24 74 8, 7, 4, // 25 77 23, 24, 21, // 26 80 1, 0, 24, // 27 83 28, 29, 30, // 28 86 31, 32, 33, // 29 89 34, 35, 36, // 30 92 37, 36, 32, // 31 95 38, 33, 29, // 32 98 30, 39, 28, // 33 101 33, 38, 31, // 34 104 36, 37, 34, // 35 107 32, 31, 37, // 36 110 29, 28, 38, // 37 113 40, 41, 42, // 38 116 43, 44, 42, // 39 119 45, 46, 44, // 40 122 47, 45, 48, // 41 125 43, 49, 47, // 42 128 43, 48, 44, // 43 131 41, 50, 43, // 44 134 43, 42, 41, // 45 137 44, 48, 45, // 46 140 47, 48, 43, // 47 143 51, 52, 53, // 48 146 53, 54, 55, // 49 149 55, 56, 57, // 50 152 53, 58, 51, // 51 155 57, 58, 53, // 52 158 55, 57, 53, // 53 161 DX3DINDEX_END #endif #else #define index_Trim_Char_x_20_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_20_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_20_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_20_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_20_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_20_1__ ) DX3DMODEL_START( model_Trim_Char_x_20_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_20_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_20_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 162 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_20_1__, 3981250565 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_20_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_19_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_21_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_21_1___initialShadingGroup_0 ) DX3DVERT( 2.53438, 0.434372, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.4875, 0.695313, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.38531, 0.676994, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.38531, 2.83245, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 3.00625, 2.85938, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.99646, 3.0638, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.14344, 2.12514, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.523992, 1.97569, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.832969, 1.97578, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.0984375, 3.04219, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.0984375, 2.78125, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.5225, 2.78498, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.14344, 2.79553, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.14344, 3.05464, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.5225, 3.04517, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.22813, 2.12649, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.14344, 1.97578, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.76438, 3.59727, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.67188, 3.59219, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.73125, 3.07031, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.76438, 2.81198, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.51701, 3.0638, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.99375, 3.12032, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.38531, 3.09192, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.95625, 3.60781, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.76438, 3.0638, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.08349, 1.97578, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.38021, 1.97578, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.14407, 2.51979, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.0625, 2.82031, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.38531, 3.0638, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.832943, 0.436295, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.14345, 0.37014, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.14344, 0.615753, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.832972, 1.808, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.14344, 1.86314, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.522472, 1.60054, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.5225, 1.70377, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.228336, 1.70375, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.212149, 1.6759, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.131743, 1.43179, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.212031, 1.43177, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.522547, 1.9749, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.628008, 1.70397, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.226107, 0.888237, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.522516, 0.572021, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.5225, 0.615753, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.5225, 0.887764, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.522629, 0.948517, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.570995, 0.887939, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.832969, 0.615753, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.14333, 0.633392, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.832815, 0.71505, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.56761, 0.604446, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.25073, 1.86663, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.38531, 1.59826, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.55, 1.69688, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.38531, 1.96648, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.10469, 1.92344, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.38527, 0.4077, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.76439, 0.608894, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.98652, 1.97578, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.76438, 2.05234, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.76438, 1.97578, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.01563, 3.07813, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.85889, 2.51979, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.78125, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 0.44161, 1.43175, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 0.4243, 1.28604, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 0.12262, 1.30782, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.76439, 0.346802, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.56719, 0.343285, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.76436, 1.79419, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.10938, 1.92812, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.28906, 1.54063, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_21_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_21_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 75 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_21_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_21_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_21_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 6, 16, // 5 17 17, 18, 19, // 6 20 20, 19, 21, // 7 23 5, 22, 23, // 8 26 24, 17, 25, // 9 29 26, 27, 28, // 10 32 29, 3, 30, // 11 35 31, 32, 33, // 12 38 8, 34, 35, // 13 41 36, 37, 38, // 14 44 39, 40, 41, // 15 47 42, 38, 37, // 16 50 37, 36, 43, // 17 53 7, 37, 43, // 18 56 44, 45, 46, // 19 59 44, 47, 48, // 20 62 49, 48, 47, // 21 65 45, 31, 50, // 22 68 49, 47, 46, // 23 71 51, 52, 50, // 24 74 53, 51, 33, // 25 77 16, 35, 54, // 26 80 55, 56, 57, // 27 83 55, 57, 58, // 28 86 59, 2, 60, // 29 89 61, 62, 63, // 30 92 2, 59, 0, // 31 95 5, 30, 3, // 32 98 8, 16, 6, // 33 101 11, 14, 9, // 34 104 14, 11, 12, // 35 107 16, 63, 62, // 36 110 16, 62, 15, // 37 113 19, 20, 25, // 38 116 25, 17, 19, // 39 119 21, 13, 12, // 40 122 21, 12, 20, // 41 125 23, 30, 5, // 42 128 30, 23, 64, // 43 131 64, 29, 30, // 44 134 25, 64, 24, // 45 137 28, 65, 26, // 46 140 65, 28, 29, // 47 143 25, 20, 66, // 48 146 25, 66, 29, // 49 149 29, 64, 25, // 50 152 29, 66, 65, // 51 155 33, 50, 31, // 52 158 35, 16, 8, // 53 161 38, 39, 41, // 54 164 38, 41, 67, // 55 167 38, 67, 36, // 56 170 7, 42, 37, // 57 173 34, 8, 7, // 58 176 43, 34, 7, // 59 179 46, 47, 44, // 60 182 68, 67, 41, // 61 185 69, 41, 40, // 62 188 68, 69, 44, // 63 191 48, 68, 44, // 64 194 41, 69, 68, // 65 197 50, 46, 45, // 66 200 46, 50, 52, // 67 203 46, 52, 49, // 68 206 50, 33, 51, // 69 209 70, 60, 53, // 70 212 32, 71, 53, // 71 215 53, 33, 32, // 72 218 53, 71, 70, // 73 221 54, 72, 63, // 74 224 54, 63, 16, // 75 227 27, 26, 73, // 76 230 61, 63, 72, // 77 233 58, 72, 74, // 78 236 58, 74, 55, // 79 239 72, 58, 61, // 80 242 73, 58, 57, // 81 245 57, 27, 73, // 82 248 60, 70, 59, // 83 251 DX3DINDEX_END #endif #else #define index_Trim_Char_x_21_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_21_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_21_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_21_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_21_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_21_1__ ) DX3DMODEL_START( model_Trim_Char_x_21_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_21_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_21_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 252 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_21_1__, 3983335701 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_21_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_20_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_22_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_22_1___initialShadingGroup_0 ) DX3DVERT( 2.49531, 0.395317, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.44844, 0.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.19478, 0.614395, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.52855, 0.565384, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.02848, 0.607689, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.02865, 0.597916, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.18906, 2.08743, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.02865, 2.08202, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.02865, 2.06406, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.137499, 2.92657, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.137499, 2.66406, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.445574, 2.66733, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.871154, 2.06396, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.02865, 2.67656, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.02865, 2.93677, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.445574, 2.92902, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.61172, 2.69098, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.61172, 2.95042, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.165401, 0.891533, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.445599, 0.559525, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.445574, 0.597916, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.15428, 1.59988, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.154037, 1.47761, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.445552, 1.50322, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.110015, 1.47753, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.445542, 1.9138, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.269991, 1.77094, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.445574, 1.77084, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.445606, 0.974449, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.385239, 1.24698, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.21167, 1.82757, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.73711, 1.77084, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.737044, 1.74791, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.799634, 1.77081, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.737119, 2.03586, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.737067, 0.416267, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.02868, 0.343246, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.496616, 0.891266, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.445574, 0.891144, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.73711, 0.597916, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.737034, 0.701187, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.96719, 2.74219, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.95469, 3.00313, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.77787, 2.99437, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.97937, 2.06406, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.19479, 2.06406, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.19479, 2.24221, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.91875, 3.56876, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.63281, 3.55313, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.66261, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.94847, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.70313, 2.95313, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.27559, 2.06406, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.77787, 2.73269, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.19479, 2.96829, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.19471, 0.346825, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.61173, 0.566116, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.06563, 1.88438, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.61172, 2.04175, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.61182, 1.7844, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.25, 1.50156, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.51094, 1.65781, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.61173, 0.304703, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.52812, 0.30423, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.4928, 2.06406, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 0.4326, 1.4776, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 0.0835577, 1.26875, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.02865, 1.8177, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.05574, 2.65052, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.76892, 2.65052, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.04219, 2.70313, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.19479, 2.70879, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.75781, 2.69531, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.9875, 2.96094, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.07031, 1.88907, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.19477, 1.53899, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 3.13906, 3.12032, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 3.36094, 3.22969, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 3.35711, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 3.02188, 3.82344, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.80313, 3.70937, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 3.07631, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.77787, 3.15411, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.81875, 3.175, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.78617, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.77787, 3.25263, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.77787, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.49063, 3.75626, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.27656, 3.64375, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.51294, 3.23698, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.60469, 3.06563, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_22_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_22_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 91 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_22_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_22_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_22_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 8, 7, 12, // 4 14 13, 14, 15, // 5 17 16, 17, 14, // 6 20 18, 19, 20, // 7 23 21, 22, 23, // 8 26 21, 24, 22, // 9 29 25, 26, 27, // 10 32 18, 28, 29, // 11 35 30, 6, 8, // 12 38 31, 32, 33, // 13 41 27, 23, 32, // 14 44 25, 27, 31, // 15 47 12, 34, 33, // 16 50 35, 36, 5, // 17 53 37, 28, 38, // 18 56 19, 35, 39, // 19 59 37, 38, 20, // 20 62 4, 40, 39, // 21 65 41, 42, 43, // 22 68 44, 45, 46, // 23 71 47, 48, 49, // 24 74 50, 49, 51, // 25 77 45, 52, 46, // 26 80 53, 43, 54, // 27 83 55, 2, 56, // 28 86 57, 58, 59, // 29 89 60, 61, 52, // 30 92 2, 55, 0, // 31 95 62, 56, 3, // 32 98 36, 63, 3, // 33 101 3, 5, 36, // 34 104 3, 63, 62, // 35 107 6, 30, 64, // 36 110 11, 15, 9, // 37 113 15, 11, 13, // 38 116 14, 13, 16, // 39 119 20, 38, 18, // 40 122 22, 65, 23, // 41 125 23, 27, 26, // 42 128 23, 26, 21, // 43 131 29, 65, 22, // 44 134 18, 38, 28, // 45 137 66, 22, 24, // 46 140 29, 66, 18, // 47 143 22, 66, 29, // 48 146 8, 67, 30, // 49 149 59, 58, 64, // 50 152 64, 30, 59, // 51 155 32, 31, 27, // 52 158 31, 34, 25, // 53 161 34, 31, 33, // 54 164 33, 67, 8, // 55 167 33, 8, 12, // 56 170 5, 39, 35, // 57 173 39, 20, 19, // 58 176 20, 39, 40, // 59 179 20, 40, 37, // 60 182 39, 5, 4, // 61 185 43, 53, 41, // 62 188 68, 69, 44, // 63 191 46, 68, 44, // 64 194 49, 50, 47, // 65 197 70, 71, 54, // 66 200 51, 17, 16, // 67 203 51, 72, 73, // 68 206 73, 72, 69, // 69 209 51, 73, 50, // 70 212 16, 72, 51, // 71 215 69, 68, 70, // 72 218 54, 73, 70, // 73 221 70, 73, 69, // 74 224 54, 71, 53, // 75 227 56, 62, 55, // 76 230 45, 44, 74, // 77 233 59, 75, 57, // 78 236 74, 57, 75, // 79 239 75, 45, 74, // 80 242 52, 45, 75, // 81 245 52, 75, 60, // 82 248 76, 77, 78, // 83 251 79, 80, 81, // 84 254 78, 81, 76, // 85 257 81, 78, 79, // 86 260 82, 83, 84, // 87 263 84, 85, 86, // 88 266 87, 88, 89, // 89 269 82, 86, 89, // 90 272 84, 86, 82, // 91 275 89, 86, 85, // 92 278 85, 87, 89, // 93 281 89, 90, 82, // 94 284 DX3DINDEX_END #endif #else #define index_Trim_Char_x_22_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_22_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_22_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_22_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_22_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_22_1__ ) DX3DMODEL_START( model_Trim_Char_x_22_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_22_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_22_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 285 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_22_1__, 3985420837 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_22_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_21_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_23_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_23_1___initialShadingGroup_0 ) DX3DVERT( 2.44793, 0.769623, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.50295, 0.830727, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.44782, 0.830795, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.315272, 2.44357, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.308189, 1.90598, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.611346, 1.90598, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.350001, 3.51875, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.32965, 2.98116, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.636426, 2.98116, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.620017, 2.44357, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.11023, 0.313339, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 1.37785, 0.293205, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.37785, 0.562004, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.322417, 1.36838, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.625791, 1.36836, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.611044, 1.77554, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.584083, 0.562248, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.842852, 0.385826, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.842859, 0.562004, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.575365, 0.830795, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.776291, 0.830795, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.42817, 0.83075, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.575713, 0.571724, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.11035, 0.562004, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.11035, 0.604713, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.842862, 0.749603, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.37785, 0.578331, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.38902, 0.578331, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.84822, 1.36842, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.98281, 1.68594, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.71406, 1.79062, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.08213, 0.83062, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.44777, 1.25019, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.51864, 1.36848, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.657813, 3.50625, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.307757, 1.78876, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.91288, 0.392349, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.91287, 0.71479, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.38389, 0.293205, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_23_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_23_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 39 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_23_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_23_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_23_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 7, 3, 9, // 3 11 10, 11, 12, // 4 14 13, 14, 15, // 5 17 16, 17, 18, // 6 20 19, 20, 14, // 7 23 21, 22, 19, // 8 26 20, 19, 22, // 9 29 17, 10, 23, // 10 32 24, 25, 18, // 11 35 26, 24, 23, // 12 38 27, 26, 12, // 13 41 28, 29, 30, // 14 44 0, 2, 31, // 15 47 2, 32, 31, // 16 50 28, 33, 32, // 17 53 5, 9, 3, // 18 56 8, 34, 6, // 19 59 9, 8, 7, // 20 62 12, 23, 10, // 21 65 5, 4, 35, // 22 68 15, 5, 35, // 23 71 35, 13, 15, // 24 74 14, 13, 21, // 25 77 14, 21, 19, // 26 80 22, 16, 18, // 27 83 22, 18, 25, // 28 86 25, 20, 22, // 29 89 23, 18, 17, // 30 92 18, 23, 24, // 31 95 23, 12, 26, // 32 98 36, 37, 27, // 33 101 12, 11, 38, // 34 104 38, 27, 12, // 35 107 27, 38, 36, // 36 110 30, 33, 28, // 37 113 31, 37, 36, // 38 116 31, 36, 0, // 39 119 32, 2, 1, // 40 122 1, 28, 32, // 41 125 DX3DINDEX_END #endif #else #define index_Trim_Char_x_23_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_23_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_23_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_23_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_23_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_23_1__ ) DX3DMODEL_START( model_Trim_Char_x_23_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_23_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_23_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 126 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_23_1__, 3987505973 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_23_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_22_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_24_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_24_1___initialShadingGroup_0 ) DX3DVERT( 2.3578, 0.840431, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.35789, 0.771408, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.41977, 0.840378, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.522249, 1.93488, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.530073, 2.48211, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.223762, 2.48212, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.545416, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.564063, 3.50625, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.260938, 3.51875, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.241071, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.952471, 0.325333, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 1.15507, 0.297806, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.1551, 0.566818, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.52192, 1.78151, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.213813, 1.83761, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.486165, 0.567238, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.750056, 0.385712, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.749965, 0.566818, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.534846, 1.38764, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.227196, 1.38766, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.330458, 0.840218, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.481992, 0.840431, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.482478, 0.571419, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.678222, 0.840431, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.952532, 0.566818, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.952546, 0.62204, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.749969, 0.749817, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.1551, 0.584282, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.29527, 0.578331, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.62031, 1.79063, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.43561, 1.38775, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.7677, 1.38769, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.00016, 0.840233, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.82189, 0.716377, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.82187, 0.393387, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.35775, 1.25603, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.214373, 1.93488, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.29014, 0.293106, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.89375, 1.68594, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.55781, 2.73906, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.81563, 2.86719, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.72646, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.40625, 3.57656, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.3578, 3.5507, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.15156, 3.44062, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.3578, 3.09455, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.39554, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.97188, 2.58281, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.22656, 2.70781, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.04993, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.72205, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.82186, 2.85611, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.82186, 3.02934, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.82186, 3.40608, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.575, 3.27656, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.82813, 3.40937, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_24_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_24_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 56 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_24_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_24_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_24_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 4, 6, 9, // 3 11 10, 11, 12, // 4 14 13, 3, 14, // 5 17 15, 16, 17, // 6 20 18, 19, 20, // 7 23 21, 20, 22, // 8 26 23, 21, 22, // 9 29 16, 10, 24, // 10 32 25, 26, 17, // 11 35 27, 25, 24, // 12 38 28, 27, 12, // 13 41 29, 30, 31, // 14 44 32, 33, 34, // 15 47 35, 32, 0, // 16 50 35, 0, 2, // 17 53 5, 36, 3, // 18 56 8, 9, 6, // 19 59 9, 5, 4, // 20 62 12, 24, 10, // 21 65 3, 36, 14, // 22 68 14, 19, 18, // 23 71 14, 18, 13, // 24 74 21, 23, 18, // 25 77 18, 20, 21, // 26 80 22, 15, 17, // 27 83 22, 17, 26, // 28 86 26, 23, 22, // 29 89 24, 17, 16, // 30 92 17, 24, 25, // 31 95 24, 12, 27, // 32 98 34, 33, 28, // 33 101 11, 37, 28, // 34 104 12, 11, 28, // 35 107 28, 37, 34, // 36 110 31, 38, 29, // 37 113 1, 0, 32, // 38 116 32, 34, 1, // 39 119 31, 30, 35, // 40 122 2, 31, 35, // 41 125 39, 40, 41, // 42 128 41, 42, 43, // 43 131 43, 44, 45, // 44 134 41, 46, 39, // 45 137 45, 46, 41, // 46 140 43, 45, 41, // 47 143 47, 48, 49, // 48 146 50, 51, 52, // 49 149 53, 54, 50, // 50 152 49, 55, 53, // 51 155 49, 52, 51, // 52 158 51, 47, 49, // 53 161 50, 52, 53, // 54 164 53, 52, 49, // 55 167 DX3DINDEX_END #endif #else #define index_Trim_Char_x_24_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_24_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_24_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_24_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_24_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_24_1__ ) DX3DMODEL_START( model_Trim_Char_x_24_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_24_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_24_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 168 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_24_1__, 3989591109 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_24_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_23_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_25_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_25_1___initialShadingGroup_0 ) DX3DVERT( 2.56042, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 3.11563, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.56042, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 0.894793, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.45, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 0.894793, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.1724, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.1724, 1.4592, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.28594, 1.44844, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 1.45004, 0.447227, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.894794, 0.292023, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.894786, 0.570129, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.803125, 0.278122, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.759376, 0.549995, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.617189, 1.97422, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.781364, 1.97422, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.779688, 1.93125, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.894874, 1.26693, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.697012, 1.40881, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.894793, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.485804, 1.93125, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.486804, 1.97423, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.617185, 1.50284, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.521853, 1.69154, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.617189, 1.69154, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.894778, 1.6205, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( -0.215624, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.339584, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( -0.215624, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( -0.215624, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.339584, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 1.45, 2.53958, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 1.45, 2.38856, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.28594, 2.41093, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.799736, 2.53957, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 0.894793, 2.53958, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 0.894793, 2.2569, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 0.556194, 2.2569, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 0.617171, 2.35967, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.617189, 2.2569, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.894793, 2.59573, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.12047, 1.56025, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 2.00521, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 2.00521, 1.69154, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.79375, 1.93125, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.79207, 1.97422, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.00521, 1.97422, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.44998, 0.749603, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 1.58475, 0.84343, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 1.84294, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.00521, 1.12617, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 1.72761, 1.33415, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 1.45001, 1.20968, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 1.45, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 1.7276, 0.843491, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.72769, 1.00795, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 2.00523, 0.963013, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 1.94018, 0.843491, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 1.7276, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 1.45, 1.47108, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.84375, 1.45156, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 1.83594, 1.45156, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.11428, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 1.7625, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.7625, 3.67031, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.00521, 3.67031, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.7625, 2.49687, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.7625, 2.53958, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.00521, 2.53958, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 1.69704, 2.53959, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 1.72761, 2.51794, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 1.66504, 2.25692, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 1.7276, 2.2569, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 1.72763, 2.17641, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.00521, 2.2569, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 1.44999, 2.64822, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.04688, 2.04375, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.04688, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.04688, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 1.7625, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.00521, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 2.56042, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 3.11563, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 0.339584, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 0.894793, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.45, 3.10495, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 1.80352, 1.40885, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 1.24969, 1.18977, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 0.842812, 1.69153, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 0.925, 2.27344, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 0.894793, 2.24207, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 1.24433, 2.6721, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.0673, 1.97422, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 1.7313, 1.69153, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 1.78709, 1.12618, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 1.72761, 1.68537, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 1.75469, 2.49687, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 2.04688, 2.53958, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 2.04688, 3.67031, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 3.11563, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 1.45, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_25_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_25_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 101 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_25_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_25_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_25_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 10, 12, 13, // 4 14 14, 15, 16, // 5 17 17, 18, 19, // 6 20 20, 21, 14, // 7 23 22, 23, 24, // 8 26 22, 24, 25, // 9 29 17, 19, 6, // 10 32 19, 25, 7, // 11 35 26, 27, 28, // 12 38 29, 28, 30, // 13 41 31, 32, 33, // 14 44 34, 35, 36, // 15 47 37, 38, 39, // 16 50 14, 21, 37, // 17 53 15, 14, 39, // 18 56 27, 3, 30, // 19 59 40, 35, 34, // 20 62 31, 35, 40, // 21 65 41, 42, 43, // 22 68 44, 45, 46, // 23 71 9, 47, 48, // 24 74 49, 42, 50, // 25 77 51, 52, 53, // 26 80 54, 48, 55, // 27 83 56, 57, 55, // 28 86 58, 53, 59, // 29 89 60, 61, 43, // 30 92 62, 56, 50, // 31 95 63, 64, 65, // 32 98 66, 67, 68, // 33 101 69, 70, 71, // 34 104 72, 73, 71, // 35 107 74, 46, 45, // 36 110 75, 69, 31, // 37 113 76, 46, 74, // 38 116 77, 0, 2, // 39 119 78, 79, 80, // 40 122 81, 2, 82, // 41 125 83, 30, 5, // 42 128 84, 5, 85, // 43 131 86, 51, 58, // 44 134 79, 63, 80, // 45 137 1, 82, 2, // 46 140 4, 85, 5, // 47 143 8, 59, 53, // 48 146 8, 87, 6, // 49 149 11, 47, 9, // 50 152 13, 11, 10, // 51 155 16, 88, 24, // 52 158 16, 24, 14, // 53 161 14, 24, 23, // 54 164 14, 23, 20, // 55 167 24, 88, 25, // 56 170 25, 19, 18, // 57 173 18, 22, 25, // 58 176 53, 52, 87, // 59 179 87, 8, 53, // 60 182 6, 87, 17, // 61 185 7, 6, 19, // 62 188 27, 30, 28, // 63 191 30, 83, 29, // 64 194 89, 90, 36, // 65 197 33, 89, 35, // 66 200 33, 35, 31, // 67 203 36, 35, 89, // 68 206 36, 39, 38, // 69 209 36, 38, 34, // 70 212 37, 39, 14, // 71 215 39, 36, 90, // 72 218 90, 15, 39, // 73 221 3, 5, 30, // 74 224 91, 75, 31, // 75 227 40, 91, 31, // 76 230 41, 62, 42, // 77 233 43, 46, 92, // 78 236 92, 41, 43, // 79 239 43, 93, 44, // 80 242 46, 43, 44, // 81 245 54, 57, 9, // 82 248 48, 54, 9, // 83 251 50, 94, 49, // 84 254 53, 58, 51, // 85 257 57, 54, 55, // 86 260 94, 50, 56, // 87 263 55, 94, 56, // 88 266 59, 95, 58, // 89 269 95, 93, 43, // 90 272 42, 49, 60, // 91 275 60, 43, 42, // 92 278 61, 86, 58, // 93 281 61, 58, 95, // 94 284 43, 61, 95, // 95 287 50, 42, 62, // 96 290 85, 4, 63, // 97 293 63, 79, 85, // 98 296 63, 77, 80, // 99 299 72, 70, 96, // 100 302 68, 74, 66, // 101 305 66, 74, 72, // 102 308 72, 96, 66, // 103 311 70, 72, 71, // 104 314 32, 31, 69, // 105 317 71, 32, 69, // 106 320 73, 72, 74, // 107 323 74, 45, 73, // 108 326 76, 92, 46, // 109 329 74, 68, 97, // 110 332 97, 76, 74, // 111 335 65, 98, 77, // 112 338 77, 63, 65, // 113 341 2, 80, 77, // 114 344 78, 97, 68, // 115 347 2, 81, 78, // 116 350 78, 80, 2, // 117 353 82, 99, 81, // 118 356 5, 84, 83, // 119 359 85, 100, 84, // 120 362 79, 100, 85, // 121 365 68, 67, 79, // 122 368 79, 78, 68, // 123 371 DX3DINDEX_END #endif #else #define index_Trim_Char_x_25_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_25_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_25_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_25_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_25_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_25_1__ ) DX3DMODEL_START( model_Trim_Char_x_25_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_25_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_25_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 372 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_25_1__, 3991676245 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_25_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_24_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_26_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_26_1___initialShadingGroup_0 ) DX3DVERT( 1.5125, 0.617348, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 1.51229, 0.567535, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 1.84599, 0.956551, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.21406, 0.617348, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.915625, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.5125, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.915625, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( -0.278125, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.31875, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.278125, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.278125, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.31875, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.6172, 2.51997, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.617188, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.814892, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.31875, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.617188, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.43169, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.617188, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.915625, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.5125, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.51253, 2.253, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.5125, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.44475, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.617188, 1.635, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.725087, 1.63496, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.623436, 1.93125, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.388006, 1.635, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.617188, 1.97422, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.332113, 1.97423, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.625089, 1.97422, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.915633, 0.326233, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.915616, 0.606712, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.603125, 0.550003, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.685756, 1.29583, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.915632, 1.20712, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.915625, 1.29578, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.61713, 1.34244, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.915626, 1.48956, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.5125, 1.2927, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.5125, 1.29578, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.21406, 1.29578, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.09342, 1.18976, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.21409, 1.19679, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.13047, 1.44844, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.5125, 1.60818, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.21406, 1.45393, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.957082, 0.617363, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.21405, 0.708603, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.51263, 0.927628, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.70625, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 3.04844, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.70625, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.60625, 2.49688, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.89063, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.10938, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.10938, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.89063, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.10938, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.70625, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 3.04844, 2.99187, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.6375, 1.93125, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.89063, 2.04375, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.96422, 1.56025, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.96261, 1.635, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.5358, 1.635, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.08827, 2.6721, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 0.915625, 2.65266, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.13047, 2.41094, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 0.915634, 2.65517, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.903437, 2.6526, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.53581, 0.956474, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.2141, 0.414543, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 0.915625, 2.3706, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.5125, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 0.331117, 1.93125, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 0.767189, 2.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.646876, 0.27813, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.89063, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.59844, 2.49688, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.51251, 2.55806, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.60625, 2.91875, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.60625, 3.67031, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.60625, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.89063, 3.67031, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 3.04844, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 1.67969, 1.45156, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.6875, 1.45156, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 3.06094, 1.90781, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 3.30313, 2.025, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 3.14467, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.92813, 2.67969, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.70625, 2.55999, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.70625, 2.52589, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.69063, 2.55157, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.83271, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.70625, 1.87188, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.74063, 1.88906, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.70625, 1.95332, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.37813, 2.52812, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.14375, 2.40312, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.19868, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.50625, 1.77187, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 2.5051, 2.31344, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_26_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_26_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 104 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_26_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_26_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_26_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 1, 0, 3, // 1 5 4, 5, 6, // 2 8 7, 8, 9, // 3 11 10, 9, 11, // 4 14 12, 13, 14, // 5 17 15, 11, 16, // 6 20 13, 12, 17, // 7 23 8, 18, 11, // 8 26 18, 4, 16, // 9 29 19, 6, 20, // 10 32 21, 22, 23, // 11 35 24, 25, 26, // 12 38 27, 26, 28, // 13 41 17, 29, 28, // 14 44 13, 28, 30, // 15 47 31, 32, 33, // 16 50 34, 35, 36, // 17 53 27, 37, 24, // 18 56 34, 38, 25, // 19 59 39, 40, 41, // 20 62 42, 43, 41, // 21 65 44, 38, 36, // 22 68 40, 45, 46, // 23 71 47, 32, 31, // 24 74 48, 47, 3, // 25 77 0, 49, 48, // 26 80 50, 51, 52, // 27 83 53, 22, 54, // 28 86 55, 56, 57, // 29 89 58, 50, 55, // 30 92 56, 55, 52, // 31 95 59, 52, 60, // 32 98 21, 61, 62, // 33 101 63, 64, 65, // 34 104 66, 67, 68, // 35 107 67, 69, 70, // 36 110 2, 71, 49, // 37 113 49, 0, 2, // 38 116 3, 72, 1, // 39 119 5, 20, 6, // 40 122 8, 11, 9, // 41 125 11, 15, 10, // 42 128 73, 67, 70, // 43 131 73, 70, 12, // 44 134 12, 14, 73, // 45 137 16, 6, 19, // 46 140 16, 19, 15, // 47 143 18, 16, 11, // 48 146 4, 6, 16, // 49 149 20, 74, 19, // 50 152 26, 30, 28, // 51 155 26, 27, 24, // 52 158 28, 29, 75, // 53 161 75, 27, 28, // 54 164 28, 13, 17, // 55 167 76, 14, 13, // 56 170 30, 76, 13, // 57 173 33, 77, 31, // 58 176 34, 36, 38, // 59 179 25, 24, 37, // 60 182 25, 37, 34, // 61 185 41, 43, 39, // 62 188 41, 36, 35, // 63 191 41, 35, 42, // 64 194 41, 46, 44, // 65 197 44, 36, 41, // 66 200 46, 41, 40, // 67 203 72, 3, 47, // 68 206 31, 72, 47, // 69 209 48, 3, 0, // 70 212 51, 60, 52, // 71 215 78, 58, 55, // 72 218 79, 80, 22, // 73 221 54, 78, 81, // 74 224 54, 81, 53, // 75 227 22, 53, 79, // 76 230 20, 5, 81, // 77 233 20, 81, 78, // 78 236 78, 57, 20, // 79 239 82, 83, 57, // 80 242 83, 74, 20, // 81 245 57, 83, 20, // 82 248 57, 78, 55, // 83 251 57, 84, 82, // 84 254 50, 52, 55, // 85 257 52, 59, 56, // 86 260 60, 85, 59, // 87 263 61, 65, 64, // 88 266 54, 22, 21, // 89 269 21, 62, 54, // 90 272 64, 62, 61, // 91 275 40, 39, 86, // 92 278 87, 71, 2, // 93 281 65, 86, 87, // 94 284 87, 63, 65, // 95 287 2, 63, 87, // 96 290 86, 65, 45, // 97 293 86, 45, 40, // 98 296 67, 73, 68, // 99 299 23, 22, 80, // 100 302 68, 23, 80, // 101 305 80, 66, 68, // 102 308 67, 66, 69, // 103 311 88, 89, 90, // 104 314 91, 92, 93, // 105 317 92, 94, 93, // 106 320 90, 95, 88, // 107 323 95, 90, 91, // 108 326 93, 95, 91, // 109 329 96, 97, 98, // 110 332 99, 100, 101, // 111 335 102, 96, 98, // 112 338 101, 103, 99, // 113 341 103, 101, 102, // 114 344 98, 103, 102, // 115 347 DX3DINDEX_END #endif #else #define index_Trim_Char_x_26_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_26_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_26_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_26_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_26_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_26_1__ ) DX3DMODEL_START( model_Trim_Char_x_26_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_26_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_26_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 348 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_26_1__, 3993761381 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_26_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_25_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_27_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_27_1___initialShadingGroup_0 ) DX3DVERT( 2.74063, 0.421875, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.71406, 0.6875, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.5625, 0.665955, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.893621, 0.410652, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.44998, 0.344772, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.45, 0.611488, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.893751, 2.51907, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.33744, 2.52813, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.893751, 2.52813, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.218749, 2.52813, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.218749, 2.50781, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.337501, 2.51108, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.218749, 2.77032, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.337501, 2.52813, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.409375, 3.51406, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.409375, 3.07422, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.696876, 3.07422, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.696876, 2.51563, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.893751, 2.77689, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.696876, 2.77344, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.45, 2.53072, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.45, 2.78989, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.45, 1.80065, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.38438, 1.82188, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.30938, 1.56094, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.409375, 1.98203, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.409162, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.696321, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.615608, 0.549217, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.893751, 0.616798, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.615626, 0.889847, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.747299, 0.88974, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.696287, 1.37741, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.554461, 0.61673, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.615626, 0.616798, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 3.11875, 2.58594, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 3.10781, 2.84844, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.5625, 2.82307, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.00625, 2.5452, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.00625, 2.80595, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.22188, 3.62032, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.22188, 3.07422, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.50312, 3.07422, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.22188, 2.52813, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.22221, 1.98203, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.28438, 1.98203, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.50312, 2.82031, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.00625, 0.351051, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.00625, 0.617874, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.6163, 0.609138, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.00625, 1.57246, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.00624, 1.67632, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.00624, 1.39782, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.00625, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.77952, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.42344, 1.47845, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.47012, 1.5724, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.42344, 1.57246, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.14531, 1.57246, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.14531, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.28438, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.22207, 1.95277, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.08947, 1.67025, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.21484, 1.57246, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.28438, 1.57246, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.21484, 1.64072, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.18008, 1.67485, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.18008, 1.64072, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.14709, 1.67456, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.14536, 1.67426, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.14531, 1.64072, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.18008, 1.68441, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.21484, 1.67485, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.28438, 1.64072, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.28438, 1.70898, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.21484, 1.70898, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.42344, 1.70898, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.49571, 1.70889, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.50366, 1.92646, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.37292, 1.436, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.5625, 0.396156, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.1432, 1.3886, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 0.894062, 0.708809, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 0.337501, 2.77032, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 0.696876, 3.51406, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 0.409375, 2.5125, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 0.696876, 1.98203, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 0.409375, 2.77032, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.45003, 1.51347, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 0.408784, 1.3187, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 0.439151, 0.88987, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.5625, 2.56135, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.50312, 3.62032, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.50317, 1.98203, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.50312, 2.52813, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.22188, 2.55157, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.22188, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.50312, 2.55938, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 1.63583, 0.343674, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.21679, 1.77472, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.20563, 1.70898, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_27_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_27_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 101 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_27_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_27_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_27_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 9, 13, // 4 14 14, 15, 16, // 5 17 17, 6, 8, // 6 20 8, 18, 19, // 7 23 7, 20, 21, // 8 26 22, 23, 24, // 9 29 25, 26, 27, // 10 32 28, 3, 29, // 11 35 30, 31, 32, // 12 38 33, 28, 34, // 13 41 33, 34, 30, // 14 44 31, 30, 34, // 15 47 35, 36, 37, // 16 50 38, 39, 21, // 17 53 40, 41, 42, // 18 56 43, 44, 45, // 19 59 46, 42, 41, // 20 62 47, 48, 49, // 21 65 50, 51, 22, // 22 68 52, 53, 54, // 23 71 55, 56, 57, // 24 74 58, 59, 60, // 25 77 45, 44, 61, // 26 80 50, 53, 59, // 27 83 62, 51, 50, // 28 86 63, 64, 65, // 29 89 58, 63, 65, // 30 92 66, 67, 65, // 31 95 68, 69, 70, // 32 98 71, 68, 66, // 33 101 71, 66, 72, // 34 104 73, 74, 75, // 35 107 76, 77, 78, // 36 110 64, 60, 79, // 37 113 64, 57, 76, // 38 116 56, 77, 76, // 39 119 80, 2, 48, // 40 122 59, 52, 81, // 41 125 2, 80, 0, // 42 128 5, 82, 29, // 43 131 29, 3, 5, // 44 134 11, 13, 9, // 45 137 13, 83, 12, // 46 140 16, 84, 14, // 47 143 85, 25, 86, // 48 146 13, 11, 85, // 49 149 13, 85, 87, // 50 152 17, 87, 85, // 51 155 86, 17, 85, // 52 158 19, 16, 15, // 53 161 87, 83, 13, // 54 164 87, 17, 19, // 55 167 19, 17, 8, // 56 170 15, 87, 19, // 57 173 18, 8, 7, // 58 176 21, 18, 7, // 59 179 24, 88, 22, // 60 182 27, 86, 25, // 61 185 29, 34, 28, // 62 188 32, 27, 26, // 63 191 32, 89, 90, // 64 194 32, 90, 30, // 65 197 26, 89, 32, // 66 200 30, 90, 33, // 67 203 34, 29, 82, // 68 206 82, 31, 34, // 69 209 37, 91, 35, // 70 212 21, 20, 38, // 71 215 42, 92, 40, // 72 218 93, 94, 43, // 73 221 45, 93, 43, // 74 224 39, 38, 95, // 75 227 91, 37, 46, // 76 230 96, 94, 97, // 77 233 41, 96, 46, // 78 236 97, 46, 96, // 79 239 46, 97, 91, // 80 242 95, 43, 94, // 81 245 95, 96, 39, // 82 248 94, 96, 95, // 83 251 49, 5, 4, // 84 254 49, 4, 98, // 85 257 98, 47, 49, // 86 260 22, 88, 54, // 87 263 50, 54, 53, // 88 266 54, 50, 22, // 89 269 60, 64, 63, // 90 272 63, 58, 60, // 91 275 99, 100, 75, // 92 278 99, 74, 45, // 93 281 61, 99, 45, // 94 284 75, 74, 99, // 95 287 59, 58, 50, // 96 290 70, 69, 62, // 97 293 50, 58, 70, // 98 296 70, 62, 50, // 99 299 64, 73, 65, // 100 302 67, 70, 58, // 101 305 58, 65, 67, // 102 308 65, 72, 66, // 103 311 67, 66, 68, // 104 314 70, 67, 68, // 105 317 72, 75, 100, // 106 320 100, 71, 72, // 107 323 72, 65, 73, // 108 326 73, 75, 72, // 109 329 78, 93, 45, // 110 332 78, 74, 76, // 111 335 45, 74, 78, // 112 338 55, 57, 64, // 113 341 79, 55, 64, // 114 344 76, 74, 73, // 115 347 73, 64, 76, // 116 350 76, 57, 56, // 117 353 48, 47, 80, // 118 356 59, 53, 52, // 119 359 81, 79, 60, // 120 362 60, 59, 81, // 121 365 DX3DINDEX_END #endif #else #define index_Trim_Char_x_27_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_27_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_27_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_27_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_27_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_27_1__ ) DX3DMODEL_START( model_Trim_Char_x_27_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_27_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_27_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 366 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_27_1__, 3995846517 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_27_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_26_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_28_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_28_1___initialShadingGroup_0 ) DX3DVERT( 3.13906, 3.13593, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 3.37344, 3.21093, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 3.10781, 3.83437, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.87344, 3.75625, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.76432, 3.12147, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.78546, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 2.76432, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 2.63822, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 2.76432, 3.45033, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.62344, 3.77187, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.39844, 3.69062, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.88125, 3.15937, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.65469, 3.08594, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.63594, 0.382813, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.60781, 0.64843, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.15521, 0.595154, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.5253, 0.304131, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.54609, 0.570137, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.51198, 0.570068, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.54609, 2.46751, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.54609, 2.72752, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.93698, 2.71366, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.327865, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.307813, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.307813, 2.70781, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.307813, 3.475, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.592189, 2.70781, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.592189, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.327865, 3.475, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.31579, 1.01015, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.327723, 0.899902, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.327865, 1.01018, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.307813, 2.42227, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.307813, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.327865, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.307732, 1.2832, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.38436, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.2, 1.77187, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.18443, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.327865, 2.42227, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.592189, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.632399, 0.430901, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.936979, 0.337234, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.936957, 0.616066, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.591588, 1.32881, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.399319, 0.657501, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.632422, 0.65715, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.812406, 0.657707, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.784892, 0.671745, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.784701, 0.65715, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.648475, 0.833611, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.632422, 0.833664, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.632294, 0.878151, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.5461, 1.39607, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.54609, 1.67735, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 3.05313, 2.52031, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 3.04531, 2.78125, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.76432, 2.76742, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.15521, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.04219, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.04219, 2.74218, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.04219, 3.58125, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.32031, 2.74999, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.32031, 3.12832, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.15521, 3.58125, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.15521, 0.326775, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.15521, 2.42227, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.04219, 2.42227, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.04293, 1.90354, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.95914, 1.33892, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.13769, 1.36253, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.00293, 1.3632, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.71998, 1.3632, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.85065, 1.34483, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.85065, 1.3632, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.07907, 1.53971, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.00293, 1.53971, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.85065, 1.53971, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.91021, 1.61874, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.85065, 1.62209, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.07907, 1.62797, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.15521, 1.53971, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.041, 1.62797, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.07907, 1.6721, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.02193, 1.64926, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.02197, 1.62797, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.03709, 1.71619, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.0311, 1.6721, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.041, 1.6721, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.00295, 1.6332, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.00293, 1.62797, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.041, 1.65003, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.041, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.15521, 1.62797, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.15521, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.07907, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.30749, 1.71622, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.31756, 1.71617, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.32065, 1.88112, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.30842, 1.62277, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.23135, 1.41908, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.25598, 1.45161, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.23135, 1.45145, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 2.23135, 1.53971, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 2.15521, 1.45145, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 2.15541, 1.36909, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 2.29176, 1.53963, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 1.54609, 0.304153, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 0.93698, 2.45561, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( -0.28125, 2.70312, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( -0.28125, 2.44218, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 0.307813, 2.44687, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 0.592189, 2.42227, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 0.592189, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 0.592189, 3.475, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 0.6043, 1.01018, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 1.12656, 1.50937, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 2.76432, 2.50737, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 2.04219, 2.48125, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 2.32031, 2.42227, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 2.32031, 2.49219, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 2.32031, 3.58125, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_28_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_28_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 122 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_28_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_28_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_28_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 2, 3, 0, // 1 5 4, 5, 6, // 2 8 4, 6, 7, // 3 11 8, 9, 10, // 4 14 5, 11, 8, // 5 17 7, 12, 4, // 6 20 7, 6, 8, // 7 23 8, 10, 7, // 8 26 8, 6, 5, // 9 29 13, 14, 15, // 10 32 16, 17, 18, // 11 35 19, 20, 21, // 12 38 22, 23, 24, // 13 41 25, 23, 22, // 14 44 26, 27, 22, // 15 47 28, 22, 27, // 16 50 29, 30, 31, // 17 53 32, 33, 34, // 18 56 29, 31, 35, // 19 59 36, 37, 38, // 20 62 39, 34, 40, // 21 65 41, 42, 43, // 22 68 44, 40, 34, // 23 71 45, 41, 46, // 24 74 30, 45, 46, // 25 77 47, 48, 49, // 26 80 50, 51, 46, // 27 83 50, 52, 51, // 28 86 53, 54, 36, // 29 89 55, 56, 57, // 30 92 58, 59, 60, // 31 95 61, 59, 58, // 32 98 62, 63, 58, // 33 101 64, 58, 63, // 34 104 65, 15, 17, // 35 107 66, 67, 68, // 36 110 69, 70, 71, // 37 113 72, 73, 74, // 38 116 54, 53, 72, // 39 119 75, 76, 71, // 40 122 77, 74, 71, // 41 125 78, 79, 77, // 42 128 80, 75, 81, // 43 131 75, 80, 82, // 44 134 82, 80, 83, // 45 137 84, 85, 82, // 46 140 86, 87, 88, // 47 143 89, 90, 85, // 48 146 87, 84, 91, // 49 149 92, 88, 83, // 50 152 93, 94, 95, // 51 155 96, 97, 98, // 52 158 97, 96, 99, // 53 161 100, 101, 102, // 54 164 93, 81, 103, // 55 167 104, 105, 100, // 56 170 81, 104, 102, // 57 173 101, 106, 103, // 58 176 15, 65, 13, // 59 179 16, 107, 17, // 60 182 18, 43, 42, // 61 185 18, 42, 16, // 62 188 21, 108, 19, // 63 191 109, 110, 111, // 64 194 111, 32, 39, // 65 197 24, 111, 39, // 66 200 24, 26, 22, // 67 203 111, 24, 109, // 68 206 22, 28, 25, // 69 209 108, 21, 26, // 70 212 39, 112, 113, // 71 215 39, 113, 26, // 72 218 26, 24, 39, // 73 221 26, 113, 108, // 74 224 27, 114, 28, // 75 227 34, 39, 32, // 76 230 34, 33, 35, // 77 233 34, 35, 31, // 78 236 40, 112, 39, // 79 239 43, 47, 49, // 80 242 49, 46, 41, // 81 245 41, 43, 49, // 82 248 31, 115, 44, // 83 251 44, 34, 31, // 84 254 115, 31, 30, // 85 257 51, 52, 30, // 86 260 30, 46, 51, // 87 263 30, 52, 115, // 88 266 46, 49, 48, // 89 269 48, 50, 46, // 90 272 38, 116, 53, // 91 275 36, 38, 53, // 92 278 57, 117, 55, // 93 281 20, 19, 118, // 94 284 118, 67, 66, // 95 287 60, 118, 66, // 96 290 60, 62, 58, // 97 293 118, 60, 20, // 98 296 58, 64, 61, // 99 299 117, 57, 62, // 100 302 66, 119, 120, // 101 305 66, 120, 62, // 102 308 62, 60, 66, // 103 311 62, 120, 117, // 104 314 63, 121, 64, // 105 317 17, 107, 65, // 106 320 68, 86, 92, // 107 323 68, 98, 66, // 108 326 95, 94, 68, // 109 329 68, 92, 95, // 110 332 71, 74, 73, // 111 335 73, 69, 71, // 112 338 72, 74, 77, // 113 341 77, 79, 54, // 114 344 54, 72, 77, // 115 347 70, 105, 104, // 116 350 104, 81, 75, // 117 353 75, 71, 104, // 118 356 104, 71, 70, // 119 359 71, 76, 77, // 120 362 90, 89, 78, // 121 365 76, 90, 78, // 122 368 77, 76, 78, // 123 371 81, 93, 80, // 124 374 85, 90, 76, // 125 377 82, 85, 75, // 126 380 76, 75, 85, // 127 383 83, 88, 91, // 128 386 91, 82, 83, // 129 389 82, 91, 84, // 130 392 84, 84, 82, // 131 395 88, 92, 86, // 132 398 85, 84, 89, // 133 401 91, 88, 87, // 134 404 83, 95, 92, // 135 407 83, 80, 93, // 136 410 93, 95, 83, // 137 413 98, 119, 66, // 138 416 98, 94, 96, // 139 419 98, 68, 94, // 140 422 96, 94, 93, // 141 425 103, 106, 99, // 142 428 99, 93, 103, // 143 431 93, 99, 96, // 144 434 100, 102, 104, // 145 437 102, 103, 81, // 146 440 103, 102, 101, // 147 443 DX3DINDEX_END #endif #else #define index_Trim_Char_x_28_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_28_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_28_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_28_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_28_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_28_1__ ) DX3DMODEL_START( model_Trim_Char_x_28_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_28_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_28_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 444 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_28_1__, 3997931653 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_28_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_27_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_29_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_29_1___initialShadingGroup_0 ) DX3DVERT( 2.70156, 0.371872, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.66719, 0.635933, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.50048, 0.60994, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.13858, 0.495705, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.41094, 0.387756, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.41094, 0.627968, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.41092, 2.46803, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.41125, 2.73322, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.866065, 2.43477, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.321185, 2.22735, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.144562, 2.18224, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.321355, 2.18187, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.866147, 2.18187, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.866147, 2.19844, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.845313, 2.19688, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.396876, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.866147, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.396876, 3.425, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.41094, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.866147, 3.425, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( -0.223436, 2.12656, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( -0.207811, 1.86562, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.321355, 1.90485, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.41094, 1.98564, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.41094, 2.18187, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.866147, 1.94524, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.80222, 0.938744, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.866147, 0.767189, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.866147, 0.938744, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.787244, 1.08437, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.13854, 1.32493, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.28934, 1.56035, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.13854, 1.56031, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.13182, 0.938751, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.0984, 1.11562, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.866144, 1.41454, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.866147, 1.24953, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.970508, 0.627968, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.13854, 0.627968, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.13854, 0.92363, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.41094, 0.687241, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 3.04035, 2.18187, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 3.02969, 2.36094, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.50052, 2.32119, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.52131, 2.80298, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.95573, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.41094, 3.425, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.95573, 2.80344, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.95571, 2.79012, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.97632, 2.80347, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.95575, 3.10393, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.50625, 3.17188, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.50625, 3.425, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.50052, 3.425, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.95572, 0.318771, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.95573, 0.588226, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.52344, 1.98594, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.41096, 1.92608, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.41094, 1.67707, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.50052, 2.05883, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 3.04531, 2.09843, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.50052, 2.18187, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.95573, 2.18187, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.50051, 0.341423, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.08594, 0.585602, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.41094, 2.23936, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 0.959281, 1.56042, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.95573, 2.28027, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 0.866146, 2.21403, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 0.842188, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.11477, 1.24948, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.95573, 3.425, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.02344, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.50052, 3.16765, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.02656, 3.15625, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.52031, 1.99375, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.95573, 1.98299, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.07813, 2.02812, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.08594, 0.316826, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_29_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_29_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 79 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_29_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_29_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_29_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 16, 18, 19, // 6 20 20, 21, 22, // 7 23 23, 24, 12, // 8 26 25, 14, 11, // 9 29 26, 27, 28, // 10 32 29, 26, 28, // 11 35 30, 31, 32, // 12 38 28, 33, 34, // 13 41 35, 36, 30, // 14 44 37, 3, 38, // 15 47 37, 38, 39, // 16 50 40, 39, 38, // 17 53 41, 42, 43, // 18 56 44, 7, 6, // 19 59 18, 45, 46, // 20 62 47, 48, 49, // 21 65 50, 47, 49, // 22 68 51, 52, 53, // 23 71 4, 54, 55, // 24 74 56, 57, 58, // 25 77 59, 60, 41, // 26 80 59, 61, 62, // 27 83 63, 2, 64, // 28 86 24, 65, 13, // 29 89 57, 66, 32, // 30 92 62, 67, 65, // 31 95 47, 50, 44, // 32 98 61, 43, 67, // 33 101 2, 63, 0, // 34 104 5, 38, 3, // 35 107 8, 68, 6, // 36 110 69, 68, 8, // 37 113 14, 69, 11, // 38 116 14, 25, 12, // 39 119 9, 11, 69, // 40 122 8, 9, 69, // 41 125 16, 19, 17, // 42 128 18, 46, 19, // 43 131 22, 11, 10, // 44 134 10, 20, 22, // 45 137 12, 25, 23, // 46 140 11, 22, 25, // 47 143 36, 35, 29, // 48 146 28, 36, 29, // 49 149 34, 70, 36, // 50 152 36, 28, 34, // 51 155 36, 70, 30, // 52 158 30, 32, 66, // 53 161 66, 35, 30, // 54 164 39, 33, 28, // 55 167 39, 28, 27, // 56 170 39, 27, 37, // 57 173 38, 5, 40, // 58 176 43, 61, 41, // 59 179 48, 47, 44, // 60 182 44, 6, 48, // 61 185 45, 71, 46, // 62 188 71, 45, 72, // 63 191 49, 73, 74, // 64 194 49, 74, 50, // 65 197 74, 73, 53, // 66 200 72, 53, 71, // 67 203 53, 72, 74, // 68 206 53, 73, 51, // 69 209 55, 40, 5, // 70 212 5, 4, 55, // 71 215 24, 23, 75, // 72 218 76, 62, 56, // 73 221 58, 76, 56, // 74 224 75, 56, 62, // 75 227 75, 62, 24, // 76 230 41, 61, 59, // 77 233 62, 76, 77, // 78 236 62, 77, 59, // 79 239 64, 55, 54, // 80 242 64, 54, 78, // 81 245 78, 63, 64, // 82 248 13, 12, 24, // 83 251 31, 58, 57, // 84 254 57, 32, 31, // 85 257 65, 24, 62, // 86 260 67, 62, 61, // 87 263 DX3DINDEX_END #endif #else #define index_Trim_Char_x_29_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_29_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_29_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_29_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_29_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_29_1__ ) DX3DMODEL_START( model_Trim_Char_x_29_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_29_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_29_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 264 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_29_1__, 4000016789 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_29_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_28_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_30_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_30_1___initialShadingGroup_0 ) DX3DVERT( 2.74662, 2.3477, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.92344, 2.36094, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.93411, 2.18167, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.32947, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.51797, 2.93045, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.51797, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.993719, 1.11562, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.02741, 0.938347, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.903647, 0.938347, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.853254, 1.56, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.903647, 1.56001, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.696112, 0.938339, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.903647, 0.62751, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 1.21086, 0.735878, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 1.50691, 0.627274, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 1.21081, 0.62751, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 1.21075, 0.421219, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.903647, 0.594307, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.51792, 0.625023, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 1.51797, 0.34845, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.00528943, 2.18196, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.137824, 2.21891, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.137892, 2.18167, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.137892, 1.89879, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( -0.309374, 1.86562, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( -0.324999, 2.12656, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 1.51797, 2.18167, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.51797, 1.82536, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 1.41875, 1.99375, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.903641, 1.61934, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.292189, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.292189, 3.425, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.903647, 3.425, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.626563, 2.18906, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.903647, 2.20979, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 0.903647, 2.18167, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.51797, 2.25577, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.1323, 0.588585, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 2.56563, 0.635933, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 2.59688, 0.371872, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.98438, 0.585602, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.13229, 0.320091, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.97625, 0.316681, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.82031, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.51797, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.51797, 3.425, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 1.97188, 2.02812, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.13229, 2.30173, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.13229, 2.18167, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.93906, 2.09843, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.74662, 2.08445, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.13229, 2.03979, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.13229, 3.425, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 2.28438, 3.425, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 2.30469, 3.17188, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 2.74662, 2.18167, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 0.903647, 3.16406, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.903647, 1.95556, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 1.51797, 2.65379, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 1.75966, 2.80338, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.18379, 1.56004, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 0.680825, 1.0864, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.41875, 1.98594, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 0.903647, 2.54984, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 0.903611, 2.32052, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 0.626563, 2.19688, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.13228, 3.05102, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.825, 3.15625, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.74662, 2.96024, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.8111, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.74662, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.38281, 3.18282, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.6125, 3.26563, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.74662, 2.61301, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.63906, 2.57813, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.54816, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.87031, 2.65312, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 3.09531, 3.32813, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 3.32253, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 3.05642, 2.80334, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 3.36094, 2.70313, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 3.12656, 2.62968, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.8625, 3.25, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_30_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_30_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 83 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_30_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_30_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_30_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 8, // 3 11 11, 8, 12, // 4 14 13, 14, 15, // 5 17 13, 15, 12, // 6 20 15, 16, 17, // 7 23 14, 18, 19, // 8 26 20, 21, 22, // 9 29 23, 24, 25, // 10 32 26, 27, 28, // 11 35 10, 9, 29, // 12 38 30, 31, 32, // 13 41 33, 34, 35, // 14 44 34, 36, 26, // 15 47 37, 38, 39, // 16 50 40, 41, 42, // 17 53 43, 44, 45, // 18 56 46, 27, 26, // 19 59 36, 47, 48, // 20 62 2, 49, 50, // 21 65 50, 51, 48, // 22 68 52, 53, 54, // 23 71 47, 0, 55, // 24 74 56, 32, 45, // 25 77 57, 23, 22, // 26 80 3, 5, 58, // 27 83 59, 58, 5, // 28 86 2, 55, 0, // 29 89 10, 60, 6, // 30 92 8, 10, 6, // 31 95 8, 11, 61, // 32 98 8, 61, 9, // 33 101 12, 17, 11, // 34 104 12, 8, 7, // 35 107 12, 7, 13, // 36 110 17, 12, 15, // 37 113 16, 15, 14, // 38 116 19, 16, 14, // 39 119 20, 22, 23, // 40 122 23, 25, 20, // 41 125 60, 10, 29, // 42 128 27, 62, 28, // 43 131 28, 57, 35, // 44 134 35, 26, 28, // 45 137 62, 27, 60, // 46 140 29, 62, 60, // 47 143 32, 56, 30, // 48 146 63, 64, 65, // 49 149 22, 65, 33, // 50 152 33, 57, 22, // 51 155 65, 22, 21, // 52 158 21, 63, 65, // 53 161 26, 35, 34, // 54 164 39, 41, 37, // 55 167 40, 37, 41, // 56 170 19, 18, 40, // 57 173 42, 19, 40, // 58 176 59, 5, 4, // 59 179 52, 66, 67, // 60 182 45, 52, 43, // 61 185 67, 43, 52, // 62 188 67, 66, 59, // 63 191 4, 67, 59, // 64 194 48, 51, 46, // 65 197 46, 26, 48, // 66 200 48, 26, 36, // 67 203 50, 55, 2, // 68 206 48, 55, 50, // 69 209 54, 66, 52, // 70 212 55, 48, 47, // 71 215 45, 44, 56, // 72 218 57, 33, 35, // 73 221 58, 64, 63, // 74 224 58, 63, 3, // 75 227 68, 69, 70, // 76 230 71, 72, 68, // 77 233 73, 74, 75, // 78 236 69, 76, 73, // 79 239 68, 70, 75, // 80 242 75, 71, 68, // 81 245 75, 70, 73, // 82 248 73, 70, 69, // 83 251 77, 78, 79, // 84 254 78, 80, 81, // 85 257 79, 82, 77, // 86 260 81, 79, 78, // 87 263 DX3DINDEX_END #endif #else #define index_Trim_Char_x_30_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_30_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_30_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_30_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_30_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_30_1__ ) DX3DMODEL_START( model_Trim_Char_x_30_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_30_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_30_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 264 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_30_1__, 4060485733 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_30_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_29_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_31_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_31_1___initialShadingGroup_0 ) DX3DVERT( 2.93125, 2.15, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.37375, 2.13744, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.37375, 2.3978, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.73344, 2.09018, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.38438, 2.04844, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.36094, 2.30625, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.73344, 2.35011, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 2.93125, 2.41093, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 3.01406, 0.460938, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 2.37375, 0.387177, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 2.37376, 0.647835, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 1.07205, 1.02656, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 1.09327, 1.15553, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 1.09313, 1.13906, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 1.50781, 1.62656, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 1.69219, 1.45156, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 1.64668, 1.41821, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 1.41328, 0.580727, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.41328, 0.859894, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 1.44466, 0.859642, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 1.34936, 0.580246, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 1.10179, 0.860016, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 1.41308, 0.543343, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 1.73344, 0.580727, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 1.41328, 1.41823, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 1.4132, 1.2011, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 1.26204, 1.41823, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.3789, 1.13905, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 1.36073, 1.04962, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.4131, 0.89669, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 1.73346, 0.702133, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 2.20625, 0.643219, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 2.97813, 0.721878, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.09338, 0.884079, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.73342, 0.427734, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 2.19063, 0.382851, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.73344, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.28125, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.73344, 3.09323, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.454675, 1.41823, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.452813, 1.41823, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 0.452813, 1.97656, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 0.0968765, 0.301559, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( -0.1875, 0.37188, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( -0.0174014, 0.859894, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 0.311142, 1.97656, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 0.285841, 0.859894, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 0.156903, 1.41823, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 0.452813, 1.41171, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 0.868751, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 1.09313, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 1.09313, 3.09323, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 0.605226, 1.97656, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 0.452813, 2.5349, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.4468, 2.5349, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( -0.070312, 3.09323, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( -0.070312, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.452813, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( -0.070312, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 0.452813, 3.09323, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.09313, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 0.814063, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.73344, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.28125, 3.09323, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 0.452813, 2.56145, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 0.670314, 3.65157, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 0.954688, 3.62344, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 0.576564, 3.14063, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 0.739099, 2.5349, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 0.452813, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 0.521875, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.28125, 2.87969, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_31_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_31_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 72 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_31_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_31_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_31_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 1, 3, 6, // 2 8 2, 7, 0, // 3 11 5, 6, 3, // 4 14 6, 2, 1, // 5 17 8, 9, 10, // 6 20 11, 12, 13, // 7 23 14, 15, 16, // 8 26 17, 18, 19, // 9 29 20, 21, 18, // 10 32 22, 20, 17, // 11 35 22, 17, 23, // 12 38 24, 16, 25, // 13 41 12, 26, 25, // 14 44 13, 27, 28, // 15 47 29, 19, 18, // 16 50 23, 30, 31, // 17 53 10, 32, 8, // 18 56 11, 28, 33, // 19 59 24, 26, 14, // 20 62 16, 24, 14, // 21 65 30, 23, 17, // 22 68 19, 30, 17, // 23 71 18, 17, 20, // 24 74 23, 34, 22, // 25 77 26, 24, 25, // 26 80 27, 13, 12, // 27 83 12, 25, 27, // 28 86 29, 18, 21, // 29 89 28, 11, 13, // 30 92 21, 33, 28, // 31 95 28, 29, 21, // 32 98 31, 10, 9, // 33 101 31, 35, 34, // 34 104 31, 34, 23, // 35 107 9, 35, 31, // 36 110 36, 37, 38, // 37 113 39, 40, 41, // 38 116 42, 43, 44, // 39 119 45, 41, 40, // 40 122 46, 44, 47, // 41 125 39, 48, 40, // 42 128 49, 50, 51, // 43 131 52, 41, 53, // 44 134 41, 45, 54, // 45 137 55, 56, 57, // 46 140 58, 55, 59, // 47 143 51, 60, 61, // 48 146 50, 36, 51, // 49 149 60, 51, 38, // 50 152 62, 38, 63, // 51 155 64, 53, 54, // 52 158 37, 63, 38, // 53 161 41, 52, 39, // 54 164 44, 46, 42, // 55 167 40, 47, 45, // 56 170 47, 40, 48, // 57 173 48, 46, 47, // 58 176 65, 66, 49, // 59 179 59, 57, 67, // 60 182 59, 67, 61, // 61 185 49, 61, 67, // 62 188 49, 67, 65, // 63 191 53, 68, 52, // 64 194 54, 53, 41, // 65 197 57, 59, 55, // 66 200 59, 69, 58, // 67 203 68, 53, 64, // 68 206 70, 69, 59, // 69 209 61, 70, 59, // 70 212 61, 49, 51, // 71 215 70, 61, 68, // 72 218 64, 70, 68, // 73 221 36, 38, 51, // 74 224 38, 62, 60, // 75 227 63, 71, 62, // 76 230 DX3DINDEX_END #endif #else #define index_Trim_Char_x_31_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_31_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_31_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_31_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_31_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_31_1__ ) DX3DMODEL_START( model_Trim_Char_x_31_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_31_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_31_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 231 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_31_1__, 4062570869 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_31_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_30_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_32_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_32_1___initialShadingGroup_0 ) DX3DVERT( 2.09531, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.19063, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.09531, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.353907, 1.16769, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.429227, 1.42709, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.353907, 1.42709, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.934376, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.51484, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.934376, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.353907, 2.26538, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.290556, 2.00938, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.353907, 2.00938, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.109374, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.109374, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.353907, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.844453, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.915625, 3.58438, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.631251, 3.6125, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.584302, 2.00938, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.482814, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.429253, 2.59167, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.721444, 2.59167, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( -0.0485498, 0.844795, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( -0.226561, 0.332817, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.0578134, 0.262505, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.131842, 1.42709, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.254423, 0.844795, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.51484, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.19063, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.353907, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.552046, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.829688, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.775001, 2.84063, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.537501, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.67579, 0.641479, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.67578, 0.377228, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.975, 0.421875, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.29182, 0.553192, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.51484, 0.441467, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.51484, 0.55365, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.51484, 1.54375, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.46875, 1.5875, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.27091, 1.42709, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.32166, 1.01056, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.35757, 1.13599, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.22461, 1.13594, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.03298, 0.987503, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.05436, 0.844872, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.22461, 0.844795, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.22461, 1.3809, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.06095, 1.13592, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.51482, 1.30617, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.22446, 0.60347, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.38409, 0.84462, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.09532, 0.344391, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.63776, 1.42709, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.51484, 1.42709, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.65313, 1.4125, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.16718, 0.604156, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.09531, 0.605194, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.15156, 0.343796, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.93906, 0.682816, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.51463, 0.738564, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.89375, 2.11094, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.89375, 2.15495, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.67578, 2.15495, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.51484, 2.03111, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.51484, 2.15495, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.33208, 2.15495, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.51484, 2.2914, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.32188, 2.26719, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.89375, 2.37188, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.67578, 2.36988, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.09531, 2.15495, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.09531, 2.34497, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.09531, 2.08496, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.67578, 2.10905, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.34531, 2.00938, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 3.03281, 3.05469, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 3.25625, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 3.25099, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.92031, 3.75626, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.70156, 3.64375, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.96993, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.67578, 3.0918, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.71719, 3.1125, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.68505, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.67578, 3.19144, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.67578, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.38594, 3.69376, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.175, 3.57657, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.40882, 3.17396, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.49844, 3.00313, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_32_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_32_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 93 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_32_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_32_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_32_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 9, 11, 18, // 6 20 19, 20, 21, // 7 23 22, 23, 24, // 8 26 10, 25, 5, // 9 29 25, 22, 26, // 10 32 4, 18, 11, // 11 35 7, 0, 27, // 12 38 1, 28, 2, // 13 41 7, 27, 8, // 14 44 14, 29, 12, // 15 47 17, 30, 15, // 16 50 21, 20, 9, // 17 53 18, 21, 9, // 18 56 6, 8, 31, // 19 59 29, 14, 19, // 20 62 32, 30, 33, // 21 65 21, 32, 19, // 22 68 33, 19, 32, // 23 71 19, 33, 29, // 24 74 31, 15, 30, // 25 77 31, 32, 6, // 26 80 30, 32, 31, // 27 83 24, 26, 22, // 28 86 5, 11, 10, // 29 89 3, 5, 25, // 30 92 25, 26, 3, // 31 95 11, 5, 4, // 32 98 0, 2, 27, // 33 101 34, 35, 36, // 34 104 37, 38, 39, // 35 107 40, 41, 42, // 36 110 43, 44, 45, // 37 113 46, 47, 48, // 38 116 49, 50, 45, // 39 119 44, 51, 42, // 40 122 48, 47, 52, // 41 125 53, 52, 37, // 42 128 39, 38, 54, // 43 131 55, 40, 56, // 44 134 51, 57, 55, // 45 137 58, 59, 60, // 46 140 36, 61, 34, // 47 143 42, 56, 40, // 48 146 48, 53, 43, // 49 149 45, 48, 43, // 50 152 48, 45, 50, // 51 155 48, 50, 46, // 52 158 51, 56, 42, // 53 161 49, 45, 44, // 54 164 42, 49, 44, // 55 167 53, 48, 52, // 56 170 37, 39, 62, // 57 173 37, 62, 53, // 58 176 54, 59, 62, // 59 179 54, 62, 39, // 60 182 55, 56, 51, // 61 185 59, 54, 60, // 62 188 35, 34, 58, // 63 191 60, 35, 58, // 64 194 63, 64, 65, // 65 197 66, 67, 68, // 66 200 69, 70, 68, // 67 203 64, 71, 72, // 68 206 69, 67, 73, // 69 209 74, 73, 65, // 70 212 75, 73, 67, // 71 215 76, 65, 73, // 72 218 65, 76, 63, // 73 221 68, 77, 66, // 74 224 68, 67, 69, // 75 227 72, 65, 64, // 76 230 73, 74, 69, // 77 233 65, 72, 74, // 78 236 67, 66, 75, // 79 239 73, 75, 76, // 80 242 78, 79, 80, // 81 245 81, 82, 83, // 82 248 80, 83, 78, // 83 251 83, 80, 81, // 84 254 84, 85, 86, // 85 257 86, 87, 88, // 86 260 89, 90, 91, // 87 263 84, 88, 91, // 88 266 86, 88, 84, // 89 269 91, 88, 87, // 90 272 87, 89, 91, // 91 275 91, 92, 84, // 92 278 DX3DINDEX_END #endif #else #define index_Trim_Char_x_32_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_32_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_32_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_32_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_32_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_32_1__ ) DX3DMODEL_START( model_Trim_Char_x_32_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_32_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_32_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 279 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_32_1__, 4064656005 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_32_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_31_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_33_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_33_1___initialShadingGroup_0 ) DX3DVERT( 2.37906, 0.888649, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.37906, 0.589722, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.67329, 0.888626, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.41629, 1.97822, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.37906, 1.99913, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.37906, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.520938, 2.15324, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.520938, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.737594, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.81875, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.520938, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.520938, 3.06773, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.0984375, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.0984375, 3.06773, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.445213, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.0984375, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.520938, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.751563, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.14031, 2.05146, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.14031, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.75969, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.14031, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.14031, 3.06773, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.75969, 3.06773, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.14031, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.75969, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.37906, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.37906, 3.06773, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.99844, 3.06773, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.75969, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.75969, 2.13705, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.06938, 1.97819, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.37906, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.99844, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.14031, 0.611115, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.520937, 0.687225, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.520954, 0.418182, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.14032, 1.79557, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.910813, 1.97826, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.284376, 1.64218, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.520938, 1.53059, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.478126, 0.695313, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.432813, 0.434372, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.75969, 0.370438, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.75966, 0.638443, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.3483, 0.604996, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.69871, 1.87688, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.75969, 1.87587, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.68875, 1.43342, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.76787, 1.43343, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.68845, 1.69357, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.31343, 1.70579, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.37903, 1.63503, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.37906, 1.7058, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.06941, 1.8309, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.46482, 1.43355, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.68213, 1.70568, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.37968, 0.985237, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.29765, 0.888031, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.14031, 3.23882, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.20469, 3.58906, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.14031, 3.59428, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.952335, 2.52296, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 0.661348, 2.52296, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.915625, 3.6125, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.10313, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.04063, 2.81249, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.70825, 2.13735, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.99844, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.1403, 0.349014, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.701563, 1.89999, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 0.704688, 1.89218, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 0.532813, 1.52499, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.35701, 0.343643, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.47527, 1.30781, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.77701, 1.30051, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_33_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_33_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 76 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_33_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_33_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_33_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 11, // 4 14 6, 14, 7, // 5 17 13, 15, 16, // 6 20 11, 16, 17, // 7 23 18, 19, 20, // 8 26 21, 22, 23, // 9 29 24, 25, 22, // 10 32 26, 27, 28, // 11 35 29, 23, 27, // 12 38 30, 20, 31, // 13 41 25, 32, 23, // 14 44 32, 33, 27, // 15 47 34, 35, 36, // 16 50 37, 19, 38, // 17 53 14, 39, 40, // 18 56 35, 41, 42, // 19 59 43, 44, 45, // 20 62 46, 47, 20, // 21 65 48, 49, 50, // 22 68 51, 52, 53, // 23 71 47, 54, 31, // 24 74 51, 53, 5, // 25 77 55, 48, 56, // 26 80 3, 5, 53, // 27 83 44, 43, 1, // 28 86 57, 58, 0, // 29 89 57, 0, 2, // 30 92 19, 18, 38, // 31 95 59, 60, 61, // 32 98 8, 62, 63, // 33 101 8, 63, 6, // 34 104 61, 64, 9, // 35 107 22, 21, 65, // 36 110 22, 65, 66, // 37 113 9, 66, 65, // 38 116 9, 65, 59, // 39 119 59, 61, 9, // 40 122 11, 10, 12, // 41 125 16, 11, 13, // 42 128 17, 63, 62, // 43 131 66, 24, 22, // 44 134 66, 9, 17, // 45 137 17, 9, 11, // 46 140 62, 66, 17, // 47 143 20, 30, 67, // 48 146 67, 18, 20, // 49 149 23, 29, 21, // 50 152 25, 23, 22, // 51 155 28, 68, 26, // 52 158 27, 26, 29, // 53 161 31, 5, 4, // 54 164 4, 30, 31, // 55 167 32, 27, 23, // 56 170 33, 28, 27, // 57 173 36, 69, 34, // 58 176 70, 8, 7, // 59 179 71, 72, 37, // 60 182 38, 71, 37, // 61 185 40, 72, 71, // 62 188 7, 71, 70, // 63 191 71, 7, 40, // 64 194 40, 7, 14, // 65 197 42, 36, 35, // 66 200 45, 34, 69, // 67 203 45, 69, 73, // 68 206 73, 43, 45, // 69 209 19, 37, 46, // 70 212 20, 19, 46, // 71 215 31, 20, 47, // 72 218 5, 31, 54, // 73 221 5, 54, 51, // 74 224 48, 50, 56, // 75 227 56, 53, 52, // 76 230 52, 55, 56, // 77 233 53, 56, 3, // 78 236 1, 0, 58, // 79 239 58, 44, 1, // 80 242 48, 55, 74, // 81 245 75, 48, 74, // 82 248 2, 75, 74, // 83 251 2, 74, 57, // 84 254 48, 75, 49, // 85 257 DX3DINDEX_END #endif #else #define index_Trim_Char_x_33_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_33_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_33_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_33_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_33_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_33_1__ ) DX3DMODEL_START( model_Trim_Char_x_33_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_33_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_33_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 258 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_33_1__, 4066741141 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_33_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_32_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_34_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_34_1___initialShadingGroup_0 ) DX3DVERT( 2.49569, 0.673859, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.65666, 0.891251, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.4957, 0.891266, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.30935, 0.565948, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.03281, 0.313858, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.31795, 0.304596, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.61797, 2.06413, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.61799, 2.09724, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.32166, 2.06413, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.137499, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.137499, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.447657, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.10918, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.16563, 3.55, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.03281, 3.56078, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.876564, 3.57344, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.819883, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.675705, 2.65057, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.460962, 2.06413, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.752426, 2.06413, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.696876, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.964119, 2.65057, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.61797, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.61797, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.05156, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.447657, 0.654892, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.440626, 0.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.393751, 0.395325, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.447657, 2.0332, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.245313, 1.60313, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.447657, 1.50769, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.03276, 1.73637, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.61797, 1.83725, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.493751, 1.48595, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.665626, 1.85313, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.03281, 0.576538, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.447664, 0.385208, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.78828, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.95938, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.78828, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.66921, 2.09831, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.20313, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.20313, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.20313, 0.598038, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.20361, 0.801239, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.61797, 0.58342, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.65964, 1.83783, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.20312, 1.71854, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.03766, 2.06413, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.4957, 1.47769, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.71328, 1.47765, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.57385, 1.77092, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.4032, 1.47783, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.4957, 1.77092, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.49576, 1.85274, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.20311, 2.01936, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.20313, 1.77092, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.4362, 1.26875, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.29812, 0.890701, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.20315, 0.473831, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.4074, 0.598053, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.61797, 0.318741, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.447657, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.03281, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.767189, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 0.985939, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.03281, 2.72345, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.0328, 1.99355, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 0.662501, 1.86095, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.95938, 2.98438, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.73796, 1.26146, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 3.15, 3.12032, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 3.37344, 3.22969, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 3.36957, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 3.0375, 3.82344, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.81875, 3.70938, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 3.08806, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.78828, 3.15196, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.83438, 3.175, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.80179, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.78828, 3.26233, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.78828, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.50312, 3.75626, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.29219, 3.64375, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.52513, 3.237, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.61563, 3.06563, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_34_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_34_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 86 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_34_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_34_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_34_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 14, 15, 16, // 5 17 17, 18, 19, // 6 20 20, 17, 21, // 7 23 22, 23, 24, // 8 26 25, 26, 27, // 9 29 28, 29, 30, // 10 32 31, 32, 6, // 11 35 33, 31, 34, // 12 38 35, 25, 36, // 13 41 37, 38, 39, // 14 44 40, 7, 6, // 15 47 22, 41, 23, // 16 50 41, 37, 42, // 17 53 43, 44, 45, // 18 56 46, 47, 48, // 19 59 49, 50, 51, // 20 62 52, 49, 53, // 21 65 54, 55, 56, // 22 68 51, 54, 53, // 23 71 57, 58, 2, // 24 74 43, 59, 60, // 25 77 58, 44, 60, // 26 80 3, 35, 4, // 27 83 61, 45, 3, // 28 86 3, 5, 61, // 29 89 11, 62, 9, // 30 92 14, 63, 12, // 31 95 16, 63, 14, // 32 98 19, 21, 17, // 33 101 64, 62, 20, // 34 104 65, 24, 64, // 35 107 21, 65, 20, // 36 110 65, 64, 20, // 37 113 62, 11, 20, // 38 116 63, 16, 64, // 39 119 64, 24, 63, // 40 122 24, 12, 63, // 41 125 24, 65, 66, // 42 128 24, 66, 22, // 43 131 27, 36, 25, // 44 134 8, 67, 31, // 45 137 31, 6, 8, // 46 140 68, 19, 18, // 47 143 31, 67, 34, // 48 146 34, 28, 30, // 49 149 30, 33, 34, // 50 152 28, 34, 68, // 51 155 18, 28, 68, // 52 158 36, 4, 35, // 53 161 38, 69, 39, // 54 164 40, 46, 48, // 55 167 41, 42, 23, // 56 170 37, 39, 42, // 57 173 45, 61, 59, // 58 176 45, 59, 43, // 59 179 56, 55, 48, // 60 182 6, 32, 46, // 61 185 46, 40, 6, // 62 188 48, 47, 56, // 63 191 51, 53, 49, // 64 194 53, 56, 47, // 65 197 47, 52, 53, // 66 200 56, 53, 54, // 67 203 49, 52, 57, // 68 206 70, 50, 57, // 69 209 1, 70, 57, // 70 212 2, 1, 57, // 71 215 57, 50, 49, // 72 218 44, 43, 60, // 73 221 0, 2, 58, // 74 224 60, 0, 58, // 75 227 71, 72, 73, // 76 230 74, 75, 76, // 77 233 73, 76, 71, // 78 236 76, 73, 74, // 79 239 77, 78, 79, // 80 242 79, 80, 81, // 81 245 82, 83, 84, // 82 248 77, 81, 84, // 83 251 79, 81, 77, // 84 254 84, 81, 80, // 85 257 80, 82, 84, // 86 260 84, 85, 77, // 87 263 DX3DINDEX_END #endif #else #define index_Trim_Char_x_34_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_34_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_34_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_34_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_34_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_34_1__ ) DX3DMODEL_START( model_Trim_Char_x_34_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_34_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_34_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 264 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_34_1__, 4068826277 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_34_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_33_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_35_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_35_1___initialShadingGroup_0 ) DX3DVERT( 2.61901, 1.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.61901, 1.09265, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.72842, 1.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.76016, 0.789581, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.76019, 1.06073, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.33072, 1.01782, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.76016, 2.65073, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.7602, 2.92628, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.33076, 2.87779, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.532813, 2.42343, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.811062, 2.4921, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.517225, 2.49219, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.901301, 2.79501, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.471876, 2.69218, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.33067, 2.59987, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.03281, 1.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.04844, 0.742188, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.7405, 2.05469, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 3.04521, 2.05475, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 2.91679, 2.49219, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.85591, 2.65295, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 2.18959, 2.62169, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.18961, 2.90854, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.50263, 2.49219, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.61902, 2.37688, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.61901, 2.49219, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.61913, 2.77455, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.18949, 0.8871, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.74904, 1.92435, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.69336, 1.61719, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.83372, 1.61719, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.4043, 1.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.40433, 1.28058, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.20928, 1.17966, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.61895, 1.48244, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.5487, 1.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.61901, 1.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.83373, 1.29045, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.90937, 1.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.83372, 1.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 3.00443, 1.61719, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.33073, 0.748611, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.901326, 2.51306, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.86719, 2.92952, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.1896, 1.17181, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 3.04925, 1.94374, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_35_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_35_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 46 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_35_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_35_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_35_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 11, // 4 14 14, 8, 12, // 5 17 5, 15, 16, // 6 20 17, 18, 19, // 7 23 20, 21, 22, // 8 26 23, 24, 25, // 9 29 23, 25, 26, // 10 32 19, 26, 25, // 11 35 4, 3, 27, // 12 38 28, 29, 30, // 13 41 1, 0, 31, // 14 44 32, 31, 0, // 15 47 32, 33, 31, // 16 50 34, 35, 36, // 17 53 37, 38, 39, // 18 56 36, 0, 2, // 19 59 34, 36, 39, // 20 62 38, 40, 30, // 21 65 5, 41, 3, // 22 68 8, 14, 6, // 23 71 10, 42, 12, // 24 74 12, 11, 10, // 25 77 12, 42, 14, // 26 80 16, 41, 5, // 27 83 19, 25, 24, // 28 86 24, 17, 19, // 29 89 7, 6, 20, // 30 92 43, 7, 20, // 31 95 20, 22, 43, // 32 98 26, 22, 21, // 33 101 26, 21, 23, // 34 104 27, 44, 4, // 35 107 18, 17, 28, // 36 110 40, 45, 28, // 37 113 30, 40, 28, // 38 116 28, 45, 18, // 39 119 31, 33, 44, // 40 122 31, 44, 27, // 41 125 31, 27, 1, // 42 128 0, 36, 35, // 43 131 35, 32, 0, // 44 134 37, 39, 36, // 45 137 36, 2, 37, // 46 140 39, 30, 29, // 47 143 39, 29, 34, // 48 146 30, 39, 38, // 49 149 DX3DINDEX_END #endif #else #define index_Trim_Char_x_35_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_35_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_35_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_35_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_35_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_35_1__ ) DX3DMODEL_START( model_Trim_Char_x_35_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_35_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_35_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 150 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_35_1__, 4070911413 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_35_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_34_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_36_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_36_1___initialShadingGroup_0 ) DX3DVERT( 2.51432, 1.00311, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.51432, 0.898651, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.64668, 1.00311, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.4461, 0.520233, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.44612, 0.808945, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.911973, 0.754257, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.4461, 2.877, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.44611, 3.16826, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.911946, 3.10718, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.0906249, 2.58594, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.0784069, 2.62964, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.100666, 2.62968, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.377901, 2.70245, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.377865, 3.00212, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.911967, 2.81224, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.545313, 0.7453, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.564063, 0.460938, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.78138, 2.08749, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 3.04311, 2.08749, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 2.99747, 2.3586, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.55469, 2.87971, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.98021, 2.84303, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.98025, 3.14542, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.45954, 2.62967, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.51434, 2.57642, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.51432, 2.62968, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.51447, 2.97841, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.78138, 2.62968, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.72025, 2.08749, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.78138, 2.35858, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.65253, 2.3586, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.8829, 2.62968, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.98009, 0.642365, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.72991, 1.91562, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.66387, 1.54543, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.78138, 1.5453, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.11471, 1.00308, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.98021, 0.945938, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.51432, 1.27422, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.78139, 1.14316, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.87435, 1.2742, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.78138, 1.27422, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.51444, 1.29593, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.99396, 1.5453, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.911978, 0.468903, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( -0.156249, 2.87187, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.57813, 3.17174, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 3.04861, 1.94374, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_36_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_36_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 48 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_36_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_36_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_36_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 10, 12, 13, // 4 14 14, 8, 13, // 5 17 5, 15, 16, // 6 20 17, 18, 19, // 7 23 20, 21, 22, // 8 26 23, 24, 25, // 9 29 23, 25, 26, // 10 32 26, 25, 27, // 11 35 28, 17, 29, // 12 38 30, 29, 27, // 13 41 31, 27, 29, // 14 44 4, 3, 32, // 15 47 33, 34, 35, // 16 50 36, 37, 32, // 17 53 36, 0, 38, // 18 56 39, 40, 41, // 19 59 38, 0, 2, // 20 62 42, 38, 41, // 21 65 40, 43, 35, // 22 68 5, 44, 3, // 23 71 8, 14, 6, // 24 74 45, 11, 10, // 25 77 10, 13, 45, // 26 80 13, 12, 14, // 27 83 16, 44, 5, // 28 86 19, 29, 17, // 29 89 7, 6, 20, // 30 92 46, 7, 20, // 31 95 20, 22, 46, // 32 98 26, 22, 21, // 33 101 26, 21, 23, // 34 104 27, 31, 26, // 35 107 29, 30, 28, // 36 110 27, 25, 24, // 37 113 24, 30, 27, // 38 116 29, 19, 31, // 39 119 32, 37, 4, // 40 122 17, 28, 33, // 41 125 47, 18, 33, // 42 128 43, 47, 33, // 43 131 35, 43, 33, // 44 134 33, 18, 17, // 45 137 1, 0, 36, // 46 140 36, 32, 1, // 47 143 38, 42, 36, // 48 146 39, 41, 38, // 49 149 38, 2, 39, // 50 152 41, 35, 34, // 51 155 41, 34, 42, // 52 158 35, 41, 40, // 53 161 DX3DINDEX_END #endif #else #define index_Trim_Char_x_36_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_36_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_36_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_36_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_36_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_36_1__ ) DX3DMODEL_START( model_Trim_Char_x_36_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_36_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_36_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 162 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_36_1__, 4072996549 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_36_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_35_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_37_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_37_1___initialShadingGroup_0 ) DX3DVERT( 2.731, 1.12309, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.90317, 1.43062, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.73099, 1.43063, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.54922, 0.510193, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.54924, 0.800873, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.958325, 0.721786, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.48906, 2.84067, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.51563, 3.13271, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.16118, 3.1118, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.367484, 2.67607, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.367449, 2.9754, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.223436, 2.83281, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.958358, 2.79167, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.958306, 3.08568, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.54922, 3.11188, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.54922, 3.13263, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.482814, 0.706253, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.501563, 0.421875, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 2.73099, 2.43938, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 2.89216, 2.43938, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 2.73102, 2.71159, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 2.1401, 2.77563, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.14021, 3.06129, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.87411, 3.11211, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.52636, 2.43939, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.14009, 2.74002, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.43554, 2.55247, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.43555, 2.77563, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.43569, 2.94713, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.67156, 2.77568, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.13997, 0.688309, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.73099, 1.76688, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.97684, 1.76689, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.98298, 1.90469, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.66748, 1.87656, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.66203, 1.76689, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.7077, 1.09438, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.43555, 1.09438, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.43565, 1.23834, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.27437, 1.09427, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.56775, 1.43068, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.958331, 0.436096, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.54922, 2.84018, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( -0.156249, 2.54688, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.14014, 1.00912, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 3.1, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 3.16212, 3.11188, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 3.08375, 3.11188, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.98281, 3.78438, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.76406, 3.67032, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 3.32188, 3.19063, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.73099, 3.11105, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.7326, 3.11188, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.52059, 3.11188, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.45156, 3.71719, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.2375, 3.60469, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.77969, 3.13594, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.73099, 3.22824, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.56563, 3.02657, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_37_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_37_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 59 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_37_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_37_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_37_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 10, // 4 14 14, 15, 7, // 5 17 5, 16, 17, // 6 20 18, 19, 20, // 7 23 21, 22, 23, // 8 26 23, 15, 14, // 9 29 24, 18, 20, // 10 32 25, 26, 27, // 11 35 28, 22, 21, // 12 38 29, 28, 27, // 13 41 4, 3, 30, // 14 44 31, 32, 33, // 15 47 34, 35, 31, // 16 50 30, 36, 37, // 17 53 38, 37, 0, // 18 56 38, 39, 37, // 19 59 35, 40, 2, // 20 62 1, 32, 31, // 21 65 5, 41, 3, // 22 68 6, 42, 14, // 23 71 8, 13, 12, // 24 74 12, 6, 8, // 25 77 11, 43, 9, // 26 80 10, 9, 12, // 27 83 7, 6, 14, // 28 86 17, 41, 5, // 29 89 42, 25, 21, // 30 92 23, 14, 21, // 31 95 21, 14, 42, // 32 98 20, 29, 27, // 33 101 20, 27, 26, // 34 104 20, 26, 24, // 35 107 27, 21, 25, // 36 110 21, 27, 28, // 37 113 30, 44, 4, // 38 116 19, 18, 31, // 39 119 33, 19, 31, // 40 122 18, 24, 34, // 41 125 31, 18, 34, // 42 128 39, 44, 30, // 43 131 30, 37, 39, // 44 134 37, 36, 0, // 45 137 0, 2, 40, // 46 140 0, 40, 38, // 47 143 2, 31, 35, // 48 146 31, 2, 1, // 49 149 45, 46, 47, // 50 152 48, 49, 47, // 51 155 46, 50, 48, // 52 158 48, 47, 46, // 53 161 51, 52, 51, // 54 164 51, 51, 53, // 55 167 54, 55, 53, // 56 170 52, 56, 57, // 57 173 53, 58, 51, // 58 176 53, 51, 57, // 59 179 57, 54, 53, // 60 182 57, 51, 52, // 61 185 DX3DINDEX_END #endif #else #define index_Trim_Char_x_37_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_37_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_37_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_37_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_37_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_37_1__ ) DX3DMODEL_START( model_Trim_Char_x_37_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_37_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_37_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 186 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_37_1__, 4075081685 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_37_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_36_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_38_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_38_1___initialShadingGroup_0 ) DX3DVERT( 2.63594, 0.414063, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.6, 0.690628, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.51223, 0.677353, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.19127, 0.609634, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.45547, 0.477295, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.45547, 0.662827, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.927084, 2.32263, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.927084, 2.11925, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.13723, 2.11909, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.398699, 2.93832, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.398699, 3.20851, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.129686, 3.20625, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.80622, 2.11923, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.927084, 2.94911, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.927084, 3.21523, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.45547, 2.96519, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.45547, 3.22633, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.00886, 1.61247, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.688728, 1.58559, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.689593, 1.53668, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.927084, 1.53668, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.853431, 0.954025, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.926982, 0.848572, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.927084, 0.954117, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.927084, 1.24539, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.26062, 0.954102, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.19126, 1.03345, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.19128, 0.954117, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.07304, 1.24539, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.01141, 1.53668, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.11632, 0.662811, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.19128, 0.662827, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 3.04063, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 3.025, 3.28438, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.51224, 3.26137, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.45547, 2.70181, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.45557, 2.4863, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.79598, 2.70177, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.84844, 2.97969, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.98384, 2.78447, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.98385, 3.24173, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.51224, 2.936, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.98385, 0.374603, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.98386, 0.652924, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.51223, 0.395782, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.11786, 0.6483, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.45547, 2.78845, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.31906, 2.70181, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( -0.129686, 2.93437, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.45547, 0.805069, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.84844, 2.97188, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.11196, 0.371536, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_38_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_38_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 52 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_38_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_38_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_38_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 7, 6, 12, // 4 14 13, 14, 10, // 5 17 15, 16, 14, // 6 20 17, 8, 7, // 7 23 18, 19, 20, // 8 26 21, 22, 23, // 9 29 21, 23, 24, // 10 32 25, 26, 27, // 11 35 28, 24, 23, // 12 38 29, 20, 24, // 13 41 30, 3, 31, // 14 44 30, 31, 27, // 15 47 25, 27, 31, // 16 50 32, 33, 34, // 17 53 35, 36, 37, // 18 56 38, 39, 40, // 19 59 41, 34, 40, // 20 62 4, 42, 43, // 21 65 44, 2, 45, // 22 68 35, 46, 47, // 23 71 2, 44, 0, // 24 74 5, 31, 3, // 25 77 36, 35, 47, // 26 80 36, 47, 6, // 27 83 8, 36, 6, // 28 86 11, 48, 9, // 29 89 10, 9, 13, // 30 92 14, 13, 15, // 31 95 20, 29, 17, // 32 98 17, 7, 20, // 33 101 20, 7, 12, // 34 104 20, 12, 18, // 35 107 24, 20, 19, // 36 110 24, 19, 21, // 37 113 23, 27, 26, // 38 116 26, 28, 23, // 39 119 24, 28, 29, // 40 122 27, 23, 22, // 41 125 27, 22, 30, // 42 128 31, 5, 49, // 43 131 31, 49, 25, // 44 134 34, 41, 32, // 45 137 46, 35, 37, // 46 140 38, 50, 39, // 47 143 16, 15, 38, // 48 146 38, 40, 16, // 49 149 37, 39, 50, // 50 152 37, 50, 46, // 51 155 40, 39, 41, // 52 158 43, 49, 5, // 53 161 5, 4, 43, // 54 164 45, 43, 42, // 55 167 45, 42, 51, // 56 170 51, 44, 45, // 57 173 DX3DINDEX_END #endif #else #define index_Trim_Char_x_38_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_38_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_38_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_38_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_38_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_38_1__ ) DX3DMODEL_START( model_Trim_Char_x_38_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_38_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_38_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 174 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_38_1__, 4077166821 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_38_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_37_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_39_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_39_1___initialShadingGroup_0 ) DX3DVERT( 2.55781, 0.340637, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.52188, 0.612503, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.10156, 0.57103, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.946837, 0.673676, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.52428, 0.354721, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.52418, 0.659378, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.946876, 2.43437, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.946876, 2.08803, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.05412, 2.08788, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.207811, 3.20625, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.207811, 2.93439, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.369533, 2.9391, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.722681, 2.08803, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.946876, 2.95183, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.946876, 3.21696, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.369533, 3.20895, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.52422, 2.86414, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.22647, 2.6862, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.52422, 2.6862, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.946909, 1.76926, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.610611, 1.54276, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.930703, 1.56972, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.775728, 0.891663, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.946876, 0.891663, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.946938, 1.3714, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.17661, 0.891647, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.67891, 2.97794, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.9625, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.94688, 3.28438, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.52435, 2.58513, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.69632, 2.68616, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.67891, 3.27187, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.10156, 3.24854, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.02823, 0.29332, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.10158, 0.293976, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.04045, 0.570206, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.52422, 2.97046, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.52422, 3.23019, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.611561, 1.48985, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.93332, 1.48985, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.77031, 2.97969, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.10154, 2.85074, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.77344, 2.97188, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 3.01719, 1.86876, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 3.25625, 1.98595, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 3.2017, 2.08803, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.88125, 2.64063, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.67891, 2.53001, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.67891, 2.46013, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.64688, 2.51251, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.89658, 2.08803, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.67891, 1.84259, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.69375, 1.85001, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.67891, 1.87785, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.56414, 2.08803, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.33125, 2.48907, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.2459, 2.44261, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.10156, 2.36407, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.2459, 2.12006, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.45938, 1.73282, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.26419, 2.08803, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_39_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_39_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 61 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_39_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_39_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_39_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 6, 12, 7, // 4 14 13, 14, 15, // 5 17 16, 17, 18, // 6 20 19, 8, 7, // 7 23 20, 21, 19, // 8 26 22, 3, 23, // 9 29 22, 23, 24, // 10 32 25, 24, 23, // 11 35 26, 27, 28, // 12 38 18, 29, 30, // 13 41 16, 18, 30, // 14 44 26, 31, 32, // 15 47 33, 34, 35, // 16 50 36, 37, 14, // 17 53 2, 34, 0, // 18 56 25, 23, 3, // 19 59 3, 5, 25, // 20 62 29, 18, 17, // 21 65 8, 29, 17, // 22 68 8, 17, 6, // 23 71 11, 15, 9, // 24 74 15, 11, 13, // 25 77 20, 38, 39, // 26 80 7, 12, 20, // 27 83 19, 7, 20, // 28 86 39, 21, 20, // 29 89 24, 39, 38, // 30 92 38, 22, 24, // 31 95 28, 31, 26, // 32 98 37, 36, 40, // 33 101 30, 41, 42, // 34 104 30, 42, 16, // 35 107 42, 41, 32, // 36 110 40, 32, 37, // 37 113 32, 40, 42, // 38 116 32, 41, 26, // 39 119 34, 2, 35, // 40 122 35, 5, 4, // 41 125 35, 4, 33, // 42 128 14, 13, 36, // 43 131 43, 44, 45, // 44 134 46, 47, 48, // 45 137 47, 49, 48, // 46 140 45, 50, 43, // 47 143 50, 45, 46, // 48 146 48, 50, 46, // 49 149 51, 52, 53, // 50 152 54, 55, 56, // 51 155 56, 57, 58, // 52 158 59, 51, 53, // 53 161 58, 60, 54, // 54 164 54, 56, 58, // 55 167 54, 60, 59, // 56 170 53, 54, 59, // 57 173 DX3DINDEX_END #endif #else #define index_Trim_Char_x_39_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_39_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_39_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_39_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_39_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_39_1__ ) DX3DMODEL_START( model_Trim_Char_x_39_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_39_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_39_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 174 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_39_1__, 4079251957 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_39_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_38_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_40_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_40_1___initialShadingGroup_0 ) DX3DVERT( 2.77969, 0.434372, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.74844, 0.706253, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.2406, 0.649353, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.24064, 2.41803, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.50594, 2.48642, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.24063, 2.48645, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.02521, 2.48645, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.706714, 2.48645, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.787501, 2.15312, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.90606, 3.02214, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.80625, 3.55782, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.623439, 3.52969, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.501563, 3.51094, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.590776, 3.02214, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.623497, 2.05084, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.488151, 1.95065, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.623439, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.623439, 2.86249, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.623439, 3.02214, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.70151, 2.25433, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.70156, 2.48645, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.53782, 2.48639, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.70157, 2.54237, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.24064, 2.70157, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.74844, 2.54375, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.69063, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.623432, 0.488541, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.16251, 0.363144, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.1625, 0.63884, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.623431, 1.68695, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.995621, 1.95126, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.353908, 1.68294, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.353908, 1.4151, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.430124, 1.41508, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.23319, 1.68298, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.107745, 1.4151, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.353903, 1.82857, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.619264, 1.68295, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.396494, 0.611496, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.623439, 0.611588, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.353908, 0.879425, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.53985, 0.87941, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.403873, 1.14726, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.161621, 0.879456, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.353908, 1.14726, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.0839546, 1.22969, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.0874378, 1.14722, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.396739, 1.24063, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.353849, 0.643982, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.623435, 0.81105, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.55469, 0.343887, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.70156, 0.345245, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.55469, 0.61673, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.24063, 0.374146, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.70158, 0.618073, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.16239, 2.03752, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.16251, 2.3391, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.07188, 2.29843, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_40_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_40_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 58 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_40_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_40_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_40_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 11, 12, 13, // 4 14 14, 15, 16, // 5 17 17, 18, 13, // 6 20 9, 18, 17, // 7 23 19, 20, 21, // 8 26 20, 22, 21, // 9 29 3, 5, 20, // 10 32 5, 23, 22, // 11 35 4, 24, 25, // 12 38 26, 27, 28, // 13 41 29, 30, 16, // 14 44 31, 32, 33, // 15 47 34, 35, 32, // 16 50 36, 34, 31, // 17 53 36, 31, 37, // 18 56 38, 26, 39, // 19 59 40, 41, 42, // 20 62 43, 40, 44, // 21 65 45, 46, 44, // 22 68 47, 33, 32, // 23 71 43, 48, 40, // 24 74 38, 39, 49, // 25 77 50, 51, 52, // 26 80 53, 2, 54, // 27 83 2, 53, 0, // 28 86 14, 16, 30, // 29 89 55, 56, 57, // 30 92 8, 57, 6, // 31 95 57, 8, 55, // 32 98 30, 55, 8, // 33 101 30, 8, 14, // 34 104 11, 18, 9, // 35 107 13, 18, 11, // 36 110 7, 6, 9, // 37 113 17, 7, 9, // 38 116 56, 55, 19, // 39 119 21, 56, 19, // 40 122 20, 19, 3, // 41 125 22, 20, 5, // 42 128 23, 5, 4, // 43 131 4, 25, 23, // 44 134 28, 49, 39, // 45 137 39, 26, 28, // 46 140 33, 37, 31, // 47 143 32, 31, 34, // 48 146 37, 29, 16, // 49 149 37, 16, 15, // 50 152 15, 36, 37, // 51 155 42, 44, 40, // 52 158 44, 46, 43, // 53 161 44, 32, 35, // 54 164 44, 35, 45, // 55 167 44, 42, 47, // 56 170 47, 32, 44, // 57 173 40, 48, 38, // 58 176 41, 40, 38, // 59 179 49, 41, 38, // 60 182 51, 54, 52, // 61 185 52, 28, 27, // 62 188 52, 27, 50, // 63 191 54, 51, 53, // 64 194 DX3DINDEX_END #endif #else #define index_Trim_Char_x_40_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_40_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_40_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_40_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_40_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_40_1__ ) DX3DMODEL_START( model_Trim_Char_x_40_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_40_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_40_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 195 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_40_1__, 4139720901 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_40_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_39_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_41_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_41_1___initialShadingGroup_0 ) DX3DVERT( 2.70156, 0.395309, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.67031, 0.667175, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.40869, 0.634872, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.40872, 2.32591, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.67031, 2.3875, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.62339, 2.60564, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.0125, 2.17656, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.909242, 2.60564, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.606719, 2.54283, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.788735, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.728125, 3.51874, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.606719, 3.49997, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.425, 3.47186, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.476889, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.592827, 2.60564, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.606719, 2.60564, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.606719, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.20741, 2.25366, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.20738, 2.03035, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.39267, 2.03035, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.80805, 2.45103, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.80802, 2.16516, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.40872, 2.60892, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.39494, 2.60562, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.40871, 2.60564, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.606721, 0.414291, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.20739, 0.312546, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.20738, 0.586823, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.606719, 1.74269, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.606745, 1.63487, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.20739, 1.96036, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.306387, 1.74269, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.306387, 1.45505, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.427398, 1.455, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.292816, 1.74271, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.0754703, 1.45499, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.306363, 1.75528, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.306381, 0.559158, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.606719, 0.592087, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.00563989, 1.14633, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.0520594, 0.879852, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.318484, 1.15157, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.262447, 0.592102, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.306387, 0.592087, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.306387, 0.879745, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.40609, 0.879745, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.80805, 0.31218, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.80806, 0.585693, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.47656, 0.577789, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.40871, 0.3591, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.728125, 2.04062, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.708681, 2.03033, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.6125, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 0.606716, 0.722214, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.606725, 1.97314, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.48581, 0.30452, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.76875, 2.98749, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 3.00938, 3.10468, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.96915, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.63594, 3.75624, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.40871, 3.63664, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.40871, 3.61446, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.39844, 3.63124, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.66235, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.40871, 2.94499, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.44844, 2.96405, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.40871, 3.03905, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.08594, 3.6078, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.85156, 3.4828, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.03193, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.21406, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.33199, 3.18094, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_41_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_41_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 72 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_41_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_41_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_41_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 11, 12, 13, // 4 14 14, 8, 15, // 5 17 16, 13, 14, // 6 20 9, 16, 15, // 7 23 17, 18, 19, // 8 26 20, 21, 3, // 9 29 22, 23, 24, // 10 32 22, 24, 5, // 11 35 25, 26, 27, // 12 38 28, 29, 30, // 13 41 31, 32, 33, // 14 44 34, 35, 32, // 15 47 36, 34, 31, // 16 50 36, 31, 28, // 17 53 37, 25, 38, // 18 56 39, 40, 41, // 19 59 42, 37, 43, // 20 62 42, 43, 44, // 21 65 45, 44, 43, // 22 68 46, 47, 48, // 23 71 30, 19, 18, // 24 74 49, 2, 47, // 25 77 2, 49, 0, // 26 80 5, 24, 3, // 27 83 18, 17, 6, // 28 86 7, 15, 8, // 29 89 50, 18, 6, // 30 92 8, 50, 6, // 31 95 18, 50, 51, // 32 98 11, 16, 9, // 33 101 13, 16, 11, // 34 104 14, 15, 16, // 35 107 15, 7, 9, // 36 110 21, 20, 17, // 37 113 19, 21, 17, // 38 116 3, 24, 23, // 39 119 23, 20, 3, // 40 122 5, 52, 22, // 41 125 27, 53, 38, // 42 128 38, 25, 27, // 43 131 51, 54, 28, // 44 134 30, 18, 51, // 45 137 51, 28, 30, // 46 140 29, 28, 31, // 47 143 31, 33, 29, // 48 146 32, 31, 34, // 49 149 28, 54, 36, // 50 152 38, 43, 37, // 51 155 44, 45, 41, // 52 158 41, 33, 32, // 53 161 41, 32, 35, // 54 164 35, 39, 41, // 55 167 41, 40, 44, // 56 170 44, 40, 42, // 57 173 43, 38, 53, // 58 176 43, 53, 45, // 59 179 48, 27, 26, // 60 182 48, 26, 55, // 61 185 48, 55, 46, // 62 188 47, 46, 49, // 63 191 56, 57, 58, // 64 194 59, 60, 61, // 65 197 60, 62, 61, // 66 200 58, 63, 56, // 67 203 63, 58, 59, // 68 206 61, 63, 59, // 69 209 64, 65, 66, // 70 212 67, 68, 69, // 71 215 70, 64, 66, // 72 218 69, 71, 67, // 73 221 71, 69, 70, // 74 224 66, 71, 70, // 75 227 DX3DINDEX_END #endif #else #define index_Trim_Char_x_41_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_41_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_41_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_41_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_41_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_41_1__ ) DX3DMODEL_START( model_Trim_Char_x_41_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_41_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_41_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 228 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_41_1__, 4141806037 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_41_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_40_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_42_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_42_1___initialShadingGroup_0 ) DX3DVERT( 2.58854, 2.81195, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.58854, 3.07007, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 3.16563, 3.00781, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.14584, 1.59367, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.43438, 1.63124, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.43438, 1.41733, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.669714, 1.16429, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.857274, 1.45627, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.857292, 1.41733, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.649582, 0.99559, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.857292, 1.16428, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.856952, 0.51918, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.693682, 0.748306, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.857292, 0.748077, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 1.14584, 0.373032, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 1.14583, 0.645859, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 1.43437, 0.578964, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.970715, 1.16429, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.935257, 0.994141, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 1.01728, 0.748047, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 1.14583, 1.41733, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 1.14572, 1.32283, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 1.43434, 1.37866, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 2.58854, 1.23212, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 2.69094, 1.16428, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 2.58854, 1.16428, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 1.4673, 1.63162, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.47076, 1.3793, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 1.96224, 0.748093, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 2.01146, 0.863678, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 2.01146, 0.748077, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 1.72292, 0.348282, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 1.48337, 0.331589, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.48935, 0.577728, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 2.01146, 0.539963, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.72292, 0.600876, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.86725, 0.654587, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.86719, 0.539963, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.86707, 0.377792, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.72292, 0.539963, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 2.01105, 0.434036, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.32813, 1.38594, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 2.04219, 1.2375, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 2.04219, 1.51407, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.32813, 1.07657, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 2.04235, 1.16415, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.3, 1.16428, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.2742, 0.747833, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 3.1625, 0.807816, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.98281, 0.596878, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.58854, 0.900833, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.04219, 1.67036, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.04219, 2.33961, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 2.32813, 2.33961, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 2.32813, 2.82031, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 3.13125, 2.75, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.43437, 0.332321, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.01146, 1.5257, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 2.01146, 1.2518, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 2.32813, 1.67036, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.3004, 0.841858, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.04219, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.43438, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 1.52813, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.43438, 3.00888, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 0.857292, 3.65208, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 0.946876, 3.63907, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 0.857292, 3.29837, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 0.305511, 1.67036, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 0.280209, 1.60617, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 0.280209, 1.67036, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 0.030664, 1.00111, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( -0.270606, 1.00111, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 0.00676326, 1.67036, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( -0.0359365, 0.846878, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( -0.296875, 0.940628, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( -0.215624, 3.00888, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( -0.215624, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 0.280209, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 0.258499, 2.33961, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( -0.215624, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 0.280209, 3.00888, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 0.280209, 2.33961, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 0.50625, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 0.795314, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 0.857292, 3.00888, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 0.425, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 0.280209, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 0.857292, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 1.43438, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 1.52813, 3.00888, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 0.857292, 3.08594, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 0.280209, 2.40091, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 0.554359, 2.33961, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 0.678126, 3.67813, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 0.717188, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 1.52813, 2.82813, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_42_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_42_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 97 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_42_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_42_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_42_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 6, 10, // 3 11 11, 12, 13, // 4 14 14, 15, 16, // 5 17 10, 17, 18, // 6 20 11, 13, 19, // 7 23 7, 3, 20, // 8 26 8, 20, 21, // 9 29 22, 21, 20, // 10 32 23, 24, 25, // 11 35 4, 26, 27, // 12 38 28, 29, 30, // 13 41 31, 32, 33, // 14 44 28, 30, 34, // 15 47 35, 36, 37, // 16 50 38, 31, 39, // 17 53 40, 38, 37, // 18 56 41, 42, 43, // 19 59 44, 45, 46, // 20 62 45, 45, 46, // 21 65 47, 40, 34, // 22 68 48, 49, 50, // 23 71 51, 52, 53, // 24 74 54, 53, 52, // 25 77 2, 55, 0, // 26 80 5, 20, 3, // 27 83 8, 10, 6, // 28 86 10, 13, 12, // 29 89 10, 12, 9, // 30 92 16, 56, 14, // 31 95 18, 19, 13, // 32 98 18, 13, 10, // 33 101 15, 14, 11, // 34 104 19, 15, 11, // 35 107 20, 8, 7, // 36 110 17, 10, 8, // 37 113 21, 17, 8, // 38 116 20, 5, 22, // 39 119 57, 58, 27, // 40 122 27, 22, 5, // 41 125 5, 4, 27, // 42 128 27, 26, 57, // 43 131 56, 16, 33, // 44 134 33, 35, 39, // 45 137 39, 31, 33, // 46 140 33, 32, 56, // 47 143 34, 37, 36, // 48 146 34, 36, 28, // 49 149 37, 39, 35, // 50 152 39, 37, 38, // 51 155 37, 34, 40, // 52 158 23, 25, 46, // 53 161 58, 57, 43, // 54 164 43, 51, 59, // 55 167 59, 41, 43, // 56 170 43, 42, 58, // 57 173 46, 45, 42, // 58 176 46, 42, 41, // 59 179 46, 41, 23, // 60 182 25, 50, 44, // 61 185 44, 46, 25, // 62 188 47, 30, 29, // 63 191 60, 29, 45, // 64 194 45, 44, 60, // 65 197 29, 60, 47, // 66 200 34, 30, 47, // 67 203 50, 25, 24, // 68 206 24, 48, 50, // 69 209 53, 59, 51, // 70 212 1, 0, 54, // 71 215 61, 1, 54, // 72 218 52, 61, 54, // 73 221 62, 63, 64, // 74 224 65, 66, 67, // 75 227 68, 69, 70, // 76 230 71, 72, 73, // 77 233 74, 75, 72, // 78 236 76, 77, 78, // 79 239 70, 73, 79, // 80 242 80, 76, 81, // 81 245 68, 70, 82, // 82 248 83, 84, 85, // 83 251 86, 87, 81, // 84 254 88, 85, 64, // 85 257 89, 64, 90, // 86 260 91, 62, 85, // 87 263 92, 82, 79, // 88 266 63, 90, 64, // 89 269 73, 70, 69, // 90 272 69, 71, 73, // 91 275 72, 71, 74, // 92 278 78, 81, 76, // 93 281 79, 82, 70, // 94 284 81, 87, 80, // 95 287 82, 93, 68, // 96 290 83, 94, 65, // 97 293 84, 91, 85, // 98 296 81, 78, 83, // 99 299 83, 86, 81, // 100 302 67, 84, 83, // 101 305 83, 65, 67, // 102 308 93, 82, 92, // 103 311 85, 88, 95, // 104 314 95, 83, 85, // 105 317 86, 83, 95, // 106 320 86, 95, 93, // 107 323 92, 86, 93, // 108 326 64, 89, 88, // 109 329 90, 96, 89, // 110 332 62, 64, 85, // 111 335 DX3DINDEX_END #endif #else #define index_Trim_Char_x_42_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_42_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_42_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_42_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_42_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_42_1__ ) DX3DMODEL_START( model_Trim_Char_x_42_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_42_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_42_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 336 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_42_1__, 4143891173 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_42_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_41_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_43_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_43_1___initialShadingGroup_0 ) DX3DVERT( 2.98281, 0.612503, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.9444, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.79727, 0.842957, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.54971, 1.9039, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.43125, 2.00468, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.31557, 1.9039, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.06225, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.17437, 0.735703, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.17438, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.17438, 1.75272, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.957954, 1.37341, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 1.17438, 1.37343, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.17438, 0.975586, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.77713, 0.510498, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.7772, 0.785156, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.53572, 0.842941, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.26801, 1.37341, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.47578, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.47578, 0.867767, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.32508, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.17438, 1.1082, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.24299, 1.10822, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.22806, 1.20866, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.32508, 0.970154, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.3199, 0.975586, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.08881, 0.491592, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.37996, 0.506439, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.09023, 0.765305, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.93906, 0.875, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.38, 0.779327, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.931209, 1.20613, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.64063, 1.82655, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.162501, 0.3125, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.456251, 0.351563, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.352297, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( -0.031249, 1.9039, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( -0.0299914, 1.77129, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.268751, 1.9039, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.162501, 3.49532, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.0515476, 2.96484, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.352297, 2.96484, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( -0.010996, 2.43437, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.289058, 2.43437, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( -0.010996, 1.37343, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.289058, 1.37343, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.27001, 1.77129, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.0515476, 0.842972, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.456251, 3.45625, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.38, 2.96484, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.38, 2.87968, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.88594, 2.87968, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.22813, 2.96484, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.22813, 2.87968, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.77719, 2.87968, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.22813, 3.14375, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.77719, 2.96484, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.38, 3.14375, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.88594, 2.96484, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.77719, 3.14375, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.88594, 3.14375, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_43_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_43_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 60 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_43_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_43_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_43_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 6, 8, 12, // 4 14 13, 14, 15, // 5 17 9, 11, 16, // 6 20 17, 15, 18, // 7 23 19, 17, 18, // 8 26 20, 21, 22, // 9 29 8, 19, 23, // 10 32 12, 24, 21, // 11 35 25, 26, 27, // 12 38 1, 28, 2, // 13 41 2, 29, 26, // 14 44 2, 26, 0, // 15 47 20, 11, 10, // 16 50 12, 20, 30, // 17 53 12, 30, 6, // 18 56 10, 30, 20, // 19 59 19, 8, 7, // 20 62 17, 7, 13, // 21 65 13, 15, 17, // 22 68 7, 17, 19, // 23 71 31, 3, 5, // 24 74 31, 5, 9, // 25 77 16, 31, 9, // 26 80 18, 23, 19, // 27 83 22, 16, 11, // 28 86 22, 11, 20, // 29 89 24, 12, 8, // 30 92 23, 24, 8, // 31 95 21, 20, 12, // 32 98 26, 29, 27, // 33 101 27, 14, 13, // 34 104 13, 25, 27, // 35 107 32, 33, 34, // 36 110 35, 36, 37, // 37 113 38, 39, 40, // 38 116 39, 41, 42, // 39 119 43, 44, 45, // 40 122 46, 34, 44, // 41 125 34, 46, 32, // 42 128 36, 45, 37, // 43 131 37, 42, 41, // 44 134 37, 41, 35, // 45 137 40, 47, 38, // 46 140 42, 40, 39, // 47 143 45, 36, 43, // 48 146 44, 43, 46, // 49 149 48, 49, 50, // 50 152 51, 52, 53, // 51 155 54, 51, 55, // 52 158 56, 48, 57, // 53 161 58, 55, 48, // 54 164 55, 53, 49, // 55 167 50, 57, 48, // 56 170 53, 55, 51, // 57 173 55, 58, 54, // 58 176 57, 59, 56, // 59 179 48, 56, 58, // 60 182 49, 48, 55, // 61 185 DX3DINDEX_END #endif #else #define index_Trim_Char_x_43_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_43_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_43_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_43_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_43_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_43_1__ ) DX3DMODEL_START( model_Trim_Char_x_43_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_43_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_43_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 186 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_43_1__, 4145976309 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_43_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_42_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_44_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_44_1___initialShadingGroup_0 ) DX3DVERT( 2.68281, 0.990631, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.87344, 0.792191, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 3.02139, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.950184, 0.739166, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.19071, 1.0042, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.950104, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.07548, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.950104, 2.95367, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.950104, 2.6692, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.374733, 2.65837, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.0623879, 2.32567, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.0870566, 2.32558, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.374739, 3.47737, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.229688, 3.44376, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.335008, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.646876, 2.83282, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.607391, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.485939, 3.50313, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.38362, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.3836, 3.03014, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.086882, 0.635727, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.374737, 0.493988, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.374739, 0.673965, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.0874407, 1.66492, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.183522, 1.99527, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.0870566, 1.99525, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( -0.108267, 1.99512, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( -0.187583, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.374718, 2.2852, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.374739, 2.32558, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.0870566, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.162565, 1.00439, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.0733892, 1.46407, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.0489181, 0.673584, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.0870566, 0.673965, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.38362, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.38362, 1.84523, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.28837, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.782974, 2.32558, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.511679, 2.32558, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.710868, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.66223, 0.538803, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.875435, 0.673798, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.662421, 0.673965, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.950104, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.904688, 1.08438, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.662423, 0.853256, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.448438, 0.773422, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.833585, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.983306, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.6762, 2.32558, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.90086, 2.32559, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.6762, 2.61894, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.38364, 2.7571, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.52812, 2.7627, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.52813, 3.03447, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.55476, 2.32559, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.13822, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.32031, 3.59219, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.10083, 3.6366, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.74212, 0.50177, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.10081, 0.34816, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.10078, 0.596207, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.60543, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.90155, 2.32559, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.60276, 2.32558, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.92153, 1.16945, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.92152, 1.11478, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.01005, 1.16948, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.38356, 1.27632, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.42013, 1.33463, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.38362, 1.33461, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.10083, 1.44345, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.78696, 1.33463, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.92153, 1.33461, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.74223, 1.16945, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.74223, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.84576, 1.00427, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.7422, 1.30016, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.10082, 1.19521, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.10083, 1.33461, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.61365, 0.674011, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.74223, 0.673965, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.74223, 0.839127, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.92997, 0.673294, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.9209, 0.681335, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 1.92153, 0.673965, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.83412, 0.839127, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.82783, 0.901566, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.6762, 2.13309, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.77655, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 3.06117, 1.66493, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.67619, 0.531097, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.6762, 0.673965, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.46587, 0.673935, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.66756, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.6762, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.6762, 1.31062, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.18856, 1.20245, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.3886, 1.17012, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.38852, 1.33461, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.19952, 1.44855, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.63582, 1.33461, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 2.38852, 1.42902, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 2.38856, 0.369141, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 2.38853, 0.629181, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 2.19239, 0.588272, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 2.6762, 0.97316, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 2.74844, 1.26094, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 2.97813, 1.05, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 3.06118, 1.65788, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 0.374739, 2.83015, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 0.374739, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 0.950104, 1.76924, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 0.412351, 2.32559, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 1.57584, 1.0043, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.6762, 0.996613, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 3.05313, 0.570313, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 3.25156, 0.721878, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 0.4125, 2.6875, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 0.717188, 2.5625, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 0.490626, 2.40001, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT( -0.200618, 1.45085, 0 ) DX3DVNORM( 0, 0, 1 ) //122 DX3DVERT( -0.136858, 1.00429, 0 ) DX3DVNORM( 0, 0, 1 ) //123 DX3DVERT( 0.37474, 0.785446, 0 ) DX3DVNORM( 0, 0, 1 ) //124 DX3DVERT( 0.444987, 0.489059, 0 ) DX3DVNORM( 0, 0, 1 ) //125 DX3DVERT( 1.09063, 1.33907, 0 ) DX3DVNORM( 0, 0, 1 ) //126 DX3DVERT( 1.76563, 2.74689, 0 ) DX3DVNORM( 0, 0, 1 ) //127 DX3DVERT( 2.03438, 2.67969, 0 ) DX3DVNORM( 0, 0, 1 ) //128 DX3DVERT( 2.10083, 2.65497, 0 ) DX3DVNORM( 0, 0, 1 ) //129 DX3DVERT( 2.10083, 2.98624, 0 ) DX3DVNORM( 0, 0, 1 ) //130 DX3DVERT( 2.05, 3.64688, 0 ) DX3DVNORM( 0, 0, 1 ) //131 DX3DVERT( 1.85625, 3.00781, 0 ) DX3DVNORM( 0, 0, 1 ) //132 DX3DVERT( 2.125, 2.94531, 0 ) DX3DVNORM( 0, 0, 1 ) //133 DX3DVERT( 1.56683, 0.901566, 0 ) DX3DVNORM( 0, 0, 1 ) //134 DX3DVERT( 2.19123, 0.343567, 0 ) DX3DVNORM( 0, 0, 1 ) //135 DX3DVERT( 2.77664, 1.64998, 0 ) DX3DVNORM( 0, 0, 1 ) //136 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_44_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_44_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 137 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_44_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_44_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_44_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 8, 7, 15, // 5 17 16, 17, 12, // 6 20 18, 19, 6, // 7 23 20, 21, 22, // 8 26 23, 24, 25, // 9 29 26, 27, 23, // 10 32 10, 26, 25, // 11 35 28, 29, 11, // 12 38 30, 31, 32, // 13 41 33, 20, 34, // 14 44 33, 34, 30, // 15 47 31, 30, 34, // 16 50 35, 36, 37, // 17 53 38, 39, 40, // 18 56 41, 42, 43, // 19 59 44, 40, 45, // 20 62 41, 43, 22, // 21 65 43, 46, 47, // 22 68 3, 5, 48, // 23 71 49, 44, 5, // 24 74 50, 51, 52, // 25 77 18, 53, 54, // 26 80 55, 19, 18, // 27 83 56, 50, 52, // 28 86 57, 58, 59, // 29 89 60, 61, 62, // 30 92 63, 64, 65, // 31 95 66, 67, 68, // 32 98 69, 70, 71, // 33 101 70, 63, 35, // 34 104 72, 73, 74, // 35 107 75, 76, 77, // 36 110 78, 75, 66, // 37 113 79, 80, 74, // 38 116 81, 60, 82, // 39 119 81, 82, 83, // 40 122 84, 85, 86, // 41 125 87, 83, 82, // 42 128 88, 77, 76, // 43 131 89, 90, 91, // 44 134 50, 56, 89, // 45 137 92, 93, 94, // 46 140 95, 96, 97, // 47 143 98, 99, 100, // 48 146 101, 72, 80, // 49 149 102, 103, 100, // 50 152 104, 105, 106, // 51 155 93, 107, 94, // 52 158 108, 109, 110, // 53 161 111, 112, 14, // 54 164 49, 113, 44, // 55 167 28, 114, 29, // 56 170 75, 78, 115, // 57 173 96, 95, 116, // 58 176 93, 92, 1, // 59 179 1, 117, 118, // 60 182 2, 96, 0, // 61 185 116, 0, 96, // 62 188 118, 2, 1, // 63 191 1, 0, 107, // 64 194 107, 93, 1, // 65 197 8, 53, 18, // 66 200 8, 18, 6, // 67 203 11, 29, 9, // 68 206 14, 112, 12, // 69 209 9, 29, 114, // 70 212 16, 112, 111, // 71 215 15, 119, 120, // 72 218 120, 119, 9, // 73 221 15, 120, 8, // 74 224 111, 119, 15, // 75 227 111, 15, 16, // 76 230 121, 39, 38, // 77 233 114, 121, 9, // 78 236 120, 9, 121, // 79 239 38, 120, 121, // 80 242 12, 112, 16, // 81 245 22, 34, 20, // 82 248 25, 23, 23, // 83 251 23, 25, 26, // 84 254 25, 11, 10, // 85 257 11, 25, 24, // 86 260 11, 24, 28, // 87 263 32, 23, 23, // 88 266 32, 27, 122, // 89 269 32, 122, 123, // 90 272 123, 30, 32, // 91 275 23, 27, 32, // 92 278 30, 123, 33, // 93 281 34, 22, 124, // 94 284 34, 124, 31, // 95 287 40, 44, 113, // 96 290 113, 38, 40, // 97 293 45, 48, 5, // 98 296 5, 44, 45, // 99 299 22, 21, 125, // 100 302 125, 41, 22, // 101 305 47, 124, 22, // 102 308 22, 43, 47, // 103 311 46, 43, 42, // 104 314 46, 42, 3, // 105 317 3, 48, 46, // 106 320 71, 35, 37, // 107 323 4, 69, 126, // 108 326 5, 4, 126, // 109 329 5, 126, 49, // 110 332 126, 69, 71, // 111 335 37, 126, 71, // 112 338 127, 65, 64, // 113 341 127, 55, 18, // 114 344 54, 127, 18, // 115 347 128, 129, 130, // 116 350 128, 130, 127, // 117 353 64, 128, 127, // 118 356 59, 131, 132, // 119 359 132, 127, 130, // 120 362 55, 127, 132, // 121 365 132, 130, 59, // 122 368 133, 57, 130, // 123 371 52, 133, 129, // 124 374 52, 129, 56, // 125 377 130, 129, 133, // 126 380 59, 130, 57, // 127 383 86, 82, 60, // 128 386 62, 84, 60, // 129 389 60, 84, 86, // 130 392 36, 35, 63, // 131 395 63, 65, 36, // 132 398 35, 71, 70, // 133 401 74, 80, 72, // 134 404 67, 66, 75, // 135 407 75, 77, 67, // 136 410 66, 74, 73, // 137 413 66, 73, 78, // 138 416 74, 66, 68, // 139 419 68, 79, 74, // 140 422 76, 115, 134, // 141 425 83, 76, 134, // 142 428 83, 134, 81, // 143 431 82, 86, 85, // 144 434 82, 85, 87, // 145 437 83, 87, 88, // 146 440 88, 76, 83, // 147 443 51, 50, 89, // 148 446 89, 91, 51, // 149 449 105, 104, 92, // 150 452 92, 94, 105, // 151 455 97, 102, 100, // 152 458 97, 100, 99, // 153 461 97, 99, 95, // 154 464 80, 79, 98, // 155 467 98, 100, 80, // 156 470 80, 100, 103, // 157 473 80, 103, 101, // 158 476 106, 62, 61, // 159 479 106, 61, 135, // 160 482 135, 104, 106, // 161 485 108, 97, 96, // 162 488 110, 91, 90, // 163 491 110, 90, 136, // 164 494 136, 108, 110, // 165 497 96, 2, 109, // 166 500 109, 108, 96, // 167 503 115, 76, 75, // 168 506 DX3DINDEX_END #endif #else #define index_Trim_Char_x_44_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_44_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_44_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_44_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_44_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_44_1__ ) DX3DMODEL_START( model_Trim_Char_x_44_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_44_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_44_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 507 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_44_1__, 4148061445 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_44_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_43_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_45_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_45_1___initialShadingGroup_0 ) DX3DVERT( 2.64064, 2.99644, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.73502, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.64063, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.34115, 2.9106, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.47199, 2.99141, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.47188, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.47188, 1.10078, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.47188, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.3837, 1.01874, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( -0.0749996, 1.02969, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( -0.28125, 1.20938, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.0296157, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.579689, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.579689, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.853126, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.579689, 0.278122, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.853126, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 1.47185, 0.695816, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.38897, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( -0.215624, 2.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.303125, 2.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( -0.215624, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.303125, 1.91731, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.303125, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( -0.215624, 2.68437, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.303125, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.993317, 2.25246, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.887505, 2.14627, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.8875, 2.2525, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.853126, 2.11093, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.579689, 2.22343, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.579689, 2.92969, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.579689, 3.56876, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.853126, 3.56876, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.853126, 2.50468, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 0.887502, 2.53741, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.47188, 2.6627, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.95938, 1.12344, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 2.64063, 1.08484, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 2.725, 1.36563, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.76478, 1.26535, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.76406, 1.57716, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.76406, 0.607193, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.76406, 0.767975, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.05625, 0.65657, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.61797, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 1.76408, 0.454636, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.54098, 0.607056, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.05625, 0.607193, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 1.61797, 1.2653, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 1.76403, 1.26468, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 1.47188, 1.2653, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 1.61797, 1.10078, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 1.65561, 1.01797, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 1.66501, 0.936218, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 2.64063, 1.43509, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 2.64063, 1.2653, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.43828, 1.26593, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 2.58549, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 2.64063, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.64063, 0.607193, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.08629, 0.655823, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.34844, 0.711548, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.34844, 0.607193, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 2.08776, 0.395157, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.05625, 0.395584, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.6406, 0.59491, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 2.34851, 0.431641, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.33469, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.34844, 1.59007, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.34834, 1.31744, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 3.11334, 0.936249, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 3.225, 0.789063, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 3.03281, 0.620316, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.05626, 3.16342, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.05625, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.05625, 1.63121, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.05625, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 1.81427, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.05624, 2.88765, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 3.04899, 1.78751, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 2.7573, 1.78867, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.72072, 2.2525, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 2.07797, 1.63139, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 2.34844, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 2.64063, 2.58156, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.61403, 2.5816, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.07871, 2.88811, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 2.64089, 2.52693, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 2.34844, 3.1342, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.93299, 2.57808, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 3.01558, 2.25252, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.93281, 2.2525, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.93166, 2.58163, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 0.389447, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 0.303125, 1.49255, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.64063, 1.04623, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 1.47184, 1.34305, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 0.853126, 0.278122, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 0.303125, 2.68437, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 0.579689, 2.2525, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 0.579689, 1.81406, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 0.579689, 2.68437, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 0.853126, 2.91063, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 2.75041, 1.59439, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 3.04223, 1.59438, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 2.65156, 1.07344, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 2.05625, 1.36983, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 1.66554, 1.10075, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 2.08613, 1.37053, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( 2.84688, 0.854691, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 2.34839, 2.83487, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( 2.08594, 3.16402, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_45_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_45_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 113 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_45_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_45_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_45_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 12, 16, // 5 17 7, 17, 18, // 6 20 19, 20, 21, // 7 23 22, 23, 11, // 8 26 24, 21, 25, // 9 29 26, 27, 28, // 10 32 29, 14, 30, // 11 35 31, 32, 33, // 12 38 34, 35, 28, // 13 41 35, 3, 36, // 14 44 37, 38, 39, // 15 47 40, 40, 41, // 16 50 42, 43, 44, // 17 53 17, 7, 45, // 18 56 46, 47, 42, // 19 59 46, 42, 48, // 20 62 41, 40, 49, // 21 65 49, 40, 50, // 22 68 6, 51, 49, // 23 71 7, 6, 52, // 24 74 53, 54, 45, // 25 77 40, 50, 40, // 26 80 55, 56, 57, // 27 83 58, 59, 60, // 28 86 61, 62, 63, // 29 89 64, 65, 48, // 30 92 66, 67, 63, // 31 95 68, 69, 70, // 32 98 56, 38, 57, // 33 101 71, 72, 73, // 34 104 4, 74, 75, // 35 107 76, 77, 78, // 36 110 79, 36, 5, // 37 113 80, 81, 82, // 38 116 77, 76, 83, // 39 119 0, 2, 84, // 40 122 2, 85, 86, // 41 125 87, 79, 75, // 42 128 85, 88, 86, // 43 131 89, 84, 75, // 44 134 90, 91, 92, // 45 137 1, 93, 85, // 46 140 90, 92, 82, // 47 143 94, 95, 23, // 48 146 59, 58, 96, // 49 149 7, 18, 8, // 50 152 8, 97, 51, // 51 155 51, 6, 8, // 52 158 11, 23, 95, // 53 161 95, 9, 11, // 54 164 14, 16, 12, // 55 167 16, 98, 15, // 56 170 20, 25, 21, // 57 173 25, 99, 24, // 58 176 94, 23, 22, // 59 179 28, 27, 29, // 60 182 30, 100, 28, // 61 185 28, 29, 30, // 62 188 14, 13, 101, // 63 191 22, 101, 94, // 64 194 101, 22, 30, // 65 197 101, 30, 14, // 66 200 25, 20, 31, // 67 203 31, 102, 25, // 68 206 33, 103, 31, // 69 209 102, 99, 25, // 70 212 100, 102, 34, // 71 215 34, 28, 100, // 72 218 103, 34, 102, // 73 221 102, 31, 103, // 74 224 3, 5, 36, // 75 227 26, 28, 35, // 76 230 35, 36, 26, // 77 233 71, 59, 96, // 78 236 56, 55, 39, // 79 239 39, 104, 105, // 80 242 105, 37, 39, // 81 245 39, 38, 56, // 82 248 106, 38, 37, // 83 251 96, 106, 71, // 84 254 37, 71, 106, // 85 257 41, 78, 107, // 86 260 107, 78, 77, // 87 263 107, 40, 41, // 88 266 44, 48, 42, // 89 269 43, 42, 47, // 90 272 54, 43, 17, // 91 275 17, 45, 54, // 92 278 47, 17, 43, // 93 281 48, 65, 46, // 94 284 49, 51, 97, // 95 287 97, 41, 49, // 96 290 108, 52, 49, // 97 293 49, 50, 108, // 98 296 49, 52, 6, // 99 299 52, 45, 7, // 100 302 52, 108, 53, // 101 305 45, 52, 53, // 102 308 70, 69, 55, // 103 311 55, 57, 70, // 104 314 60, 63, 62, // 105 317 60, 62, 58, // 106 320 48, 44, 61, // 107 323 61, 63, 48, // 108 326 48, 63, 67, // 109 329 48, 67, 64, // 110 332 63, 60, 66, // 111 335 109, 107, 77, // 112 338 109, 77, 68, // 113 341 70, 109, 68, // 114 344 110, 66, 60, // 115 347 110, 59, 71, // 116 350 73, 110, 71, // 117 353 60, 59, 110, // 118 356 75, 5, 4, // 119 359 5, 75, 79, // 120 362 105, 104, 81, // 121 365 92, 91, 80, // 122 368 80, 82, 92, // 123 371 81, 80, 105, // 124 374 83, 68, 77, // 125 377 84, 89, 0, // 126 380 111, 84, 2, // 127 383 86, 111, 2, // 128 386 84, 111, 87, // 129 389 75, 84, 87, // 130 392 75, 74, 112, // 131 395 112, 89, 75, // 132 398 85, 2, 1, // 133 401 85, 93, 90, // 134 404 88, 85, 90, // 135 407 90, 82, 88, // 136 410 DX3DINDEX_END #endif #else #define index_Trim_Char_x_45_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_45_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_45_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_45_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_45_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_45_1__ ) DX3DMODEL_START( model_Trim_Char_x_45_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_45_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_45_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 411 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_45_1__, 4150146581 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_45_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_44_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_46_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_46_1___initialShadingGroup_0 ) DX3DVERT( 2.55004, 2.75122, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.54998, 3.03984, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.83678, 2.75117, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.45003, 3.33173, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.45003, 2.75122, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.35313, 3.04688, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.17434, 0.996033, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.900018, 0.996002, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.89981, 1.11131, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( -0.050562, 0.996048, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( -0.197474, 1.58107, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.0869852, 1.58105, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.0747232, 0.79599, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.0750045, 0.996002, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.280271, 0.995987, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.350213, 0.558258, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.154509, 0.703003, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.350009, 0.703461, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.828625, 0.996002, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.900018, 0.703461, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.553149, 0.799988, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.625009, 0.81337, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.625013, 0.703461, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.553828, 0.510773, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.487511, 0.703461, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.350009, 0.849731, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.349872, 0.908783, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.41571, 0.849899, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.899987, 0.636765, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.625018, 0.515564, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.179031, 2.75131, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.350011, 2.91891, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.350009, 2.75122, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( -0.137543, 2.16618, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.162235, 2.16611, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 0.0837912, 1.68553, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 0.349873, 2.51251, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.08672, 1.58107, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.2236, 2.16608, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.45003, 2.16615, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.900018, 3.2283, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 0.900016, 2.93132, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 0.587823, 2.75113, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.31703, 2.75125, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.78807, 1.58109, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 3.07705, 1.58105, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.87142, 0.996017, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.825, 0.6828, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.00003, 0.713272, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.00004, 0.424957, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.50282, 0.995895, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.55011, 1.04916, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.55004, 0.996002, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 2.55004, 0.646255, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 1.59426, 3.33629, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.52331, 2.16612, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.45009, 1.80606, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.81577, 1.90468, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 3.0796, 2.16611, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 3.1001, 1.8925, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.00004, 3.00926, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.00003, 3.29395, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.55008, 2.65683, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.45836, 2.75122, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.39383, 1.58107, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 0.487572, 0.811432, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( -0.200201, 1.68124, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.88281, 0.410934, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 1.64844, 3.0625, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 1.61203, 2.75122, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.7904, 2.16614, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_46_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_46_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 71 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_46_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_46_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_46_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 12, 9, 13, // 5 17 15, 16, 17, // 6 20 18, 8, 7, // 7 23 18, 7, 19, // 8 26 20, 21, 22, // 9 29 23, 15, 24, // 10 32 25, 26, 27, // 11 35 17, 25, 27, // 12 38 28, 29, 22, // 13 41 6, 28, 19, // 14 44 30, 31, 32, // 15 47 33, 34, 35, // 16 50 30, 32, 36, // 17 53 37, 38, 39, // 18 56 31, 40, 41, // 19 59 42, 36, 32, // 20 62 39, 38, 43, // 21 65 44, 45, 46, // 22 68 47, 48, 49, // 23 71 50, 51, 52, // 24 74 50, 52, 53, // 25 77 46, 53, 52, // 26 80 4, 3, 54, // 27 83 55, 56, 39, // 28 86 55, 39, 4, // 29 89 57, 58, 59, // 30 92 60, 61, 1, // 31 95 62, 63, 0, // 32 98 62, 0, 2, // 33 101 4, 43, 5, // 34 104 5, 41, 40, // 35 107 40, 3, 5, // 36 110 37, 64, 6, // 37 113 8, 37, 6, // 38 116 11, 14, 13, // 39 119 13, 9, 11, // 40 122 25, 17, 16, // 41 125 26, 25, 12, // 42 128 12, 14, 26, // 43 131 16, 12, 25, // 44 134 19, 22, 21, // 45 137 19, 21, 18, // 46 140 24, 65, 20, // 47 143 20, 22, 24, // 48 146 15, 17, 24, // 49 149 22, 29, 23, // 50 152 23, 24, 22, // 51 155 65, 24, 17, // 52 158 27, 65, 17, // 53 161 22, 19, 28, // 54 164 19, 7, 6, // 55 167 35, 11, 10, // 56 170 35, 10, 66, // 57 173 66, 33, 35, // 58 176 34, 33, 30, // 59 179 36, 34, 30, // 60 182 56, 64, 37, // 61 185 37, 39, 56, // 62 188 42, 32, 31, // 63 191 31, 41, 42, // 64 194 43, 4, 39, // 65 197 46, 52, 51, // 66 200 51, 44, 46, // 67 203 49, 67, 47, // 68 206 53, 49, 48, // 69 209 53, 48, 50, // 70 212 61, 60, 68, // 71 215 68, 69, 4, // 72 218 4, 54, 68, // 73 221 68, 54, 61, // 74 224 4, 69, 55, // 75 227 57, 70, 58, // 76 230 45, 44, 57, // 77 233 57, 59, 45, // 78 236 1, 0, 63, // 79 239 63, 60, 1, // 80 242 2, 58, 70, // 81 245 2, 70, 62, // 82 248 DX3DINDEX_END #endif #else #define index_Trim_Char_x_46_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_46_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_46_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_46_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_46_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_46_1__ ) DX3DMODEL_START( model_Trim_Char_x_46_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_46_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_46_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 249 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_46_1__, 4152231717 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_46_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_45_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_47_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_47_1___initialShadingGroup_0 ) DX3DVERT( 2.58255, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.58255, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 3.11875, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 0.959897, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 0.959897, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.50078, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.2303, 1.57895, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.50076, 1.63567, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.50078, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 1.23034, 0.58255, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 1.23028, 0.69249, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 1.50078, 0.586792, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.832741, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.959897, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.959897, 0.58255, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 1.12485, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.959866, 0.576294, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 1.23034, 0.387695, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.50078, 0.58255, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.947624, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.95989, 1.40678, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.959897, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.959897, 1.12267, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 1.50077, 1.37029, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 1.2303, 1.27884, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 1.23034, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 1.11943, 1.12256, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.10256, 1.00296, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.920313, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.920313, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 2.58249, 1.25638, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 3.0354, 0.852585, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 2.63277, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 2.0417, 1.57762, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.64075, 1.37819, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.64727, 1.64253, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.77124, 0.5858, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.04181, 0.716888, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 2.04167, 0.58255, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.53568, 0.582581, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.50081, 0.325409, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.04169, 0.3815, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.77121, 0.321259, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.77122, 0.58255, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.04167, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 2.04167, 1.28644, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 3.12344, 0.765625, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.92344, 0.570313, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.40851, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.31227, 0.601715, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.31211, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.29934, 0.582443, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.42813, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 2.14375, 1.53751, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 2.58255, 0.897995, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 2.42813, 1.02969, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.50078, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.04167, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 2.14375, 1.93282, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 2.14375, 2.47292, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.42813, 2.47292, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.14375, 3.01302, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.14375, 3.55313, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.42813, 3.55313, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 2.14375, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.42813, 2.90625, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.42813, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.743, 0.582352, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 3.11875, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 0.818161, 1.00626, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 1.66316, 0.316956, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 1.63904, 0.577255, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.11298, 0.852325, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.42813, 1.93282, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.1441, 1.12595, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.14375, 1.23282, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.42813, 1.37032, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.04167, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.42813, 3.01302, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.14375, 2.64531, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 0.257415, 3.01302, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( -0.030403, 3.01302, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 0.0734386, 3.49532, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 0.162501, 1.90392, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 0.182162, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( -0.102923, 1.39272, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 0.247493, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 0.354688, 0.351563, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 0.0734386, 0.3125, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( -0.0399629, 0.8526, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 0.162563, 1.93282, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( -0.121814, 1.93282, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( -0.098358, 2.47292, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 0.186898, 2.47292, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 0.354688, 3.45625, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( -0.121874, 1.90392, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_47_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_47_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 96 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_47_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_47_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_47_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 14, 13, 15, // 5 17 16, 14, 9, // 6 20 17, 9, 18, // 7 23 19, 20, 21, // 8 26 19, 21, 22, // 9 29 23, 24, 25, // 10 32 26, 22, 21, // 11 35 27, 15, 13, // 12 38 20, 6, 25, // 13 41 28, 29, 4, // 14 44 30, 31, 32, // 15 47 33, 34, 35, // 16 50 36, 37, 38, // 17 53 18, 11, 39, // 18 56 40, 18, 39, // 19 59 41, 42, 43, // 20 62 44, 45, 34, // 21 65 31, 46, 47, // 22 68 48, 49, 50, // 23 71 51, 38, 37, // 24 74 51, 41, 38, // 25 77 52, 44, 53, // 26 80 30, 54, 55, // 27 83 56, 5, 57, // 28 86 58, 59, 60, // 29 89 61, 62, 63, // 30 92 64, 65, 66, // 31 95 43, 67, 36, // 32 98 2, 68, 0, // 33 101 5, 56, 3, // 34 104 8, 25, 6, // 35 107 11, 18, 9, // 36 110 14, 16, 12, // 37 113 10, 9, 14, // 38 116 14, 15, 10, // 39 119 9, 17, 16, // 40 122 18, 40, 17, // 41 125 13, 12, 69, // 42 128 22, 13, 69, // 43 131 22, 69, 19, // 44 134 25, 8, 23, // 45 137 21, 25, 24, // 46 140 24, 26, 21, // 47 143 22, 26, 27, // 48 146 27, 13, 22, // 49 149 25, 21, 20, // 50 152 4, 3, 28, // 51 155 32, 54, 30, // 52 158 8, 7, 35, // 53 161 35, 34, 8, // 54 164 38, 43, 36, // 55 167 67, 43, 42, // 56 170 39, 42, 70, // 57 173 39, 70, 40, // 58 176 42, 39, 71, // 59 179 42, 71, 67, // 60 182 43, 38, 41, // 61 185 34, 23, 8, // 62 188 34, 33, 44, // 63 191 47, 32, 31, // 64 194 50, 49, 51, // 65 197 72, 50, 51, // 66 200 37, 72, 51, // 67 203 44, 33, 53, // 68 206 53, 58, 73, // 69 209 73, 52, 53, // 70 212 74, 75, 55, // 71 215 45, 44, 75, // 72 218 75, 52, 76, // 73 221 55, 76, 30, // 74 224 76, 55, 75, // 75 227 52, 75, 44, // 76 230 55, 48, 50, // 77 233 50, 72, 74, // 78 236 74, 55, 50, // 79 239 57, 77, 56, // 80 242 60, 73, 58, // 81 245 63, 78, 61, // 82 248 65, 1, 66, // 83 251 77, 57, 64, // 84 254 66, 60, 59, // 85 257 66, 59, 79, // 86 260 66, 79, 64, // 87 263 64, 79, 77, // 88 266 61, 78, 65, // 89 269 1, 0, 66, // 90 272 65, 64, 61, // 91 275 80, 81, 82, // 92 278 83, 84, 85, // 93 281 86, 87, 88, // 94 284 84, 86, 89, // 95 287 90, 91, 92, // 96 290 93, 92, 81, // 97 293 82, 94, 80, // 98 296 91, 90, 83, // 99 299 95, 91, 83, // 100 302 83, 85, 95, // 101 305 88, 89, 86, // 102 308 89, 85, 84, // 103 311 92, 93, 90, // 104 314 81, 80, 93, // 105 317 DX3DINDEX_END #endif #else #define index_Trim_Char_x_47_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_47_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_47_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_47_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_47_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_47_1__ ) DX3DMODEL_START( model_Trim_Char_x_47_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_47_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_47_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 318 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_47_1__, 4154316853 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_47_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_46_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_48_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_48_1___initialShadingGroup_0 ) DX3DVERT( 0.0062501, 0.273438, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 0.287501, 0.3125, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 0.172897, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( -0.14389, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( -0.185089, 2.04843, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.0993775, 2.04843, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.0062501, 3.45625, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( -0.0472479, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.242405, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.142117, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.175549, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.109273, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.0968765, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.114224, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.287501, 3.41719, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.1875, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.77995, 0.543747, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.79219, 0.53125, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 2.99063, 0.726563, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.53169, 0.277969, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.59296, 0.542587, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.51155, 0.538651, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.99948, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.59297, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.99948, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.790626, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.790626, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.790626, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.99948, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.59297, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.999464, 1.49626, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.99948, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.14785, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.93257, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.803294, 0.56926, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.999446, 0.396027, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.99948, 0.569275, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.702735, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.979382, 0.865082, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.969915, 0.965027, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.685345, 0.96875, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.691657, 0.865051, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.712338, 1.16093, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.99948, 1.16093, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.99948, 1.30885, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.702707, 0.801132, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.99948, 0.717178, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.29622, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.29622, 1.31995, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.50829, 1.33905, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.999515, 1.12027, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.02147, 1.16093, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.14785, 1.30885, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.14782, 1.27087, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.24861, 1.30885, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.29628, 0.296402, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.26439, 0.569275, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.14785, 0.569275, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.14785, 0.618286, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.03949, 0.717194, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.9996, 0.793091, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.77995, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 3.05313, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.77995, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.98438, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.98438, 2.04843, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.18646, 2.04843, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.98438, 3.51405, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.98438, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.18646, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.98438, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.18646, 3.51405, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.27344, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.27344, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.27344, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.18646, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.77995, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 3.05313, 2.64011, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.88976, 0.339294, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.16128, 0.569122, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.88971, 0.569275, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.98438, 1.50937, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.59297, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.18646, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.98522, 1.08714, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.96673, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.18646, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.59296, 0.279449, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.88969, 0.683945, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 1.72447, 0.56926, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.18669, 0.616211, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.27344, 1.45677, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.2578, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.26875, 1.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.27344, 1.34999, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 1.98438, 1.20937, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.8495, 0.865067, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.77992, 0.931229, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.77995, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.44152, 0.865097, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 1.29623, 0.561081, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 1.59297, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 1.59297, 1.60149, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 1.51719, 1.60359, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 0.702735, 1.12445, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 1.59295, 1.33531, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 2.27344, 3.51405, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 2.27344, 2.04843, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 3.05313, 2.84062, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 3.13906, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 3.37344, 3.19844, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 3.3607, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 3.10781, 3.82344, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 2.87344, 3.74532, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 3.09626, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 2.77995, 3.1149, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.88125, 3.14844, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 2.84899, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 2.77995, 3.40196, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 2.77995, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 2.62344, 3.75624, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 2.39844, 3.67812, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT( 2.59159, 3.23177, 0 ) DX3DVNORM( 0, 0, 1 ) //122 DX3DVERT( 2.65469, 3.07344, 0 ) DX3DVNORM( 0, 0, 1 ) //123 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_48_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_48_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 124 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_48_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_48_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_48_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 7, 3, 9, // 3 11 10, 11, 12, // 4 14 13, 2, 11, // 5 17 2, 13, 0, // 6 20 5, 9, 3, // 7 23 8, 14, 6, // 8 26 9, 8, 7, // 9 29 12, 5, 4, // 10 32 12, 4, 15, // 11 35 15, 10, 12, // 12 38 11, 10, 13, // 13 41 16, 17, 18, // 14 44 19, 20, 21, // 15 47 22, 23, 24, // 16 50 25, 22, 26, // 17 53 27, 26, 24, // 18 56 28, 24, 29, // 19 59 30, 31, 32, // 20 62 30, 33, 31, // 21 65 34, 35, 36, // 22 68 37, 38, 39, // 23 71 40, 41, 37, // 24 74 42, 43, 44, // 25 77 41, 45, 37, // 26 80 34, 46, 38, // 27 83 47, 48, 49, // 28 86 43, 50, 51, // 29 89 52, 53, 54, // 30 92 44, 43, 51, // 31 95 31, 44, 52, // 32 98 47, 32, 52, // 33 101 55, 56, 57, // 34 104 56, 58, 57, // 35 107 59, 46, 36, // 36 110 59, 60, 46, // 37 113 61, 62, 63, // 38 116 64, 65, 66, // 39 119 67, 68, 69, // 40 122 69, 68, 70, // 41 125 71, 69, 72, // 42 128 73, 74, 75, // 43 131 74, 70, 75, // 44 134 76, 63, 77, // 45 137 78, 79, 80, // 46 140 81, 82, 83, // 47 143 84, 85, 86, // 48 146 87, 78, 80, // 49 149 80, 88, 89, // 50 152 90, 86, 85, // 51 155 66, 83, 91, // 52 158 90, 92, 86, // 53 161 93, 94, 95, // 54 164 96, 97, 98, // 55 167 98, 99, 16, // 56 170 96, 98, 16, // 57 173 18, 96, 16, // 58 176 19, 87, 20, // 59 179 21, 100, 55, // 60 182 21, 55, 19, // 61 185 23, 29, 24, // 62 188 22, 24, 26, // 63 191 24, 28, 27, // 64 194 29, 101, 28, // 65 197 82, 102, 103, // 66 200 32, 47, 103, // 67 203 32, 103, 30, // 68 206 103, 47, 82, // 69 209 50, 43, 42, // 70 212 39, 40, 37, // 71 215 104, 39, 50, // 72 218 50, 42, 104, // 73 221 40, 39, 104, // 74 224 44, 31, 33, // 75 227 33, 42, 44, // 76 230 46, 60, 38, // 77 233 38, 37, 45, // 78 236 45, 34, 38, // 79 239 46, 34, 36, // 80 242 49, 105, 82, // 81 245 82, 47, 49, // 82 248 53, 52, 44, // 83 251 51, 53, 44, // 84 254 52, 32, 31, // 85 257 54, 48, 47, // 86 260 47, 52, 54, // 87 263 100, 56, 55, // 88 266 36, 35, 57, // 89 269 57, 35, 55, // 90 272 36, 57, 58, // 91 275 36, 58, 59, // 92 278 62, 77, 63, // 93 281 29, 23, 64, // 94 284 64, 70, 29, // 95 287 66, 75, 64, // 96 290 69, 71, 67, // 97 293 70, 101, 29, // 98 296 70, 64, 75, // 99 299 70, 74, 69, // 100 302 72, 106, 71, // 101 305 73, 61, 63, // 102 308 66, 107, 73, // 103 311 73, 75, 66, // 104 314 74, 72, 69, // 105 317 63, 76, 74, // 106 320 74, 73, 63, // 107 323 77, 108, 76, // 108 326 81, 102, 82, // 109 329 66, 65, 81, // 110 332 81, 83, 66, // 111 335 83, 82, 105, // 112 338 95, 94, 83, // 113 341 95, 84, 86, // 114 344 105, 95, 83, // 115 347 89, 20, 87, // 116 350 87, 80, 89, // 117 353 88, 80, 79, // 118 356 88, 79, 90, // 119 359 90, 85, 88, // 120 362 91, 107, 66, // 121 365 99, 98, 97, // 122 368 94, 91, 83, // 123 371 86, 92, 93, // 124 374 93, 95, 86, // 125 377 97, 94, 93, // 126 380 97, 93, 99, // 127 383 109, 110, 111, // 128 386 112, 113, 114, // 129 389 111, 114, 109, // 130 392 114, 111, 112, // 131 395 115, 116, 117, // 132 398 117, 118, 119, // 133 401 118, 120, 121, // 134 404 115, 119, 122, // 135 407 117, 119, 115, // 136 410 122, 119, 118, // 137 413 118, 121, 122, // 138 416 122, 123, 115, // 139 419 DX3DINDEX_END #endif #else #define index_Trim_Char_x_48_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_48_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_48_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_48_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_48_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_48_1__ ) DX3DMODEL_START( model_Trim_Char_x_48_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_48_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_48_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 420 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_48_1__, 4156401989 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_48_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_47_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_49_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_49_1___initialShadingGroup_0 ) DX3DVERT( -0.0437491, 0.273438, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 0.237501, 0.3125, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 0.121667, 0.866959, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.0479893, 2.05399, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.0918123, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( -0.194245, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.19413, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.237501, 3.41719, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( -0.0437491, 3.45625, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.0956599, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.0453132, 1.86485, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.236482, 2.05399, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.239062, 1.86485, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.0575855, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( -0.227233, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.165475, 0.866959, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.778, 0.58783, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.91563, 0.726563, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 2.77797, 0.861588, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.45981, 0.277893, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.57116, 0.282486, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.43256, 0.538177, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.967761, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.967761, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.57117, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.756251, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.756251, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.756251, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.967761, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.57117, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.96774, 1.51682, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.967761, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.26947, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.863186, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.728037, 0.57019, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.967746, 0.373978, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.967761, 0.570206, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.666056, 0.866959, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.905379, 0.866898, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.896313, 0.965332, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.610333, 0.968765, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.616507, 0.866913, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.666056, 1.23674, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.638163, 1.16371, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.666056, 1.16371, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.949855, 1.16371, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.666249, 0.680054, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.967737, 0.714752, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.26946, 1.32793, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.43434, 1.33913, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.967753, 1.18774, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.26951, 0.289642, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.26947, 0.551651, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.18832, 0.570114, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.778, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.9625, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.778, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.9375, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.9375, 2.05399, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.17458, 2.05399, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.9375, 3.51407, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.9375, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.17458, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.9375, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.57117, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.33735, 3.53775, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 3.0797, 3.53777, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 3.0797, 3.52245, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.62714, 3.46875, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.68267, 3.53777, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.62714, 3.53777, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.17458, 3.51407, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.22188, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.47629, 3.53777, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.47627, 3.64316, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.41083, 3.53777, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.47629, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.60264, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.58906, 3.32735, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.47629, 3.38939, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.596, 3.38939, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 3.06421, 3.53777, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 3.07932, 3.79172, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.87374, 3.83536, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.87344, 3.6125, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.47629, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.69375, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.47629, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.22188, 2.85156, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.17458, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.17458, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.22188, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.713, 3.09264, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.62714, 3.09264, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.62714, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.54385, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.47629, 3.09264, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.62714, 3.18594, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 3.07969, 2.8636, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 3.20737, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 3.0797, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.92885, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.778, 2.94426, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 3.0797, 3.09264, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 3.03345, 3.09264, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 2.87354, 3.04219, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 2.778, 3.05898, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 3.0797, 3.13303, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 3.07344, 3.12657, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 3.37434, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 3.14406, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 1.87292, 0.358337, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 2.11114, 0.570099, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 1.87288, 0.570206, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 1.9375, 1.49844, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 1.9375, 1.19376, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.17458, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 1.93783, 1.0869, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 1.92007, 0.866867, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 2.17458, 0.866959, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 1.87356, 0.73436, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 1.66897, 0.570206, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT( 2.17469, 0.707535, 0 ) DX3DVNORM( 0, 0, 1 ) //122 DX3DVERT( 2.22188, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //123 DX3DVERT( 2.21123, 0.866959, 0 ) DX3DVNORM( 0, 0, 1 ) //124 DX3DVERT( 2.36798, 0.866959, 0 ) DX3DVNORM( 0, 0, 1 ) //125 DX3DVERT( 2.7724, 0.866928, 0 ) DX3DVNORM( 0, 0, 1 ) //126 DX3DVERT( 2.22188, 1.33125, 0 ) DX3DVNORM( 0, 0, 1 ) //127 DX3DVERT( 2.37475, 3.24101, 0 ) DX3DVNORM( 0, 0, 1 ) //128 DX3DVERT( 2.72188, 0.53125, 0 ) DX3DVNORM( 0, 0, 1 ) //129 DX3DVERT( 1.57118, 0.547745, 0 ) DX3DVNORM( 0, 0, 1 ) //130 DX3DVERT( 1.57117, 1.46046, 0 ) DX3DVNORM( 0, 0, 1 ) //131 DX3DVERT( 1.57115, 1.59715, 0 ) DX3DVNORM( 0, 0, 1 ) //132 DX3DVERT( 1.4434, 1.6035, 0 ) DX3DVNORM( 0, 0, 1 ) //133 DX3DVERT( 1.57116, 1.32898, 0 ) DX3DVNORM( 0, 0, 1 ) //134 DX3DVERT( 2.9625, 2.64749, 0 ) DX3DVNORM( 0, 0, 1 ) //135 DX3DVERT( 2.22188, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //136 DX3DVERT( 3.15781, 3.32765, 0 ) DX3DVNORM( 0, 0, 1 ) //137 DX3DVERT( 3.38135, 3.32828, 0 ) DX3DVNORM( 0, 0, 1 ) //138 DX3DVERT( 2.22188, 3.51407, 0 ) DX3DVNORM( 0, 0, 1 ) //139 DX3DVERT( 2.77799, 3.59576, 0 ) DX3DVNORM( 0, 0, 1 ) //140 DX3DVERT( 2.77786, 3.82684, 0 ) DX3DVNORM( 0, 0, 1 ) //141 DX3DVERT( 2.22188, 2.05399, 0 ) DX3DVNORM( 0, 0, 1 ) //142 DX3DVERT( 2.47629, 3.01523, 0 ) DX3DVNORM( 0, 0, 1 ) //143 DX3DVERT( 2.9625, 2.82813, 0 ) DX3DVNORM( 0, 0, 1 ) //144 DX3DVERT( 2.92885, 3.04771, 0 ) DX3DVNORM( 0, 0, 1 ) //145 DX3DVERT( 2.22188, 0.990631, 0 ) DX3DVNORM( 0, 0, 1 ) //146 DX3DVERT( 2.36719, 3.32813, 0 ) DX3DVNORM( 0, 0, 1 ) //147 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_49_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_49_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 148 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_49_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_49_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_49_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 4, 6, 9, // 3 11 10, 11, 12, // 4 14 13, 14, 15, // 5 17 2, 15, 0, // 6 20 5, 11, 3, // 7 23 8, 9, 6, // 8 26 9, 5, 4, // 9 29 10, 3, 11, // 10 32 14, 13, 10, // 11 35 12, 14, 10, // 12 38 15, 2, 13, // 13 41 16, 17, 18, // 14 44 19, 20, 21, // 15 47 22, 23, 24, // 16 50 25, 26, 23, // 17 53 27, 25, 22, // 18 56 28, 22, 29, // 19 59 30, 31, 32, // 20 62 30, 33, 31, // 21 65 34, 35, 36, // 22 68 37, 38, 39, // 23 71 40, 41, 37, // 24 74 42, 43, 44, // 25 77 42, 44, 45, // 26 80 41, 46, 37, // 27 83 46, 34, 47, // 28 86 32, 48, 49, // 29 89 31, 50, 48, // 30 92 51, 52, 53, // 31 95 53, 47, 36, // 32 98 54, 55, 56, // 33 101 57, 58, 59, // 34 104 60, 61, 62, // 35 107 63, 64, 29, // 36 110 65, 66, 67, // 37 113 68, 69, 70, // 38 116 71, 62, 72, // 39 119 73, 74, 75, // 40 122 74, 73, 70, // 41 125 76, 77, 78, // 42 128 73, 79, 80, // 43 131 81, 67, 66, // 44 134 82, 83, 84, // 45 137 65, 82, 66, // 46 140 54, 56, 85, // 47 143 86, 87, 85, // 48 146 88, 89, 90, // 49 149 62, 89, 91, // 50 152 92, 93, 94, // 51 155 95, 94, 93, // 52 158 77, 76, 96, // 53 161 92, 97, 93, // 54 164 98, 99, 100, // 55 167 101, 102, 56, // 56 170 100, 103, 104, // 57 173 105, 106, 102, // 58 176 103, 107, 108, // 59 179 99, 109, 110, // 60 182 111, 112, 113, // 61 185 114, 115, 116, // 62 188 117, 118, 119, // 63 191 20, 111, 113, // 64 194 113, 120, 121, // 65 197 122, 119, 118, // 66 200 59, 116, 123, // 67 203 122, 124, 119, // 68 206 125, 126, 127, // 69 209 79, 73, 75, // 70 212 96, 76, 128, // 71 215 125, 129, 16, // 72 218 20, 130, 21, // 73 221 21, 52, 51, // 74 224 51, 19, 21, // 75 227 24, 29, 22, // 76 230 23, 22, 25, // 77 233 22, 28, 27, // 78 236 29, 64, 28, // 79 239 131, 132, 133, // 80 242 32, 131, 133, // 81 245 32, 133, 30, // 82 248 39, 45, 44, // 83 251 39, 44, 37, // 84 254 37, 44, 43, // 85 257 43, 40, 37, // 86 260 50, 31, 33, // 87 263 50, 33, 42, // 88 266 42, 45, 50, // 89 269 34, 36, 47, // 90 272 38, 37, 46, // 91 275 47, 38, 46, // 92 278 49, 134, 131, // 93 281 131, 32, 49, // 94 284 48, 32, 31, // 95 287 53, 36, 35, // 96 290 53, 35, 51, // 97 293 55, 135, 56, // 98 296 29, 24, 57, // 99 299 57, 63, 29, // 100 302 57, 136, 90, // 101 305 62, 71, 60, // 102 308 89, 62, 61, // 103 311 90, 89, 63, // 104 314 63, 57, 90, // 105 317 61, 63, 89, // 106 320 137, 110, 109, // 107 323 137, 138, 65, // 108 326 67, 137, 65, // 109 329 109, 138, 137, // 110 332 72, 139, 71, // 111 335 70, 69, 140, // 112 338 70, 140, 141, // 113 341 70, 141, 74, // 114 344 78, 80, 79, // 115 347 79, 76, 78, // 116 350 68, 70, 73, // 117 353 73, 80, 68, // 118 356 141, 140, 84, // 119 359 81, 66, 82, // 120 362 82, 84, 81, // 121 365 84, 83, 141, // 122 368 59, 142, 136, // 123 371 85, 90, 136, // 124 374 85, 136, 54, // 125 377 136, 57, 59, // 126 380 94, 95, 86, // 127 383 56, 102, 86, // 128 386 85, 56, 86, // 129 389 86, 102, 94, // 130 392 88, 91, 89, // 131 395 85, 87, 88, // 132 398 88, 90, 85, // 133 401 91, 72, 62, // 134 404 94, 102, 106, // 135 407 94, 106, 92, // 136 410 93, 96, 143, // 137 413 143, 95, 93, // 138 416 96, 93, 97, // 139 419 97, 77, 96, // 140 422 98, 100, 101, // 141 425 56, 135, 144, // 142 428 56, 144, 101, // 143 431 101, 144, 98, // 144 434 145, 101, 100, // 145 437 104, 145, 100, // 146 440 101, 145, 105, // 147 443 105, 102, 101, // 148 446 108, 104, 103, // 149 449 110, 107, 103, // 150 452 103, 100, 99, // 151 455 99, 110, 103, // 152 458 114, 132, 131, // 153 461 59, 58, 114, // 154 464 114, 116, 59, // 155 467 134, 114, 131, // 156 470 119, 116, 115, // 157 473 115, 117, 119, // 158 476 134, 115, 114, // 159 479 121, 130, 20, // 160 482 20, 113, 121, // 161 485 120, 113, 112, // 162 488 120, 112, 122, // 163 491 118, 120, 122, // 164 494 123, 142, 59, // 165 497 127, 123, 116, // 166 500 127, 124, 146, // 167 503 127, 146, 125, // 168 506 116, 119, 124, // 169 509 124, 127, 116, // 170 512 147, 128, 76, // 171 515 147, 76, 79, // 172 518 75, 147, 79, // 173 521 128, 143, 96, // 174 524 16, 18, 126, // 175 527 126, 125, 16, // 176 530 DX3DINDEX_END #endif #else #define index_Trim_Char_x_49_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_49_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_49_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_49_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_49_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_49_1__ ) DX3DMODEL_START( model_Trim_Char_x_49_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_49_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_49_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 531 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_49_1__, 4158487125 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_49_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_48_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_50_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_50_1___initialShadingGroup_0 ) DX3DVERT( 2.42778, 0.933929, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.14063, 0.933929, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.14063, 0.625473, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.575, 0.340881, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.57491, 0.611649, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.27768, 0.577881, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.29375, 3.02657, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.29375, 3.29688, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.00938, 3.29688, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.443751, 2.16774, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.443767, 2.5807, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.203012, 2.16776, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.121874, 3.03438, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.443751, 3.03438, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( -0.121874, 3.29688, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.509385, 2.16776, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.881251, 3.02657, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.00938, 2.82326, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.156579, 0.934158, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.44354, 0.561752, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.443751, 0.625473, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.0544247, 1.55083, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.35055, 1.55084, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.443775, 2.01277, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.443751, 0.933929, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.444164, 1.02333, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.00938, 0.33606, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.00922, 0.603271, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.922467, 0.625031, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.493807, 0.93399, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.726674, 0.406281, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.726564, 0.625473, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.726406, 0.710403, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.70625, 2.40979, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.98785, 2.16774, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 3.18147, 2.16774, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.09166, 2.78462, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.14057, 2.6358, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.14063, 2.78465, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.14063, 3.37645, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.12031, 3.40157, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.90625, 3.22969, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.38281, 2.72656, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.70625, 2.77554, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.69665, 2.78465, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.14059, 0.586914, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.85781, 0.625473, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.1409, 1.03592, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.07313, 0.933914, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.85775, 0.420715, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.62678, 0.625793, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.85806, 0.732452, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 3.11094, 2.07187, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.5264, 2.16762, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.25009, 2.16777, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.28944, 1.68542, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.57979, 1.55084, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.28497, 1.55084, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.27803, 0.316422, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.443751, 3.29688, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.965915, 2.78465, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 0.614794, 2.78465, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.876564, 3.03438, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 0.349401, 1.49405, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.0527451, 1.47845, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.27188, 2.29062, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.37813, 2.72343, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.58128, 1.62572, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_50_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_50_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 68 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_50_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_50_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_50_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 10, 9, 15, // 5 17 8, 16, 17, // 6 20 18, 19, 20, // 7 23 21, 22, 23, // 8 26 18, 24, 25, // 9 29 23, 15, 9, // 10 32 26, 27, 28, // 11 35 29, 25, 24, // 12 38 19, 30, 31, // 13 41 29, 24, 20, // 14 44 28, 32, 31, // 15 47 33, 34, 35, // 16 50 36, 37, 38, // 17 53 39, 40, 41, // 18 56 42, 33, 43, // 19 59 44, 39, 38, // 20 62 45, 2, 46, // 21 65 1, 47, 48, // 22 68 49, 46, 50, // 23 71 46, 51, 50, // 24 74 2, 1, 48, // 25 77 35, 34, 52, // 26 80 53, 54, 55, // 27 83 0, 56, 57, // 28 86 2, 45, 0, // 29 89 5, 27, 26, // 30 92 5, 26, 58, // 31 95 5, 58, 3, // 32 98 8, 17, 6, // 33 101 13, 59, 14, // 34 104 15, 60, 61, // 35 107 15, 61, 10, // 36 110 16, 61, 60, // 37 113 62, 16, 8, // 38 116 59, 13, 62, // 39 119 62, 8, 59, // 40 122 60, 17, 16, // 41 125 20, 24, 18, // 42 128 23, 9, 11, // 43 131 11, 21, 23, // 44 134 63, 22, 21, // 45 137 63, 64, 18, // 46 140 25, 63, 18, // 47 143 21, 64, 63, // 48 146 31, 30, 26, // 49 149 28, 31, 26, // 50 152 31, 20, 19, // 51 155 20, 31, 32, // 52 158 20, 32, 29, // 53 161 65, 43, 33, // 54 164 35, 65, 33, // 55 167 36, 38, 39, // 56 170 41, 36, 39, // 57 173 37, 54, 53, // 58 176 38, 66, 42, // 59 179 44, 38, 42, // 60 182 43, 44, 42, // 61 185 66, 38, 37, // 62 188 37, 53, 66, // 63 191 46, 49, 45, // 64 194 50, 4, 3, // 65 197 3, 49, 50, // 66 200 51, 46, 2, // 67 203 48, 51, 2, // 68 206 57, 56, 67, // 69 209 55, 57, 67, // 70 212 67, 53, 55, // 71 215 47, 1, 0, // 72 218 0, 57, 47, // 73 221 DX3DINDEX_END #endif #else #define index_Trim_Char_x_50_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_50_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_50_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_50_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_50_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_50_1__ ) DX3DMODEL_START( model_Trim_Char_x_50_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_50_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_50_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 222 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_50_1__, 4218956069 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_50_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_49_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_51_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_51_1___initialShadingGroup_0 ) DX3DVERT( 2.16095, 0.597153, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.39535, 0.882309, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.16094, 0.882324, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.58042, 0.326996, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.58021, 0.598007, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.24125, 0.554123, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.25469, 3.00311, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.25469, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.419532, 2.05376, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.419541, 2.57813, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.124993, 2.05377, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.160937, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.160937, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.419532, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.160937, 3.01093, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.419532, 3.01093, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.419532, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.42991, 2.05374, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.842188, 3.00781, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1, 2.82487, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.132217, 0.882492, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.41943, 0.530823, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.419532, 0.589462, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.013687, 1.45959, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.310575, 1.4706, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.419532, 0.882324, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.41955, 0.970078, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.419584, 2.02823, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.999995, 0.311722, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.00001, 0.574997, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.930506, 0.589676, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.473955, 0.882263, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.709882, 0.378189, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.709766, 0.589462, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.709705, 0.674225, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.77232, 2.05376, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 3.19539, 2.05376, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.74141, 2.44052, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.01799, 2.63948, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.16093, 2.22441, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.16094, 2.63948, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.16094, 3.03949, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.08125, 3.13593, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.86719, 2.96875, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.32813, 2.48906, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.74141, 2.08109, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.5335, 2.63948, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.03053, 0.881958, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.16095, 1.09387, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 3.07188, 1.81093, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.46774, 2.05377, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.20195, 2.05374, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.25351, 1.58365, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.53544, 1.32353, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.23082, 1.32356, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.24257, 0.296371, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.25469, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.805279, 2.63948, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.467898, 2.63948, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 0.837501, 3.01093, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.0192584, 1.32352, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 0.318254, 1.32353, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.32031, 2.48438, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.23281, 2.02499, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.54573, 1.50267, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 3.07969, 3.03906, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 3.32188, 3.15625, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 3.28555, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.94688, 3.81093, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.74141, 3.70009, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.74141, 3.63043, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.70938, 3.6828, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.97765, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.74141, 3.00911, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.76094, 3.01874, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.74141, 3.05553, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.39844, 3.65936, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.16406, 3.53436, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.34863, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.52656, 2.90312, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.64934, 3.2252, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_51_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_51_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 83 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_51_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_51_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_51_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 8, 7, // 6 20 18, 14, 8, // 7 23 10, 9, 19, // 8 26 20, 21, 8, // 9 29 22, 23, 24, // 10 32 11, 25, 26, // 11 35 22, 27, 28, // 12 38 29, 19, 9, // 13 41 30, 31, 32, // 14 44 33, 28, 27, // 15 47 23, 34, 35, // 16 50 33, 27, 24, // 17 53 32, 36, 35, // 18 56 37, 38, 39, // 19 59 40, 41, 42, // 20 62 43, 44, 45, // 21 65 46, 47, 39, // 22 68 48, 43, 42, // 23 71 0, 2, 49, // 24 74 2, 50, 49, // 25 77 38, 37, 51, // 26 80 52, 53, 54, // 27 83 1, 55, 56, // 28 86 5, 31, 30, // 29 89 5, 30, 57, // 30 92 5, 57, 3, // 31 95 8, 21, 6, // 32 98 14, 18, 12, // 33 101 16, 14, 13, // 34 104 7, 58, 17, // 35 107 8, 17, 18, // 36 110 59, 60, 10, // 37 113 19, 59, 10, // 38 116 20, 60, 59, // 39 119 14, 16, 61, // 40 122 8, 61, 20, // 41 125 61, 8, 14, // 42 128 59, 21, 20, // 43 131 24, 27, 22, // 44 134 62, 63, 26, // 45 137 29, 9, 11, // 46 140 11, 26, 29, // 47 143 26, 25, 62, // 48 146 63, 62, 22, // 49 149 28, 63, 22, // 50 152 32, 35, 34, // 51 155 32, 34, 30, // 52 158 35, 24, 23, // 53 161 24, 35, 36, // 54 164 24, 36, 33, // 55 167 39, 47, 37, // 56 170 40, 42, 43, // 57 173 45, 40, 43, // 58 176 41, 53, 52, // 59 179 42, 64, 46, // 60 182 48, 42, 46, // 61 185 39, 48, 46, // 62 188 64, 42, 41, // 63 191 52, 64, 41, // 64 194 4, 3, 0, // 65 197 49, 4, 0, // 66 200 51, 65, 38, // 67 203 56, 55, 66, // 68 206 54, 56, 66, // 69 209 54, 66, 52, // 70 212 50, 2, 1, // 71 215 1, 56, 50, // 72 218 67, 68, 69, // 73 221 70, 71, 72, // 74 224 71, 73, 72, // 75 227 69, 74, 67, // 76 230 74, 69, 70, // 77 233 72, 74, 70, // 78 236 75, 76, 77, // 79 239 78, 79, 80, // 80 242 81, 75, 77, // 81 245 80, 82, 78, // 82 248 82, 80, 81, // 83 251 77, 82, 81, // 84 254 DX3DINDEX_END #endif #else #define index_Trim_Char_x_51_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_51_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_51_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_51_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_51_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_51_1__ ) DX3DMODEL_START( model_Trim_Char_x_51_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_51_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_51_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 255 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_51_1__, 4221041205 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_51_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_50_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_52_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_52_1___initialShadingGroup_0 ) DX3DVERT( 2.15213, 0.61348, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.36765, 0.881012, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.15208, 0.881012, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.56714, 0.329849, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.56692, 0.601974, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.21333, 0.554123, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.22813, 3.00313, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.22813, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.982292, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.397396, 2.04987, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.397409, 2.58554, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.0965116, 2.04987, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.1875, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.1875, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.397396, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.1875, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.397396, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.982292, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.397396, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.404163, 2.04984, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.814063, 3.00781, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.982292, 2.83203, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.106261, 0.88118, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.397307, 0.527527, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.397396, 0.588806, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( -0.0128703, 1.4597, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.287133, 1.47046, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.397396, 0.881012, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.397413, 0.965622, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.397446, 2.03314, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.982286, 0.310486, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.982296, 0.573181, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.905449, 0.588959, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.449865, 0.880966, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.689954, 0.375763, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.689844, 0.588806, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.689785, 0.670349, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.74924, 2.04987, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 3.17668, 2.04987, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.73698, 2.41991, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.99651, 2.63428, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.15203, 2.16249, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.15208, 2.63428, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.15208, 3.0181, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.05469, 3.13594, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.84375, 2.96875, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.29688, 2.48438, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.5112, 2.63428, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.00287, 0.880661, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.15193, 1.13666, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 3.04531, 1.81094, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.44409, 2.04987, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.17728, 2.04982, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.22695, 1.58453, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.50835, 1.3231, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.20415, 1.32315, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.2147, 0.296387, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.22813, 3.27344, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 0.774556, 2.63428, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.435792, 2.63428, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.810938, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( -0.00725031, 1.32309, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.294788, 1.3231, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.73698, 2.06059, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.3, 2.48906, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.20938, 2.02501, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.51899, 1.50665, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 3.02943, 2.83495, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 3.16213, 2.9265, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 3.02943, 2.9265, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 3.27589, 3.51091, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 3.02943, 3.51091, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 3.02943, 3.48303, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.59075, 3.47168, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.62834, 3.51093, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.59076, 3.51091, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.30781, 3.2961, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.44453, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.44453, 3.36481, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.44453, 3.64262, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.3538, 3.51091, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.44453, 3.51091, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.54077, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.52968, 3.29716, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.53794, 3.36482, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 3.00135, 3.51091, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 3.02943, 3.75725, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.81484, 3.80313, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.81484, 3.58125, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.73698, 2.79446, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.73698, 2.9265, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.59076, 2.9265, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.31314, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.44453, 2.94957, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.44453, 3.0726, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.73697, 3.0191, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.59076, 3.0726, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.63709, 3.0726, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.59076, 3.12044, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.8832, 2.9265, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 3.02943, 3.0726, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.99259, 3.0726, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.81484, 3.00781, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 3.02943, 3.10878, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 3.01563, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 3.31655, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 3.08894, 3.2187, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 3.1, 3.29716, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 3.32188, 3.2961, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 2.73698, 3.57025, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 2.73698, 3.79773, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 2.46756, 2.9265, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 2.45625, 2.9375, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 2.81484, 2.78906, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 2.8832, 3.01649, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_52_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_52_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 115 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_52_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_52_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_52_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 8, 7, // 6 20 18, 14, 8, // 7 23 10, 9, 19, // 8 26 20, 21, 8, // 9 29 22, 23, 24, // 10 32 11, 25, 26, // 11 35 22, 27, 28, // 12 38 29, 19, 9, // 13 41 30, 31, 32, // 14 44 33, 28, 27, // 15 47 23, 34, 35, // 16 50 33, 27, 24, // 17 53 32, 36, 35, // 18 56 37, 38, 39, // 19 59 40, 41, 42, // 20 62 43, 44, 45, // 21 65 46, 42, 41, // 22 68 47, 43, 42, // 23 71 0, 2, 48, // 24 74 2, 49, 48, // 25 77 38, 37, 50, // 26 80 51, 52, 53, // 27 83 54, 55, 49, // 28 86 5, 31, 30, // 29 89 5, 30, 56, // 30 92 5, 56, 3, // 31 95 8, 21, 6, // 32 98 14, 18, 12, // 33 101 16, 14, 13, // 34 104 7, 57, 17, // 35 107 8, 17, 18, // 36 110 58, 59, 10, // 37 113 19, 58, 10, // 38 116 20, 59, 58, // 39 119 14, 16, 60, // 40 122 8, 60, 20, // 41 125 60, 8, 14, // 42 128 58, 21, 20, // 43 131 24, 27, 22, // 44 134 61, 62, 26, // 45 137 29, 9, 11, // 46 140 11, 26, 29, // 47 143 26, 25, 61, // 48 146 62, 61, 22, // 49 149 28, 62, 22, // 50 152 35, 34, 30, // 51 155 32, 35, 30, // 52 158 35, 24, 23, // 53 161 24, 35, 36, // 54 164 24, 36, 33, // 55 167 39, 63, 37, // 56 170 40, 42, 43, // 57 173 45, 40, 43, // 58 176 64, 63, 39, // 59 179 46, 64, 42, // 60 182 41, 52, 51, // 61 185 51, 46, 41, // 62 188 47, 42, 64, // 63 191 39, 47, 64, // 64 194 4, 3, 0, // 65 197 48, 4, 0, // 66 200 50, 65, 38, // 67 203 55, 54, 66, // 68 206 53, 55, 66, // 69 209 53, 66, 51, // 70 212 2, 1, 54, // 71 215 49, 2, 54, // 72 218 67, 68, 69, // 73 221 70, 71, 72, // 74 224 73, 74, 75, // 75 227 76, 77, 78, // 76 230 79, 80, 81, // 77 233 79, 81, 75, // 78 236 77, 82, 83, // 79 239 81, 78, 84, // 80 242 85, 72, 71, // 81 245 86, 87, 88, // 82 248 70, 86, 71, // 83 251 89, 90, 91, // 84 254 92, 93, 94, // 85 257 91, 90, 95, // 86 260 91, 96, 94, // 87 263 82, 77, 94, // 88 266 97, 98, 96, // 89 269 67, 69, 99, // 90 272 69, 100, 101, // 91 275 102, 95, 90, // 92 278 100, 103, 104, // 93 281 68, 105, 106, // 94 284 107, 106, 105, // 95 287 107, 108, 70, // 96 290 72, 107, 70, // 97 293 105, 108, 107, // 98 296 76, 92, 77, // 99 299 78, 81, 80, // 100 302 80, 76, 78, // 101 305 75, 74, 109, // 102 308 109, 110, 79, // 103 311 75, 109, 79, // 104 314 83, 84, 78, // 105 317 78, 77, 83, // 106 320 73, 75, 81, // 107 323 81, 84, 73, // 108 326 110, 109, 88, // 109 329 85, 71, 86, // 110 332 86, 88, 85, // 111 335 88, 87, 110, // 112 338 91, 111, 89, // 113 341 94, 77, 92, // 114 344 97, 96, 91, // 115 347 91, 95, 97, // 116 350 93, 112, 91, // 117 353 91, 112, 111, // 118 356 91, 94, 93, // 119 359 94, 96, 98, // 120 362 98, 82, 94, // 121 365 90, 89, 113, // 122 368 99, 90, 113, // 123 371 99, 113, 67, // 124 374 114, 99, 69, // 125 377 101, 114, 69, // 126 380 99, 114, 102, // 127 383 102, 90, 99, // 128 386 104, 101, 100, // 129 389 106, 103, 100, // 130 392 100, 69, 68, // 131 395 68, 106, 100, // 132 398 DX3DINDEX_END #endif #else #define index_Trim_Char_x_52_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_52_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_52_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_52_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_52_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_52_1__ ) DX3DMODEL_START( model_Trim_Char_x_52_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_52_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_52_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 399 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_52_1__, 4223126341 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_52_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_51_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_53_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_53_1___initialShadingGroup_0 ) DX3DVERT( 0.24974, 1.51289, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 0.261094, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 0.24974, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.178126, 2.17656, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.173762, 2.16086, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.242795, 2.16086, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( -0.326895, 0.923279, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( -0.351562, 0.878128, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( -0.101561, 0.765625, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.0362302, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.0175802, 0.923279, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.448438, 2.11093, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.24974, 2.15918, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.99063, 0.784378, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 3.25625, 0.867188, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 3.23828, 0.923279, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.67068, 2.16086, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.65495, 2.18669, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 2.65495, 2.16086, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 2.63906, 2.21249, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 2.5338, 2.16086, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 2.65495, 1.62685, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.39063, 2.09062, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.9976, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.69666, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.94661, 0.923279, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.05376, 0.625275, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.18224, 0.923279, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.05365, 0.923279, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.26719, 0.578003, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.851055, 0.670944, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.851042, 0.370026, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.13477, 2.16095, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.45234, 2.16086, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.4524, 2.22667, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.425, 3.14063, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.851042, 3.14063, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.425, 3.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.45234, 3.14063, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.851042, 3.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.45185, 1.75381, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.709375, 0.729691, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.603125, 0.476563, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.425, 3.14063, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.425, 3.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.05365, 3.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.45234, 2.77965, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.45268, 2.76797, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.46209, 2.77939, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.75303, 2.99445, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.01709, 3.08904, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.753, 3.08904, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.45236, 3.08752, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.52813, 3.14063, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.753, 3.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.45234, 3.39844, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.05365, 3.09752, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.753, 0.613892, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.753, 0.394897, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.04468, 0.613739, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.753, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.01724, 1.54207, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.49464, 2.16087, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.87186, 1.0453, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.85492, 0.92334, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.64859, 1.54214, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.75267, 1.40523, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.84015, 1.23279, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.05365, 1.23268, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.05351, 1.48837, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.51823, 0.614212, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.4523, 0.596619, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.45235, 0.314484, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.7532, 0.753372, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.19199, 1.03993, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.12562, 2.77965, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.28014, 0.304398, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.36081, 2.52592, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.04812, 2.5, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.45481, 3.08902, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.53125, 3.13281, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_53_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_53_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 81 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_53_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_53_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_53_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 4, 9, 2, // 3 11 9, 6, 10, // 4 14 1, 11, 12, // 5 17 8, 10, 6, // 6 20 2, 12, 5, // 7 23 5, 4, 2, // 8 26 0, 2, 9, // 9 29 9, 10, 0, // 10 32 12, 2, 1, // 11 35 13, 14, 15, // 12 38 16, 17, 18, // 13 41 17, 19, 20, // 14 44 16, 18, 21, // 15 47 20, 22, 21, // 16 50 23, 24, 25, // 17 53 15, 25, 13, // 18 56 20, 18, 17, // 19 59 21, 24, 23, // 20 62 21, 23, 16, // 21 65 21, 18, 20, // 22 68 25, 15, 23, // 23 71 26, 27, 28, // 24 74 29, 30, 31, // 25 77 32, 33, 34, // 26 80 35, 36, 37, // 27 83 36, 38, 39, // 28 86 32, 40, 33, // 29 89 30, 41, 42, // 30 92 43, 44, 45, // 31 95 46, 47, 48, // 32 98 49, 50, 51, // 33 101 52, 46, 48, // 34 104 53, 54, 55, // 35 107 50, 56, 45, // 36 110 57, 58, 59, // 37 113 60, 61, 62, // 38 116 63, 64, 28, // 39 119 65, 66, 60, // 40 122 67, 68, 69, // 41 125 70, 71, 72, // 42 128 73, 70, 57, // 43 131 73, 57, 26, // 44 134 74, 69, 68, // 45 137 46, 52, 75, // 46 140 62, 34, 33, // 47 143 72, 71, 29, // 48 146 76, 72, 29, // 49 149 29, 31, 76, // 50 152 47, 46, 75, // 51 155 77, 75, 78, // 52 158 77, 78, 32, // 53 161 34, 77, 32, // 54 164 75, 77, 47, // 55 167 36, 39, 37, // 56 170 38, 55, 39, // 57 173 42, 31, 30, // 58 176 45, 56, 43, // 59 179 51, 79, 52, // 60 182 49, 51, 52, // 61 185 48, 49, 52, // 62 188 80, 79, 51, // 63 191 55, 38, 53, // 64 194 54, 53, 80, // 65 197 80, 51, 54, // 66 200 54, 51, 50, // 67 203 45, 54, 50, // 68 206 40, 65, 60, // 69 209 62, 33, 40, // 70 212 40, 60, 62, // 71 215 68, 67, 63, // 72 218 28, 68, 63, // 73 221 61, 60, 66, // 74 224 69, 61, 66, // 75 227 66, 67, 69, // 76 230 58, 57, 70, // 77 233 72, 58, 70, // 78 236 57, 59, 26, // 79 239 26, 28, 64, // 80 242 26, 64, 73, // 81 245 28, 27, 74, // 82 248 74, 68, 28, // 83 251 DX3DINDEX_END #endif #else #define index_Trim_Char_x_53_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_53_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_53_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_53_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_53_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_53_1__ ) DX3DMODEL_START( model_Trim_Char_x_53_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_53_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_53_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 252 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_53_1__, 4225211477 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_53_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_52_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_54_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_54_1___initialShadingGroup_0 ) DX3DVERT( 0.236719, 1.54143, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 0.29025, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 0.236719, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( -0.316473, 0.977081, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( -0.390625, 0.839066, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( -0.140624, 0.726563, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( -0.00358194, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.236719, 2.1138, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( -0.00969257, 0.977081, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.409375, 2.07188, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.139063, 2.13751, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.95156, 0.745316, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 3.21719, 0.828125, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 3.16812, 0.977081, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.87012, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.74609, 1.92442, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.74609, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.6, 2.17345, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 2.35156, 2.05157, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 2.5637, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 2.74609, 1.30875, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 2.87579, 0.977081, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 3.12344, 3.05469, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 3.28972, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 3.09873, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 3.06094, 3.82344, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.81094, 3.72501, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 3.37344, 3.14063, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.74609, 3.03784, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.80313, 3.05782, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.7804, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.74609, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.49853, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.50312, 3.72501, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.25781, 3.63126, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.74609, 3.19226, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.55781, 2.97188, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.11885, 0.898422, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.12587, 0.977066, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.11875, 0.977081, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.20469, 0.538956, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.864064, 0.6035, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.864063, 0.309021, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.17773, 2.40025, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.30241, 2.40028, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.29382, 2.48654, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.357813, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.864063, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.357813, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.357813, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.864063, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.864063, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.17773, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.17773, 2.75606, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.06802, 2.75613, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.17773, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.17775, 2.88982, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.41161, 2.75604, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.41534, 1.68817, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.49141, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.491, 2.04074, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.11805, 2.04428, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.17746, 1.95973, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.17773, 2.04446, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.642188, 0.690628, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 0.540626, 0.4375, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.49141, 1.6093, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.21875, 3.08594, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.21875, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.11875, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.11875, 3.075, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.49141, 3.11185, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.49141, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.11875, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.80508, 0.621277, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.80507, 0.419434, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.0132, 0.621445, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.80508, 1.68866, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.80936, 1.00626, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.80842, 0.977081, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.71147, 1.33264, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.80519, 1.07492, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.80508, 1.33287, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.49132, 0.587555, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.4914, 0.293137, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.64842, 0.676498, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 1.64824, 0.621277, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.56491, 0.621292, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.80493, 0.942657, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 1.75604, 0.799179, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 1.80508, 0.799179, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.12632, 1.00095, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.11917, 1.10619, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 1.21423, 0.265335, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 1.46563, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 0.980633, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 0.983596, 2.40021, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 1.4914, 2.82954, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 1.46563, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 1.4883, 2.04413, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.21875, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.05309, 1.33266, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_54_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_54_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 102 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_54_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_54_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_54_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 2, 7, // 2 8 6, 3, 8, // 3 11 1, 9, 7, // 4 14 5, 8, 3, // 5 17 7, 10, 6, // 6 20 0, 2, 6, // 7 23 6, 8, 0, // 8 26 7, 2, 1, // 9 29 11, 12, 13, // 10 32 14, 15, 16, // 11 35 15, 17, 18, // 12 38 16, 19, 20, // 13 41 14, 16, 20, // 14 44 13, 21, 11, // 15 47 19, 16, 15, // 16 50 15, 18, 19, // 17 53 20, 21, 13, // 18 56 20, 13, 14, // 19 59 22, 23, 24, // 20 62 25, 26, 24, // 21 65 23, 27, 25, // 22 68 25, 24, 23, // 23 71 28, 29, 30, // 24 74 28, 31, 32, // 25 77 33, 34, 32, // 26 80 30, 35, 31, // 27 83 30, 31, 28, // 28 86 32, 36, 28, // 29 89 32, 31, 35, // 30 92 35, 33, 32, // 31 95 37, 38, 39, // 32 98 40, 41, 42, // 33 101 43, 44, 45, // 34 104 46, 47, 48, // 35 107 49, 48, 50, // 36 110 51, 50, 52, // 37 113 43, 53, 54, // 38 116 47, 55, 50, // 39 119 56, 53, 57, // 40 122 58, 59, 60, // 41 125 61, 62, 63, // 42 128 61, 63, 43, // 43 131 44, 43, 63, // 44 134 41, 64, 65, // 45 137 58, 66, 59, // 46 140 67, 68, 69, // 47 143 70, 69, 71, // 48 146 72, 71, 69, // 49 149 73, 69, 68, // 50 152 74, 75, 76, // 51 155 60, 59, 77, // 52 158 78, 79, 39, // 53 161 80, 81, 82, // 54 164 80, 82, 77, // 55 167 77, 77, 82, // 56 170 83, 84, 75, // 57 173 85, 86, 74, // 58 176 85, 87, 86, // 59 179 88, 89, 90, // 60 182 74, 76, 37, // 61 185 91, 92, 39, // 62 188 53, 56, 54, // 63 191 84, 83, 40, // 64 194 93, 84, 40, // 65 197 42, 93, 40, // 66 200 45, 57, 53, // 67 203 45, 53, 43, // 68 206 47, 50, 48, // 69 209 50, 51, 49, // 70 212 72, 94, 71, // 71 215 72, 51, 52, // 72 218 95, 96, 43, // 73 221 43, 54, 95, // 74 224 55, 52, 50, // 75 227 52, 55, 94, // 76 230 97, 71, 98, // 77 233 97, 98, 56, // 78 236 56, 57, 97, // 79 239 94, 98, 71, // 80 242 94, 72, 52, // 81 245 60, 99, 63, // 82 248 60, 63, 62, // 83 251 60, 62, 58, // 84 254 43, 96, 61, // 85 257 63, 99, 44, // 86 260 65, 42, 41, // 87 263 69, 70, 67, // 88 266 71, 97, 70, // 89 269 69, 73, 72, // 90 272 68, 100, 73, // 91 275 77, 77, 60, // 92 278 101, 82, 81, // 93 281 39, 92, 81, // 94 284 39, 81, 78, // 95 287 81, 92, 101, // 96 290 77, 59, 66, // 97 293 66, 80, 77, // 98 296 82, 101, 77, // 99 299 86, 87, 83, // 100 302 75, 74, 86, // 101 305 86, 83, 75, // 102 308 74, 90, 89, // 103 311 89, 85, 74, // 104 314 37, 39, 79, // 105 317 37, 88, 90, // 106 320 90, 74, 37, // 107 323 79, 88, 37, // 108 326 39, 38, 91, // 109 329 DX3DINDEX_END #endif #else #define index_Trim_Char_x_54_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_54_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_54_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_54_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_54_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_54_1__ ) DX3DMODEL_START( model_Trim_Char_x_54_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_54_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_54_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 330 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_54_1__, 4227296613 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_54_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_53_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_55_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_55_1___initialShadingGroup_0 ) DX3DVERT( 2.0534, 0.623123, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.16373, 0.955856, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.05365, 0.955856, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.24375, 0.538956, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.851052, 0.621552, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.851042, 0.323471, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.15169, 2.33664, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.35745, 2.33664, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.33288, 2.48438, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.396876, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.396876, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.851042, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.851042, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.45234, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.01969, 2.46094, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.03218, 2.33661, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.1516, 2.81828, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.06713, 2.6819, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.15169, 2.68184, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.39167, 2.68199, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.19333, 1.99121, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.45185, 1.69086, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.45234, 1.99144, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.15142, 2.05313, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.45267, 2.1474, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.681251, 0.690628, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.579689, 0.4375, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.95586, 2.9053, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 3.02297, 3.02719, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.9556, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.45234, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.45194, 2.75876, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.93051, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.45234, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.50469, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.55008, 2.92656, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.3543, 3.00317, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.3543, 2.85443, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.55028, 3.49532, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.55109, 3.71805, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.35428, 3.67819, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.05365, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.05365, 3.05606, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.0625, 3.05782, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.35429, 3.4187, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.3543, 3.54482, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.20397, 3.54482, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.16771, 3.5448, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.0666, 3.37222, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.20397, 3.37222, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.20397, 3.58153, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.20354, 2.83623, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.35427, 2.74161, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.18479, 2.85403, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.20397, 2.85443, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.20397, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.33084, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 3.05705, 3.21336, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 3.03101, 3.37202, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.9556, 3.37222, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.83438, 3.21115, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.76519, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.90781, 3.57031, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.65504, 3.70775, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.65496, 3.47523, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.95545, 3.51555, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.753, 0.610672, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.75299, 0.36821, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.04496, 0.610825, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.753, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.88081, 1.64622, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.84842, 1.00626, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.84565, 0.955872, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.49564, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.75262, 1.32916, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.45234, 0.279144, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.75316, 0.739777, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.58364, 0.610733, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.1651, 1.00078, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.05365, 1.40714, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.05365, 1.30106, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.45236, 3.06442, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.39134, 3.02695, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.45228, 0.563049, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.25329, 0.265305, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.50469, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.65503, 2.71233, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.65495, 2.94695, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.55226, 2.70203, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.26094, 3.21094, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.31289, 3.37222, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.07295, 3.02702, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.0625, 3.35938, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.78382, 3.37221, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.75, 3.01094, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 1.76883, 1.30092, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 0.24974, 1.47385, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 0.314341, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 0.24974, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( -0.101561, 0.726563, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 0.0188098, 0.955856, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( -0.288769, 0.955856, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 0.24974, 2.12012, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 0.178126, 2.1375, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 0.0191861, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 0.448438, 2.07187, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( -0.351562, 0.839066, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 2.99063, 0.745316, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 3.25625, 0.828125, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 3.21443, 0.955856, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 2.93008, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 2.65495, 2.14764, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 2.65495, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 2.63906, 2.17343, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 2.39063, 2.05156, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 2.62505, 1.64626, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.65495, 1.58778, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 2.92227, 0.955856, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_55_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_55_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 118 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_55_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_55_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_55_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 11, 13, // 4 14 14, 15, 6, // 5 17 16, 17, 18, // 6 20 16, 18, 19, // 7 23 20, 21, 22, // 8 26 15, 23, 6, // 9 29 23, 20, 24, // 10 32 4, 25, 26, // 11 35 27, 28, 29, // 12 38 30, 31, 32, // 13 41 33, 13, 34, // 14 44 35, 36, 37, // 15 47 38, 39, 40, // 16 50 41, 42, 43, // 17 53 44, 45, 46, // 18 56 47, 48, 49, // 19 59 50, 47, 46, // 20 62 45, 40, 50, // 21 65 51, 52, 37, // 22 68 53, 51, 54, // 23 71 53, 54, 55, // 24 74 56, 55, 54, // 25 77 57, 58, 59, // 26 80 60, 61, 29, // 27 83 62, 63, 64, // 28 86 58, 65, 59, // 29 89 27, 29, 61, // 30 92 66, 67, 68, // 31 95 69, 70, 24, // 32 98 71, 72, 2, // 33 101 73, 74, 69, // 34 104 70, 69, 74, // 35 107 75, 67, 66, // 36 110 76, 77, 66, // 37 113 76, 66, 0, // 38 116 78, 79, 80, // 39 119 30, 81, 82, // 40 122 75, 83, 3, // 41 125 84, 75, 3, // 42 128 3, 5, 84, // 43 131 8, 19, 18, // 44 134 8, 18, 6, // 45 137 11, 12, 9, // 46 140 13, 33, 12, // 47 143 6, 18, 17, // 48 146 6, 17, 14, // 49 149 31, 30, 82, // 50 152 31, 82, 16, // 51 155 16, 19, 31, // 52 158 20, 22, 24, // 53 161 7, 6, 23, // 54 164 24, 7, 23, // 55 167 26, 5, 4, // 56 170 32, 42, 41, // 57 173 34, 85, 41, // 58 176 34, 41, 33, // 59 179 85, 81, 30, // 60 182 85, 30, 32, // 61 185 41, 85, 32, // 62 188 86, 87, 35, // 63 191 37, 52, 88, // 64 194 88, 35, 37, // 65 197 35, 88, 86, // 66 200 38, 64, 63, // 67 203 45, 44, 38, // 68 206 38, 40, 45, // 69 209 63, 39, 38, // 70 212 89, 90, 49, // 71 215 55, 56, 89, // 72 218 43, 89, 41, // 73 221 89, 43, 91, // 74 224 91, 55, 89, // 75 227 92, 41, 89, // 76 230 49, 48, 89, // 77 233 89, 48, 92, // 78 236 46, 49, 90, // 79 239 90, 44, 46, // 80 242 49, 46, 47, // 81 245 50, 46, 45, // 82 248 37, 54, 51, // 83 251 55, 91, 53, // 84 254 54, 37, 36, // 85 257 54, 36, 56, // 86 260 59, 29, 28, // 87 263 59, 28, 57, // 88 266 59, 93, 60, // 89 269 60, 29, 59, // 90 272 59, 65, 62, // 91 275 93, 59, 62, // 92 278 62, 64, 93, // 93 281 87, 86, 27, // 94 284 61, 94, 27, // 95 287 27, 94, 87, // 96 290 21, 73, 69, // 97 293 22, 21, 69, // 98 296 24, 22, 69, // 99 299 80, 95, 71, // 100 302 2, 80, 71, // 101 305 74, 95, 80, // 102 308 74, 80, 79, // 103 311 79, 70, 74, // 104 314 77, 83, 75, // 105 317 75, 66, 77, // 106 320 66, 68, 0, // 107 323 0, 2, 72, // 108 326 0, 72, 76, // 109 329 2, 1, 78, // 110 332 78, 80, 2, // 111 335 96, 97, 98, // 112 338 99, 100, 101, // 113 341 102, 103, 104, // 114 344 96, 98, 104, // 115 347 97, 105, 102, // 116 350 101, 106, 99, // 117 353 104, 98, 102, // 118 356 104, 101, 100, // 119 359 104, 100, 96, // 120 362 102, 98, 97, // 121 365 107, 108, 109, // 122 368 110, 111, 112, // 123 371 111, 113, 114, // 124 374 112, 115, 116, // 125 377 110, 112, 116, // 126 380 109, 117, 107, // 127 383 115, 112, 111, // 128 386 114, 115, 111, // 129 389 117, 109, 110, // 130 392 116, 117, 110, // 131 395 DX3DINDEX_END #endif #else #define index_Trim_Char_x_55_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_55_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_55_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_55_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_55_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_55_1__ ) DX3DMODEL_START( model_Trim_Char_x_55_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_55_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_55_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 396 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_55_1__, 4229381749 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_55_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_54_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_56_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_56_1___initialShadingGroup_0 ) DX3DVERT( 2.75942, 1.48958, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.73415, 1.48958, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.73415, 1.09802, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.162381, 2.00104, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.16276, 1.5392, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.669947, 2.15891, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( -0.274617, 1.48956, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( -0.351562, 1.40155, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( -0.129686, 1.19843, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.120958, 1.48953, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.934153, 2.49348, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.934201, 2.45517, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.993801, 2.49338, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.293042, 2.1591, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.676937, 2.16743, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.67701, 2.49348, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.676572, 2.61406, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.09844, 2.82831, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.93415, 2.80476, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.1913, 2.49577, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 2.03993, 2.15886, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.70558, 2.15884, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.70565, 2.05019, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.70558, 2.47337, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.19126, 2.82112, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.59113, 2.1588, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.30453, 1.48958, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.21991, 1.98819, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.21987, 1.56779, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.73415, 1.51254, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 3.04531, 0.820313, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 3.24844, 1.05312, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.09141, 2.51582, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_56_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_56_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 33 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_56_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_56_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_56_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 6, 9, 4, // 3 11 10, 11, 12, // 4 14 13, 5, 14, // 5 17 15, 14, 11, // 6 20 16, 15, 10, // 7 23 17, 18, 19, // 8 26 20, 21, 22, // 9 29 20, 23, 21, // 10 32 23, 24, 19, // 11 35 21, 25, 22, // 12 38 26, 2, 1, // 13 41 27, 28, 26, // 14 44 0, 29, 1, // 15 47 2, 30, 31, // 16 50 2, 31, 0, // 17 53 5, 13, 3, // 18 56 8, 9, 6, // 19 59 4, 3, 6, // 20 62 15, 16, 13, // 21 65 14, 15, 13, // 22 68 11, 10, 15, // 23 71 10, 18, 16, // 24 74 18, 10, 12, // 25 77 19, 24, 17, // 26 80 32, 19, 18, // 27 83 12, 32, 18, // 28 86 22, 28, 27, // 29 89 22, 27, 20, // 30 92 25, 21, 23, // 31 95 23, 19, 25, // 32 98 26, 1, 29, // 33 101 29, 27, 26, // 34 104 DX3DINDEX_END #endif #else #define index_Trim_Char_x_56_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_56_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_56_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_56_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_56_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_56_1__ ) DX3DMODEL_START( model_Trim_Char_x_56_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_56_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_56_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 105 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_56_1__, 4231466885 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_56_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_55_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_57_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_57_1___initialShadingGroup_0 ) DX3DVERT( 3.04531, 0.78125, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 3.24844, 1.01407, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.89866, 1.32469, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.248422, 1.60278, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.466288, 1.86835, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.248438, 1.86813, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.09141, 2.47678, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.26876, 2.41098, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.44872, 2.66116, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.848441, 2.72682, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.53355, 2.4118, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.848438, 2.41156, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.129686, 1.15938, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.0138751, 1.32466, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( -0.310259, 1.32469, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.247997, 2.06535, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.0840132, 1.86824, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.848764, 2.32977, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.928786, 2.41144, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.73029, 2.41156, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.44844, 2.41156, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.8566, 1.86813, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.04843, 1.6881, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.04844, 1.86813, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.04845, 2.11171, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.30621, 1.86813, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.44153, 1.32469, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.64844, 1.13637, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.64844, 1.32469, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.64844, 1.55167, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.44834, 2.25438, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.09844, 2.78925, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( -0.351562, 1.3625, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.7375, 2.66093, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.99375, 2.78906, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.90415, 2.955, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.57305, 2.955, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.64844, 2.82243, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.64844, 2.955, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.64844, 3.40128, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.58906, 3.49844, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.33125, 3.3625, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.23049, 2.955, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.04844, 2.955, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.04844, 2.69543, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.90175, 2.955, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.04844, 3.26448, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.00781, 3.33125, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.75781, 3.19844, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.15156, 2.50468, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.40938, 2.62968, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_57_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_57_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 51 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_57_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_57_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_57_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 5, 15, 16, // 5 17 13, 3, 16, // 6 20 17, 18, 11, // 7 23 17, 11, 10, // 8 26 19, 8, 20, // 9 29 21, 22, 23, // 10 32 21, 24, 19, // 11 35 25, 24, 23, // 12 38 26, 27, 28, // 13 41 26, 29, 25, // 14 44 2, 29, 28, // 15 47 20, 7, 30, // 16 50 2, 28, 27, // 17 53 27, 0, 2, // 18 56 9, 11, 18, // 19 59 7, 20, 8, // 20 62 31, 9, 6, // 21 65 8, 31, 6, // 22 68 18, 6, 9, // 23 71 3, 5, 16, // 24 74 16, 32, 14, // 25 77 14, 13, 16, // 26 80 15, 5, 4, // 27 83 10, 15, 4, // 28 86 10, 4, 17, // 29 89 21, 23, 24, // 30 92 19, 20, 30, // 31 95 30, 21, 19, // 32 98 26, 28, 29, // 33 101 25, 23, 22, // 34 104 22, 26, 25, // 35 107 33, 34, 35, // 36 110 36, 37, 38, // 37 113 39, 40, 41, // 38 116 35, 39, 38, // 39 119 35, 38, 37, // 40 122 37, 33, 35, // 41 125 36, 38, 39, // 42 128 39, 41, 36, // 43 131 42, 43, 44, // 44 134 45, 44, 43, // 45 137 46, 47, 48, // 46 140 42, 46, 43, // 47 143 44, 49, 50, // 48 146 44, 50, 42, // 49 149 45, 43, 46, // 50 152 48, 45, 46, // 51 155 DX3DINDEX_END #endif #else #define index_Trim_Char_x_57_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_57_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_57_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_57_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_57_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_57_1__ ) DX3DMODEL_START( model_Trim_Char_x_57_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_57_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_57_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 156 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_57_1__, 4233552021 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_57_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_56_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_58_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_58_1___initialShadingGroup_0 ) DX3DVERT( 2.04845, 2.11169, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.29284, 1.88062, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.04844, 1.88062, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 1.09844, 2.78925, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.44872, 2.66116, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.24184, 2.42967, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.248438, 1.88062, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.476419, 1.88081, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.248422, 1.60278, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.094526, 1.88075, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.0192354, 1.3309, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( -0.129686, 1.15938, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( -0.317086, 1.33093, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.247997, 2.06535, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.848438, 2.43031, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.952653, 2.4303, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.848764, 2.32976, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.549477, 2.4306, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.848441, 2.72681, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 2.64844, 1.55167, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 2.89172, 1.33093, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 2.64844, 1.33093, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 2.04843, 1.6881, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 1.84335, 1.88062, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 2.4347, 1.33093, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 2.64844, 1.13635, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 3.24844, 1.01405, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 3.04531, 0.78125, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 1.70994, 2.43031, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.44844, 2.43031, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 1.44834, 2.25438, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 1.09141, 2.47676, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( -0.351562, 1.3625, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 2.94844, 3.29167, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 2.97176, 3.25484, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 2.94844, 3.25484, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.96406, 2.98828, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.04844, 3.27942, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 2.04844, 3.25484, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.96412, 2.98, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 2.04844, 2.98, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.04844, 2.84258, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 2.34844, 3.50812, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 2.50313, 3.52968, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.50322, 3.29688, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 2.34844, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.34845, 2.72722, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.39331, 2.70517, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.19854, 2.98, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.23638, 2.84258, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.19844, 2.84258, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.04844, 2.69797, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.04844, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 2.19844, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 2.34844, 2.47136, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 2.34844, 3.25484, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 2.19844, 3.25484, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.34843, 3.25291, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 2.04844, 3.11742, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 2.19844, 3.11742, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.19844, 2.98801, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.35164, 3.25485, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.9613, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.94844, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 2.94844, 2.84258, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.80772, 2.98, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.94844, 2.98, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 2.64844, 2.46873, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.64844, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.79844, 2.70515, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.76989, 2.84258, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.79844, 2.91371, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.79844, 2.84258, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.94844, 2.68581, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.65431, 3.25484, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.64843, 3.25827, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.64844, 3.51076, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.80782, 2.98772, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 3.04063, 2.98828, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 3.04057, 2.98, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.61295, 2.70514, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 2.64844, 2.7218, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.50313, 2.68437, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 2.50313, 2.45, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 2.22754, 3.11742, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 2.88281, 3.37032, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.71719, 3.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_58_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_58_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 87 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_58_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_58_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_58_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 8, 10, // 3 11 11, 12, 10, // 4 14 9, 13, 6, // 5 17 14, 15, 16, // 6 20 17, 14, 16, // 7 23 17, 18, 14, // 8 26 19, 20, 21, // 9 29 22, 23, 2, // 10 32 1, 19, 24, // 11 35 21, 25, 24, // 12 38 20, 26, 27, // 13 41 4, 28, 29, // 14 44 28, 0, 23, // 15 47 29, 30, 5, // 16 50 15, 14, 18, // 17 53 4, 29, 5, // 18 56 31, 18, 3, // 19 59 5, 31, 3, // 20 62 18, 31, 15, // 21 65 9, 6, 8, // 22 68 12, 32, 9, // 23 71 9, 10, 12, // 24 74 7, 6, 13, // 25 77 7, 13, 17, // 26 80 16, 7, 17, // 27 83 19, 21, 24, // 28 86 22, 2, 1, // 29 89 1, 24, 22, // 30 92 25, 21, 20, // 31 95 20, 27, 25, // 32 98 0, 2, 23, // 33 101 30, 29, 28, // 34 104 28, 23, 30, // 35 107 33, 34, 35, // 36 110 36, 37, 38, // 37 113 39, 40, 41, // 38 116 42, 43, 44, // 39 119 45, 46, 47, // 40 122 48, 49, 50, // 41 125 51, 52, 53, // 42 128 41, 40, 48, // 43 131 52, 41, 50, // 44 134 46, 45, 53, // 45 137 54, 45, 47, // 46 140 42, 55, 56, // 47 143 56, 55, 57, // 48 146 58, 38, 56, // 49 149 40, 58, 59, // 50 152 60, 48, 48, // 51 155 61, 57, 55, // 52 158 62, 63, 64, // 53 161 65, 66, 64, // 54 164 67, 68, 69, // 55 167 70, 71, 72, // 56 170 70, 72, 69, // 57 173 69, 72, 64, // 58 176 62, 73, 63, // 59 179 74, 75, 76, // 60 182 35, 66, 77, // 61 185 78, 79, 66, // 62 188 68, 80, 81, // 63 191 40, 39, 36, // 64 194 58, 40, 36, // 65 197 38, 58, 36, // 66 200 52, 51, 39, // 67 203 39, 41, 52, // 68 206 76, 75, 44, // 69 209 61, 55, 42, // 70 212 42, 44, 61, // 71 215 44, 43, 76, // 72 218 50, 48, 48, // 73 221 53, 45, 54, // 74 224 53, 54, 51, // 75 227 48, 50, 41, // 76 230 50, 53, 52, // 77 233 53, 50, 49, // 78 236 53, 49, 46, // 79 239 80, 68, 67, // 80 242 82, 83, 54, // 81 245 47, 82, 54, // 82 248 67, 83, 82, // 83 251 67, 82, 80, // 84 254 56, 38, 37, // 85 257 37, 42, 56, // 86 260 84, 59, 56, // 87 263 57, 84, 56, // 88 266 56, 59, 58, // 89 269 40, 60, 48, // 90 272 59, 84, 60, // 91 275 60, 40, 59, // 92 278 64, 66, 79, // 93 281 64, 79, 62, // 94 284 64, 72, 71, // 95 287 71, 65, 64, // 96 290 69, 63, 73, // 97 293 73, 67, 69, // 98 296 69, 68, 81, // 99 299 81, 70, 69, // 100 302 64, 63, 69, // 101 305 85, 33, 35, // 102 308 85, 35, 74, // 103 311 76, 85, 74, // 104 314 66, 65, 77, // 105 317 86, 74, 35, // 106 320 77, 86, 35, // 107 323 66, 35, 34, // 108 326 66, 34, 78, // 109 329 DX3DINDEX_END #endif #else #define index_Trim_Char_x_58_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_58_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_58_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_58_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_58_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_58_1__ ) DX3DMODEL_START( model_Trim_Char_x_58_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_58_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_58_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 330 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_58_1__, 4235637157 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_58_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_57_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_59_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_59_1___initialShadingGroup_0 ) DX3DVERT( 2.58255, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.58255, 3.37813, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 3.10313, 3.37813, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 0.959897, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 0.959897, 3.37813, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.50078, 3.37813, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.50076, 1.54785, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.50078, 1.37331, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.23034, 1.37331, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 1.23034, 0.577545, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 1.23025, 0.69046, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 1.50078, 0.578445, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.850149, 0.842712, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.959897, 0.842804, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.959897, 0.577545, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 1.14332, 0.842728, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.959897, 0.575851, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 1.23031, 0.381485, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.841842, 0.960953, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.959408, 1.31194, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.959897, 1.10805, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 1.50076, 1.28442, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 1.01564, 1.37354, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 1.23034, 1.18871, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 1.12903, 0.95813, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.959897, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.959897, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.50078, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.946876, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.946876, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.946876, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.946876, 3.37813, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.946876, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.959897, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.50078, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 2.5825, 1.19084, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 2.98372, 0.842773, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.58255, 0.842804, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 2.04168, 1.49489, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 2.04167, 1.37331, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 2.01547, 0.709915, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.04221, 0.747421, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 2.04167, 0.710175, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.50752, 0.577545, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.5008, 0.320313, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.7712, 0.317078, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 1.77122, 0.577545, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.90645, 0.577545, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 1.77122, 0.580841, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 1.90646, 0.623581, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.04167, 0.577545, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.04166, 1.21025, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 1.64238, 1.29311, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 3.12344, 0.706253, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 2.92344, 0.515625, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 2.58255, 0.841537, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 2.58111, 0.842804, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 2.31211, 0.842804, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 2.08464, 0.842651, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 2.27953, 0.577469, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 2.04168, 0.381714, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.40156, 1.37331, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.11719, 1.46719, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.11713, 1.13492, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 2.40156, 0.990631, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 1.50078, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.04167, 3.37813, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.50078, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.04167, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.04167, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.58255, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.58255, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 3.10313, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.11719, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.11719, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.40156, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.58255, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 3.10313, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 1.75004, 0.577515, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.38374, 0.842789, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.31223, 0.631958, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 3.10313, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 1.16338, 1.10796, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 1.64483, 1.55368, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 1.62979, 0.569595, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.66106, 0.312439, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.11719, 1.90381, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.40156, 1.90381, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 2.11719, 1.175, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 2.40156, 1.31876, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.04167, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 2.04167, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 3.10313, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.40156, 2.24376, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 2.11719, 2.96481, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 2.40156, 3.12032, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.40156, 2.96481, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 2.11719, 2.49689, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 0.2491, 2.96481, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( -0.0384151, 2.96481, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 0.0734386, 3.49532, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 0.163817, 1.77126, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 0.183694, 1.37331, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( -0.101447, 1.37331, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 0.249134, 0.842804, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 0.354688, 0.351563, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 0.0734386, 0.3125, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( -0.0383815, 0.842804, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 0.162501, 1.90392, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( -0.120605, 1.77126, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( -0.121874, 1.90392, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 0.183677, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( -0.101463, 2.43431, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT( 0.354688, 3.45625, 0 ) DX3DVNORM( 0, 0, -1 ) //113 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_59_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_59_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 114 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_59_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_59_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_59_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 14, 13, 15, // 5 17 16, 14, 9, // 6 20 17, 9, 11, // 7 23 18, 19, 20, // 8 26 8, 7, 21, // 9 29 22, 8, 23, // 10 32 24, 15, 13, // 11 35 25, 26, 27, // 12 38 28, 29, 26, // 13 41 30, 31, 4, // 14 44 29, 32, 33, // 15 47 26, 33, 34, // 16 50 35, 36, 37, // 17 53 38, 39, 7, // 18 56 40, 41, 42, // 19 59 11, 11, 43, // 20 62 44, 11, 43, // 21 65 45, 46, 47, // 22 68 48, 49, 47, // 23 71 40, 42, 50, // 24 74 39, 51, 52, // 25 77 36, 53, 54, // 26 80 55, 56, 37, // 27 83 57, 42, 58, // 28 86 59, 60, 50, // 29 89 61, 39, 62, // 30 92 63, 64, 58, // 31 95 65, 5, 66, // 32 98 67, 27, 68, // 33 101 27, 34, 69, // 34 104 70, 71, 72, // 35 107 73, 68, 71, // 36 110 74, 66, 1, // 37 113 75, 76, 71, // 38 116 76, 77, 71, // 39 119 46, 78, 48, // 40 122 79, 80, 57, // 41 125 2, 81, 0, // 42 128 5, 65, 3, // 43 131 8, 22, 6, // 44 134 11, 11, 9, // 45 137 14, 16, 12, // 46 140 10, 9, 14, // 47 143 14, 15, 10, // 48 146 9, 17, 16, // 49 149 11, 44, 17, // 50 152 13, 12, 18, // 51 155 18, 20, 13, // 52 158 21, 23, 8, // 53 161 20, 19, 22, // 54 164 82, 20, 22, // 55 167 23, 82, 22, // 56 170 20, 82, 24, // 57 173 13, 20, 24, // 58 176 27, 67, 25, // 59 179 26, 25, 28, // 60 182 4, 3, 30, // 61 185 33, 26, 29, // 62 188 34, 27, 26, // 63 191 7, 6, 83, // 64 194 83, 38, 7, // 65 197 78, 46, 45, // 66 200 84, 78, 44, // 67 203 43, 84, 44, // 68 206 85, 44, 78, // 69 209 45, 85, 78, // 70 212 50, 60, 45, // 71 215 47, 50, 45, // 72 218 47, 46, 48, // 73 221 50, 47, 49, // 74 224 50, 49, 40, // 75 227 52, 21, 7, // 76 230 7, 39, 52, // 77 233 55, 37, 36, // 78 236 36, 54, 55, // 79 239 42, 41, 58, // 80 242 80, 59, 50, // 81 245 50, 57, 80, // 82 248 42, 57, 50, // 83 251 39, 38, 62, // 84 254 62, 86, 87, // 85 257 87, 61, 62, // 86 260 35, 37, 56, // 87 263 88, 51, 39, // 88 266 63, 88, 89, // 89 269 39, 61, 89, // 90 272 89, 88, 39, // 91 275 64, 79, 57, // 92 278 64, 89, 35, // 93 281 56, 64, 35, // 94 284 64, 63, 89, // 95 287 57, 58, 64, // 96 290 66, 90, 65, // 97 293 68, 91, 67, // 98 296 69, 68, 27, // 99 299 72, 92, 70, // 100 302 86, 73, 93, // 101 305 73, 91, 68, // 102 308 71, 70, 93, // 103 311 93, 73, 71, // 104 314 93, 87, 86, // 105 317 94, 74, 95, // 106 320 74, 90, 66, // 107 323 1, 0, 95, // 108 326 95, 74, 1, // 109 329 95, 96, 94, // 110 332 97, 94, 96, // 111 335 68, 69, 97, // 112 338 68, 97, 75, // 113 341 75, 71, 68, // 114 344 96, 75, 97, // 115 347 77, 72, 71, // 116 350 98, 99, 100, // 117 353 101, 102, 103, // 118 356 104, 105, 106, // 119 359 102, 104, 107, // 120 362 108, 109, 110, // 121 365 111, 112, 99, // 122 368 100, 113, 98, // 123 371 103, 109, 101, // 124 374 106, 107, 104, // 125 377 107, 103, 102, // 126 380 108, 101, 109, // 127 383 112, 111, 108, // 128 386 110, 112, 108, // 129 389 99, 98, 111, // 130 392 DX3DINDEX_END #endif #else #define index_Trim_Char_x_59_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_59_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_59_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_59_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_59_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_59_1__ ) DX3DMODEL_START( model_Trim_Char_x_59_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_59_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_59_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 393 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_59_1__, 4237722293 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_59_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_58_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_60_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_60_1___initialShadingGroup_0 ) DX3DVERT( 0.0343755, 0.273438, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 0.315625, 0.3125, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 0.202173, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( -0.122767, 2.58795, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( -0.159433, 2.00928, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.124998, 2.00928, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.0343755, 3.45625, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( -0.0333251, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.255864, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.16304, 2.58795, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.147287, 1.43059, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.137599, 1.43059, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.123438, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.0850554, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.315625, 3.41719, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.160937, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 3.13906, 3.04688, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 3.37344, 3.12032, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 3.35568, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 3.10781, 3.74532, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 2.87344, 3.66719, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 3.09096, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.78438, 0.538376, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.84688, 0.476563, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 3.04063, 0.667191, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.58269, 0.273376, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.60627, 0.532257, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.5478, 0.530579, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.01719, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.01719, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.60625, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.01719, 3.33907, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.01719, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.60625, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.868751, 3.33907, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.868751, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.868751, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.868751, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.868751, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.01719, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.60625, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.86328, 0.562592, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.01712, 0.411316, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.01719, 0.562576, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.763712, 0.921875, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.766266, 0.851852, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.01719, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.01719, 1.39577, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.840554, 1.21263, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.01719, 1.21266, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.01719, 0.707245, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.31163, 1.49562, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.31171, 1.22536, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.5641, 1.25403, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.16445, 1.16081, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.26913, 1.21272, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.16445, 1.21266, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.05222, 0.851791, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.04776, 0.918991, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.01719, 1.03229, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.06651, 1.0321, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.31173, 0.297333, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.31167, 0.561844, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.16445, 0.562576, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.30979, 0.562408, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.16437, 0.637299, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.10314, 0.70723, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.78438, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 3.06406, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.78438, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.03906, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.03906, 2.00928, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.19531, 2.00928, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.60625, 3.33907, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.19531, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.03906, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.03906, 2.58795, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.19531, 2.58795, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.78438, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.84403, 3.16663, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.78438, 3.31398, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.51094, 3.33907, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.19531, 3.33907, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.32344, 2.00928, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.32344, 2.20468, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.62031, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.78438, 3.03824, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.88125, 3.07031, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.19545, 0.534149, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.19531, 0.562576, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 1.90078, 0.562576, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.03906, 1.57341, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.19531, 1.57341, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.039, 1.09586, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.01914, 0.851929, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.19531, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 1.90079, 0.319138, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 1.77494, 0.562576, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 1.90083, 0.633301, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.32344, 1.57341, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.31035, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 2.32344, 1.27969, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.85031, 0.851883, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 2.78435, 0.912964, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 2.78438, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 2.44476, 0.851913, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 1.60625, 0.273636, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 1.60625, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 1.60627, 1.25301, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 1.60625, 1.51416, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 1.56671, 1.51462, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 3.06406, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 2.03906, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 2.62344, 3.67813, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 2.39844, 3.60001, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 2.32344, 2.45781, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.32344, 2.58795, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 2.32344, 3.08125, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 2.65469, 2.99532, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 2.03906, 1.42813, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 2.03906, 1.13594, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 2.32031, 0.953125, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_60_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_60_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 122 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_60_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_60_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_60_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 7, 3, 9, // 3 11 10, 11, 12, // 4 14 13, 2, 11, // 5 17 2, 13, 0, // 6 20 5, 9, 3, // 7 23 8, 14, 6, // 8 26 9, 8, 7, // 9 29 12, 5, 4, // 10 32 12, 4, 15, // 11 35 15, 10, 12, // 12 38 11, 10, 13, // 13 41 16, 17, 18, // 14 44 19, 20, 21, // 15 47 18, 21, 16, // 16 50 21, 18, 19, // 17 53 22, 23, 24, // 18 56 25, 26, 27, // 19 59 28, 29, 30, // 20 62 31, 32, 33, // 21 65 34, 35, 32, // 22 68 36, 37, 29, // 23 71 35, 38, 39, // 24 74 39, 40, 32, // 25 77 41, 42, 43, // 26 80 44, 45, 46, // 27 83 47, 48, 49, // 28 86 41, 43, 50, // 29 89 51, 52, 53, // 30 92 54, 55, 56, // 31 95 51, 47, 56, // 32 98 46, 57, 58, // 33 101 49, 59, 60, // 34 104 61, 62, 63, // 35 107 63, 64, 65, // 36 110 43, 63, 65, // 37 113 50, 66, 57, // 38 116 67, 68, 69, // 39 119 70, 71, 72, // 40 122 73, 33, 74, // 41 125 75, 76, 77, // 42 128 78, 79, 80, // 43 131 81, 82, 74, // 44 134 72, 83, 84, // 45 137 85, 86, 78, // 46 140 86, 87, 79, // 47 143 88, 89, 90, // 48 146 71, 91, 92, // 49 149 93, 94, 95, // 50 152 96, 90, 97, // 51 155 90, 98, 97, // 52 158 89, 95, 94, // 53 161 72, 92, 99, // 54 164 100, 95, 89, // 55 167 101, 99, 92, // 56 170 102, 103, 104, // 57 173 104, 105, 22, // 58 176 102, 104, 22, // 59 179 22, 24, 102, // 60 182 25, 106, 26, // 61 185 27, 62, 61, // 62 188 27, 61, 25, // 63 191 30, 107, 28, // 64 194 33, 73, 31, // 65 197 32, 31, 34, // 66 200 29, 28, 36, // 67 203 39, 32, 35, // 68 206 40, 33, 32, // 69 209 59, 49, 48, // 70 212 59, 48, 44, // 71 215 46, 59, 44, // 72 218 50, 46, 45, // 73 221 50, 45, 41, // 74 224 53, 108, 109, // 75 227 53, 109, 110, // 76 230 110, 51, 53, // 77 233 56, 55, 52, // 78 236 56, 52, 51, // 79 239 56, 47, 49, // 80 242 58, 60, 59, // 81 245 58, 59, 46, // 82 248 54, 56, 49, // 83 251 60, 54, 49, // 84 254 62, 64, 63, // 85 257 63, 43, 42, // 86 260 42, 61, 63, // 87 263 66, 50, 43, // 88 266 65, 66, 43, // 89 269 57, 46, 50, // 90 272 68, 111, 69, // 91 275 107, 30, 70, // 92 278 77, 76, 112, // 93 281 77, 112, 70, // 94 284 70, 84, 77, // 95 287 70, 112, 107, // 96 290 74, 82, 73, // 97 293 33, 40, 75, // 98 296 74, 33, 75, // 99 299 77, 74, 75, // 100 302 113, 114, 81, // 101 305 78, 80, 81, // 102 308 81, 85, 78, // 103 311 81, 80, 113, // 104 314 84, 67, 115, // 105 317 115, 116, 77, // 106 320 84, 115, 77, // 107 323 84, 70, 72, // 108 326 67, 69, 115, // 109 329 77, 116, 117, // 110 332 85, 118, 86, // 111 335 74, 117, 81, // 112 338 85, 81, 117, // 113 341 117, 74, 77, // 114 344 79, 78, 86, // 115 347 90, 96, 88, // 116 350 92, 72, 71, // 117 353 119, 109, 108, // 118 356 92, 91, 119, // 119 359 92, 120, 101, // 120 362 93, 101, 120, // 121 365 120, 92, 119, // 122 368 108, 120, 119, // 123 371 26, 106, 96, // 124 374 97, 26, 96, // 125 377 98, 90, 89, // 126 380 89, 94, 98, // 127 383 99, 83, 72, // 128 386 89, 88, 100, // 129 389 105, 104, 103, // 130 392 95, 100, 121, // 131 395 95, 121, 101, // 132 398 101, 93, 95, // 133 401 101, 121, 105, // 134 404 103, 101, 105, // 135 407 DX3DINDEX_END #endif #else #define index_Trim_Char_x_60_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_60_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_60_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_60_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_60_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_60_1__ ) DX3DMODEL_START( model_Trim_Char_x_60_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_60_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_60_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 408 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_60_1__, 3223941 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_60_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_59_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_61_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_61_1___initialShadingGroup_0 ) DX3DVERT( 0.26871, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( -0.0209494, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 0.0343755, 3.45624, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 0.123438, 1.86484, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 0.136103, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( -0.148729, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.20031, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.315625, 0.3125, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.0343755, 0.273438, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( -0.08685, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.125852, 2.04449, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( -0.15861, 2.04449, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( -0.11757, 2.63492, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.168432, 2.63492, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.315625, 3.41718, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( -0.160937, 1.86484, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 3.2125, 3.66718, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 3.31533, 3.52031, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 3.0681, 3.52054, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 1.01326, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 1.01326, 3.33905, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 1.60035, 3.33905, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 1.53893, 1.5146, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 1.60036, 1.51349, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 1.60035, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 1.30682, 0.293106, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 1.30677, 0.556671, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.52368, 0.530533, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.737256, 0.863602, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.01326, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 1.01326, 0.716034, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 1.01319, 0.396057, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.831272, 0.568451, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.01326, 0.568436, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.15996, 0.622482, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.2681, 0.568237, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.16003, 0.568436, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.02729, 0.863556, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.07433, 0.716034, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.784781, 1.15866, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.01327, 1.40999, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.01326, 1.15886, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 0.735602, 0.921875, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.01326, 1.01125, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.60038, 1.25185, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.53756, 1.25403, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 1.11387, 1.45427, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 1.30681, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 1.3068, 1.23022, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 1.03653, 1.01111, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 1.02436, 0.919037, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 1.01326, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 1.01326, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 1.60035, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.842188, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 0.842188, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 0.842188, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.842188, 3.33905, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 0.842188, 3.08124, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 1.01326, 3.08124, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.60035, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 2.77453, 0.899948, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 2.81391, 0.863617, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 2.77455, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.94105, 1.4541, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 1.99342, 0.863693, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 2.18745, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 2.18745, 0.568436, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 1.76399, 0.568436, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 1.89411, 0.653732, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 1.8939, 0.568436, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 1.89391, 0.32579, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 1.60034, 0.274216, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 1.60037, 0.533585, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.18758, 0.559006, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.01094, 1.13593, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.29688, 1.27968, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 3.01719, 0.667175, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.81875, 0.476563, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.77455, 0.520645, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.40711, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 2.18745, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.18745, 2.04449, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 2.29688, 2.04449, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 2.29688, 0.953125, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 2.18745, 3.33905, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.01094, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.01094, 2.63492, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 2.18745, 2.63492, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 2.01094, 3.08124, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.18745, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 2.18745, 2.93013, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.77455, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 3.0375, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 2.77455, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 2.29688, 2.45781, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.29688, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 2.48098, 3.65311, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 2.77455, 3.80981, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 2.77455, 3.58075, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 2.62778, 3.13567, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 2.68755, 3.07773, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 2.62777, 3.07773, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 2.29688, 3.08124, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 2.29688, 2.93013, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 2.7745, 2.80742, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 2.51749, 2.92976, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 2.62777, 2.93013, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 2.481, 3.07773, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 2.481, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( 2.58116, 3.22534, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 2.48074, 2.96599, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( 2.77455, 3.03482, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT( 2.77455, 2.93013, 0 ) DX3DVNORM( 0, 0, -1 ) //113 DX3DVERT( 2.39285, 3.52054, 0 ) DX3DVNORM( 0, 0, -1 ) //114 DX3DVERT( 2.481, 3.52054, 0 ) DX3DVNORM( 0, 0, -1 ) //115 DX3DVERT( 2.34688, 3.33905, 0 ) DX3DVNORM( 0, 0, -1 ) //116 DX3DVERT( 2.481, 3.37294, 0 ) DX3DVNORM( 0, 0, -1 ) //117 DX3DVERT( 2.66592, 3.52055, 0 ) DX3DVNORM( 0, 0, -1 ) //118 DX3DVERT( 2.62777, 3.47995, 0 ) DX3DVNORM( 0, 0, -1 ) //119 DX3DVERT( 2.62777, 3.52054, 0 ) DX3DVNORM( 0, 0, -1 ) //120 DX3DVERT( 2.57641, 3.37294, 0 ) DX3DVNORM( 0, 0, -1 ) //121 DX3DVERT( 2.56875, 3.3078, 0 ) DX3DVNORM( 0, 0, -1 ) //122 DX3DVERT( 3.19302, 2.93008, 0 ) DX3DVNORM( 0, 0, -1 ) //123 DX3DVERT( 3.0681, 2.93013, 0 ) DX3DVNORM( 0, 0, -1 ) //124 DX3DVERT( 3.0681, 3.12187, 0 ) DX3DVNORM( 0, 0, -1 ) //125 DX3DVERT( 3.05469, 3.1078, 0 ) DX3DVNORM( 0, 0, -1 ) //126 DX3DVERT( 2.85609, 2.80054, 0 ) DX3DVNORM( 0, 0, -1 ) //127 DX3DVERT( 3.06809, 2.84694, 0 ) DX3DVNORM( 0, 0, -1 ) //128 DX3DVERT( 2.85391, 3.59218, 0 ) DX3DVNORM( 0, 0, -1 ) //129 DX3DVERT( 2.85489, 3.81577, 0 ) DX3DVNORM( 0, 0, -1 ) //130 DX3DVERT( 3.0681, 3.77, 0 ) DX3DVNORM( 0, 0, -1 ) //131 DX3DVERT( 3.06809, 3.49438, 0 ) DX3DVNORM( 0, 0, -1 ) //132 DX3DVERT( 3.04189, 3.52054, 0 ) DX3DVNORM( 0, 0, -1 ) //133 DX3DVERT( 3.36173, 3.31035, 0 ) DX3DVNORM( 0, 0, -1 ) //134 DX3DVERT( 3.13906, 3.30771, 0 ) DX3DVNORM( 0, 0, -1 ) //135 DX3DVERT( 2.01094, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //136 DX3DVERT( 2.01094, 2.04449, 0 ) DX3DVNORM( 0, 0, -1 ) //137 DX3DVERT( 2.2885, 0.863647, 0 ) DX3DVNORM( 0, 0, -1 ) //138 DX3DVERT( 1.55487, 0.273361, 0 ) DX3DVNORM( 0, 0, -1 ) //139 DX3DVERT( 1.13765, 1.15886, 0 ) DX3DVNORM( 0, 0, -1 ) //140 DX3DVERT( 1.60035, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //141 DX3DVERT( 1.60035, 3.08124, 0 ) DX3DVNORM( 0, 0, -1 ) //142 DX3DVERT( 2.01088, 1.09584, 0 ) DX3DVNORM( 0, 0, -1 ) //143 DX3DVERT( 2.01094, 1.42812, 0 ) DX3DVNORM( 0, 0, -1 ) //144 DX3DVERT( 2.29688, 1.45407, 0 ) DX3DVNORM( 0, 0, -1 ) //145 DX3DVERT( 2.01094, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //146 DX3DVERT( 3.0375, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //147 DX3DVERT( 2.29688, 2.63492, 0 ) DX3DVNORM( 0, 0, -1 ) //148 DX3DVERT( 2.40156, 3.08124, 0 ) DX3DVNORM( 0, 0, -1 ) //149 DX3DVERT( 3.12664, 3.22533, 0 ) DX3DVNORM( 0, 0, -1 ) //150 DX3DVERT( 3.35488, 3.22534, 0 ) DX3DVNORM( 0, 0, -1 ) //151 DX3DVERT( 2.85361, 3.02342, 0 ) DX3DVNORM( 0, 0, -1 ) //152 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_61_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_61_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 153 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_61_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_61_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_61_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 4, 6, 9, // 3 11 10, 11, 12, // 4 14 13, 12, 1, // 5 17 2, 14, 0, // 6 20 11, 10, 3, // 7 23 15, 11, 3, // 8 26 3, 5, 15, // 9 29 8, 9, 6, // 10 32 9, 5, 4, // 11 35 12, 13, 10, // 12 38 1, 0, 13, // 13 41 16, 17, 18, // 14 44 19, 20, 21, // 15 47 22, 23, 24, // 16 50 25, 26, 27, // 17 53 28, 29, 30, // 18 56 31, 32, 33, // 19 59 34, 35, 36, // 20 62 25, 31, 36, // 21 65 30, 29, 37, // 22 68 33, 30, 38, // 23 71 39, 40, 41, // 24 74 42, 39, 43, // 25 77 24, 44, 45, // 26 80 46, 47, 48, // 27 83 49, 43, 41, // 28 86 50, 37, 29, // 29 89 51, 52, 53, // 30 92 54, 55, 52, // 31 95 56, 57, 20, // 32 98 58, 56, 19, // 33 101 59, 19, 60, // 34 104 61, 62, 63, // 35 107 23, 64, 24, // 36 110 65, 66, 67, // 37 113 68, 69, 70, // 38 116 71, 72, 73, // 39 119 74, 71, 70, // 40 122 75, 76, 66, // 41 125 77, 78, 79, // 42 128 79, 80, 63, // 43 131 81, 82, 83, // 44 134 76, 84, 66, // 45 137 60, 21, 85, // 46 140 86, 87, 88, // 47 143 89, 90, 91, // 48 146 92, 93, 94, // 49 149 95, 96, 82, // 50 152 97, 98, 99, // 51 155 100, 101, 102, // 52 158 103, 104, 91, // 53 161 88, 91, 104, // 54 164 105, 106, 107, // 55 167 108, 109, 110, // 56 170 111, 108, 102, // 57 173 112, 113, 107, // 58 176 114, 97, 115, // 59 179 116, 117, 109, // 60 182 118, 119, 120, // 61 185 121, 117, 115, // 62 188 122, 110, 109, // 63 191 123, 124, 125, // 64 194 126, 125, 124, // 65 197 127, 105, 113, // 66 200 123, 128, 124, // 67 203 129, 130, 131, // 68 206 132, 133, 18, // 69 209 17, 134, 135, // 70 212 136, 137, 82, // 71 215 138, 74, 67, // 72 218 18, 131, 16, // 73 221 21, 60, 19, // 74 224 47, 46, 22, // 75 227 24, 47, 22, // 76 230 73, 72, 139, // 77 233 27, 73, 139, // 78 236 139, 25, 27, // 79 239 33, 32, 30, // 80 242 30, 32, 28, // 81 245 36, 35, 26, // 82 248 36, 26, 25, // 83 251 36, 31, 33, // 84 254 37, 38, 30, // 85 257 34, 36, 33, // 86 260 33, 38, 34, // 87 263 39, 41, 43, // 88 266 29, 28, 42, // 89 269 42, 43, 29, // 90 272 45, 48, 47, // 91 275 45, 47, 24, // 92 278 140, 41, 40, // 93 281 140, 40, 46, // 94 284 46, 48, 140, // 95 287 41, 140, 49, // 96 290 43, 49, 50, // 97 293 29, 43, 50, // 98 296 53, 141, 51, // 99 299 52, 51, 54, // 100 302 20, 19, 56, // 101 305 19, 59, 58, // 102 308 60, 142, 59, // 103 311 67, 70, 69, // 104 314 69, 65, 67, // 105 317 68, 70, 71, // 106 320 71, 73, 68, // 107 323 70, 67, 74, // 108 326 44, 24, 64, // 109 329 66, 65, 143, // 110 332 144, 136, 81, // 111 335 81, 75, 144, // 112 338 143, 75, 66, // 113 341 64, 144, 75, // 114 344 75, 44, 64, // 115 347 79, 63, 62, // 116 350 62, 77, 79, // 117 353 83, 145, 81, // 118 356 61, 63, 80, // 119 359 84, 138, 66, // 120 362 81, 145, 76, // 121 365 76, 75, 81, // 122 368 80, 84, 76, // 123 371 80, 76, 61, // 124 374 85, 90, 60, // 125 377 141, 53, 86, // 126 380 82, 137, 146, // 127 383 88, 82, 146, // 128 386 88, 146, 86, // 129 389 86, 146, 141, // 130 392 89, 142, 60, // 131 395 91, 88, 87, // 132 398 87, 89, 91, // 133 401 60, 90, 89, // 134 404 93, 147, 94, // 135 407 95, 92, 96, // 136 410 96, 83, 82, // 137 413 88, 148, 95, // 138 416 82, 88, 95, // 139 419 92, 94, 96, // 140 422 99, 118, 120, // 141 425 120, 115, 97, // 142 428 97, 99, 120, // 143 431 108, 111, 149, // 144 434 109, 149, 103, // 145 437 91, 90, 103, // 146 440 103, 90, 109, // 147 443 149, 109, 108, // 148 446 104, 148, 88, // 149 449 107, 113, 105, // 150 452 100, 102, 108, // 151 455 108, 110, 100, // 152 458 102, 107, 106, // 153 461 102, 106, 111, // 154 464 107, 102, 101, // 155 467 101, 112, 107, // 156 470 114, 115, 117, // 157 473 90, 85, 116, // 158 476 116, 109, 90, // 159 479 117, 116, 114, // 160 482 115, 120, 119, // 161 485 119, 121, 115, // 162 488 117, 121, 122, // 163 491 122, 109, 117, // 164 494 150, 151, 123, // 165 497 123, 125, 150, // 166 500 113, 112, 152, // 167 503 124, 113, 152, // 168 506 152, 126, 124, // 169 509 113, 124, 128, // 170 512 113, 128, 127, // 171 515 129, 99, 98, // 172 518 131, 18, 133, // 173 521 133, 129, 131, // 174 524 98, 130, 129, // 175 527 151, 150, 135, // 176 530 132, 18, 17, // 177 533 17, 135, 132, // 178 536 135, 134, 151, // 179 539 82, 81, 136, // 180 542 67, 66, 138, // 181 545 DX3DINDEX_END #endif #else #define index_Trim_Char_x_61_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_61_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_61_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_61_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_61_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_61_1__ ) DX3DMODEL_START( model_Trim_Char_x_61_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_61_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_61_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 546 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_61_1__, 5309077 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_61_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_60_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_62_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_62_1___initialShadingGroup_0 ) DX3DVERT( 2.33875, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.93125, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.33875, 3.06757, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 2.33875, 1.04272, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 2.5816, 0.856522, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 2.33875, 0.856567, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.00711, 1.60037, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.15375, 1.40932, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.857501, 1.40932, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.857478, 0.313248, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.857501, 0.579636, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 1.02587, 0.565445, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.561237, 0.744522, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.561251, 0.580185, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.320482, 0.580185, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.265397, 0.663528, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.200069, 0.856522, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.265001, 0.856567, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.561136, 0.394333, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.854584, 0.580185, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.370112, 1.4091, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.56127, 1.53011, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.561251, 1.40932, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.519051, 1.13293, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.208845, 1.13293, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.264945, 1.27365, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.265001, 1.13293, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.48531, 0.978195, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.503756, 0.85672, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.02895, 1.34044, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.857491, 1.32681, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.561122, 1.19469, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 1.57813, 1.47813, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.57813, 1.96207, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.74625, 1.96207, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.73435, 0.580002, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.45, 0.580185, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.44995, 0.686752, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.20993, 0.580154, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.15378, 0.308701, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.15376, 0.572296, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.44981, 0.366714, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.15376, 1.33252, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.74625, 1.40932, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 2.84688, 0.635941, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 2.6625, 0.429688, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 2.33875, 0.702011, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.13701, 0.856567, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 1.86719, 1.96207, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 1.86406, 1.04219, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 1.84171, 0.856506, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 1.74625, 0.856567, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 0.561251, 3.06757, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 0.561251, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 1.15375, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 0.561251, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 0.561251, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 1.15375, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 0.0968765, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 0.0968765, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( -0.031249, 3.06757, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( -0.031249, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( -0.031249, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 0.561251, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.15375, 3.06757, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 1.57813, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.57813, 3.62032, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.74625, 3.62032, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 1.57813, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 1.57813, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 1.15375, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.33875, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.80313, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.33875, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 1.86719, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 1.86719, 3.17969, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 1.86719, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 1.74625, 3.06757, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.33875, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.93125, 3.06757, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 1.74664, 0.598953, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 1.15375, 1.59216, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 1.02394, 0.303375, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 0.190114, 0.975647, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 1.54324, 0.856552, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.57813, 1.19844, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 1.86719, 1.40932, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 1.86719, 1.34688, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 1.15375, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 1.57813, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 1.57813, 2.51482, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 1.74625, 2.51482, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.80313, 2.1375, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 1.86719, 2.40001, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 1.86719, 2.51482, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 1.86719, 3.62032, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.93125, 2.91875, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_62_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_62_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 97 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_62_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_62_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_62_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 18, 14, 13, // 6 20 13, 12, 19, // 7 23 18, 13, 19, // 8 26 20, 21, 22, // 9 29 20, 22, 23, // 10 32 24, 25, 26, // 11 35 24, 26, 17, // 12 38 27, 28, 17, // 13 41 29, 30, 8, // 14 44 30, 31, 22, // 15 47 32, 33, 34, // 16 50 35, 36, 37, // 17 53 38, 37, 36, // 18 56 39, 40, 38, // 19 59 35, 41, 36, // 20 62 42, 7, 43, // 21 65 4, 44, 45, // 22 68 46, 47, 5, // 23 71 43, 34, 48, // 24 74 49, 50, 51, // 25 77 52, 53, 54, // 26 80 55, 56, 57, // 27 83 58, 59, 56, // 28 86 60, 61, 53, // 29 89 62, 60, 52, // 30 92 63, 52, 64, // 31 95 65, 66, 67, // 32 98 34, 33, 68, // 33 101 69, 70, 64, // 34 104 71, 72, 73, // 35 107 74, 48, 34, // 36 110 75, 0, 2, // 37 113 76, 69, 77, // 38 116 78, 2, 79, // 39 119 50, 80, 51, // 40 122 1, 79, 2, // 41 125 6, 81, 7, // 42 128 8, 22, 21, // 43 131 21, 6, 8, // 44 134 11, 40, 39, // 45 137 11, 39, 82, // 46 140 82, 9, 11, // 47 143 14, 15, 17, // 48 146 14, 17, 28, // 49 149 14, 28, 12, // 50 152 19, 10, 9, // 51 155 9, 18, 19, // 52 158 22, 31, 23, // 53 161 23, 26, 25, // 54 164 25, 20, 23, // 55 167 17, 16, 83, // 56 170 83, 24, 17, // 57 173 26, 23, 27, // 58 176 17, 26, 27, // 59 179 7, 42, 29, // 60 182 29, 8, 7, // 61 185 22, 8, 30, // 62 188 7, 81, 32, // 63 191 43, 7, 32, // 64 194 34, 43, 32, // 65 197 51, 80, 35, // 66 200 84, 51, 35, // 67 203 37, 84, 35, // 68 206 38, 36, 41, // 69 209 38, 41, 39, // 70 212 51, 84, 85, // 71 215 43, 51, 85, // 72 218 43, 85, 42, // 73 221 46, 5, 4, // 74 224 4, 45, 46, // 75 227 48, 86, 43, // 76 230 3, 5, 47, // 77 233 43, 86, 87, // 78 236 43, 87, 49, // 79 239 51, 43, 49, // 80 242 49, 87, 3, // 81 245 47, 49, 3, // 82 248 54, 64, 52, // 83 251 57, 88, 55, // 84 254 56, 55, 58, // 85 257 53, 52, 60, // 86 260 52, 63, 62, // 87 263 64, 70, 63, // 88 266 64, 54, 65, // 89 269 65, 69, 64, // 90 272 65, 75, 77, // 91 275 88, 57, 89, // 92 278 89, 90, 91, // 93 281 89, 91, 34, // 94 284 68, 89, 34, // 95 287 89, 68, 88, // 96 290 91, 90, 69, // 97 293 69, 76, 91, // 98 296 69, 65, 77, // 99 299 72, 92, 73, // 100 302 93, 71, 74, // 101 305 91, 94, 93, // 102 308 91, 93, 74, // 103 311 74, 34, 91, // 104 314 71, 73, 74, // 105 317 67, 95, 75, // 106 320 75, 65, 67, // 107 323 75, 76, 77, // 108 326 76, 94, 91, // 109 329 2, 78, 76, // 110 332 76, 75, 2, // 111 335 79, 96, 78, // 112 338 DX3DINDEX_END #endif #else #define index_Trim_Char_x_62_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_62_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_62_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_62_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_62_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_62_1__ ) DX3DMODEL_START( model_Trim_Char_x_62_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_62_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_62_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 339 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_62_1__, 7394213 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_62_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_61_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_63_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_63_1___initialShadingGroup_0 ) DX3DVERT( 3.15181, 1.51656, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.88891, 1.51656, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 3.0875, 1.40157, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.13514, 0.893433, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.922397, 0.893433, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.922397, 0.737656, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.11875, 2.21249, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.922397, 2.19753, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.922397, 2.13968, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.0531258, 3.38594, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.0531258, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.347918, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.599933, 2.13968, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.347918, 3.38594, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.922397, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.922397, 3.38594, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.22813, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( -0.097556, 0.893494, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.347917, 0.464233, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.347918, 0.581879, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.0606781, 1.82813, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.0606781, 1.51656, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.111833, 1.51666, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( -0.000555145, 1.82802, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( -0.203973, 1.5164, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.0606779, 1.88043, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.347918, 1.82813, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( -0.226405, 1.3578, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.0733862, 1.35042, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.922401, 1.92981, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.07969, 1.94374, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.347955, 2.05275, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.922366, 0.536621, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.922397, 0.581879, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.778777, 0.581879, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.922393, 1.20164, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.811268, 0.893524, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.584376, 0.410934, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.635161, 0.412552, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.635157, 0.581879, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.583441, 0.695099, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.347888, 0.806793, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.778777, 0.737656, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.635135, 0.703049, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.77814, 0.832077, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.699654, 0.737656, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.30167, 1.51657, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.00083, 1.51656, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.56879, 2.13968, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.58072, 2.7628, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.29619, 2.7628, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.99224, 2.13968, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.49688, 2.20853, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.49688, 2.13968, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.52031, 3.125, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.52031, 3.38594, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.49688, 3.38594, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.58125, 3.07344, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.29688, 3.07344, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.07136, 0.498489, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.07135, 0.893433, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.05616, 0.893707, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.07135, 1.83987, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.07135, 2.12158, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.07084, 0.916428, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.22031, 1.63905, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.64583, 1.93735, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.28429, 2.13968, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.28125, 2.06406, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.38138, 0.893524, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.41563, 2.21249, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.48125, 2.7628, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.18862, 2.7628, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.37656, 1.94687, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.49688, 2.90453, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 0.264923, 0.893265, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 0.347746, 1.75, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.49688, 1.93991, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.54688, 0.510941, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.69531, 0.270309, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.64583, 1.63638, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.2384, 1.51659, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.52661, 1.51654, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.54219, 1.68124, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.26563, 1.78281, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.56094, 1.97031, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_63_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_63_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 86 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_63_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_63_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_63_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 8, 7, 12, // 4 14 13, 11, 14, // 5 17 15, 14, 16, // 6 20 17, 18, 19, // 7 23 20, 21, 22, // 8 26 23, 24, 21, // 9 29 25, 23, 20, // 10 32 25, 20, 26, // 11 35 24, 27, 28, // 12 38 8, 29, 30, // 13 41 12, 31, 26, // 14 44 32, 33, 34, // 15 47 4, 35, 36, // 16 50 37, 38, 39, // 17 53 40, 41, 19, // 18 56 42, 34, 33, // 19 59 43, 39, 34, // 20 62 44, 45, 42, // 21 65 5, 4, 36, // 22 68 46, 47, 35, // 23 71 48, 49, 50, // 24 74 51, 52, 53, // 25 77 54, 55, 56, // 26 80 49, 57, 58, // 27 83 59, 60, 61, // 28 86 62, 63, 51, // 29 89 60, 64, 61, // 30 92 0, 65, 66, // 31 95 48, 67, 68, // 32 98 60, 59, 69, // 33 101 64, 60, 69, // 34 104 33, 32, 3, // 35 107 5, 33, 3, // 36 110 70, 71, 72, // 37 113 53, 52, 70, // 38 116 53, 70, 73, // 39 119 6, 73, 70, // 40 122 72, 6, 70, // 41 125 11, 13, 9, // 42 128 14, 15, 13, // 43 131 72, 71, 74, // 44 134 16, 54, 56, // 45 137 16, 56, 15, // 46 140 74, 16, 72, // 47 143 41, 75, 17, // 48 146 17, 19, 41, // 49 149 76, 26, 20, // 50 152 22, 76, 20, // 51 155 21, 20, 23, // 52 158 26, 31, 25, // 53 161 17, 75, 28, // 54 164 28, 22, 21, // 55 167 21, 24, 28, // 56 170 28, 27, 17, // 57 173 30, 47, 46, // 58 176 73, 77, 53, // 59 179 73, 6, 30, // 60 182 30, 6, 8, // 61 185 46, 73, 30, // 62 188 26, 76, 29, // 63 191 26, 8, 12, // 64 194 29, 8, 26, // 65 197 34, 39, 38, // 66 200 34, 38, 32, // 67 203 39, 19, 18, // 68 206 39, 18, 37, // 69 209 39, 43, 40, // 70 212 40, 19, 39, // 71 215 33, 5, 42, // 72 218 34, 42, 45, // 73 221 45, 43, 34, // 74 224 44, 42, 5, // 75 227 5, 36, 44, // 76 230 35, 4, 3, // 77 233 3, 46, 35, // 78 236 50, 67, 48, // 79 239 54, 16, 74, // 80 242 58, 50, 49, // 81 245 78, 79, 59, // 82 248 61, 78, 59, // 83 251 51, 53, 77, // 84 254 51, 77, 62, // 85 257 66, 80, 1, // 86 260 66, 1, 0, // 87 263 81, 82, 83, // 88 266 68, 63, 62, // 89 269 84, 66, 85, // 90 272 68, 85, 48, // 91 275 85, 68, 84, // 92 278 62, 84, 68, // 93 281 83, 80, 66, // 94 284 83, 84, 81, // 95 287 66, 84, 83, // 96 290 69, 82, 81, // 97 293 69, 81, 64, // 98 296 DX3DINDEX_END #endif #else #define index_Trim_Char_x_63_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_63_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_63_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_63_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_63_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_63_1__ ) DX3DMODEL_START( model_Trim_Char_x_63_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_63_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_63_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 297 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_63_1__, 9479349 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_63_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_62_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_64_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_64_1___initialShadingGroup_0 ) DX3DVERT( 2.66305, 1.6353, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.63854, 1.63531, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.63848, 1.73163, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 0.993751, 3.15157, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 1.49688, 3.15157, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.49688, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.984378, 1.63531, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.926176, 1.28455, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.926043, 1.30266, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.31916, 1.30266, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.319059, 1.39384, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.4049, 1.38565, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.485829, 0.682816, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.497289, 0.762802, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.497421, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( -0.0408224, 1.30269, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( -0.196057, 1.6353, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.0749045, 1.63522, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.140889, 1.1761, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.140899, 1.30266, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.351642, 1.13556, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.140899, 1.46899, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.14024, 1.50206, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.170776, 1.46831, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.711732, 1.63531, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.926043, 1.63531, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.832702, 0.969971, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.819201, 0.923096, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.818887, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.604577, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.604577, 0.471024, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.711732, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.497197, 0.585388, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.604611, 0.43486, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.560411, 0.471069, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 0.711732, 0.471024, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 0.926079, 0.339203, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 0.711732, 0.385681, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 0.79837, 0.80368, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.711732, 0.80368, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.711732, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 0.8185, 0.700653, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 0.818887, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 0.872456, 0.649078, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 0.900752, 0.63707, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 0.872465, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 0.698573, 1.6353, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 0.711732, 1.46899, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 0.563742, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 0.639063, 1.20625, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 0.497425, 1.39587, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 0.60453, 1.45152, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 0.604577, 1.30266, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 0.621893, 1.46906, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.711732, 1.30266, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.49687, 0.571014, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.49687, 0.305374, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.497421, 3.15157, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 0.497421, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 0.140899, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 0.140899, 2.30063, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 0.185642, 2.30054, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 0.140965, 2.25409, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( -0.139952, 2.30061, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( -0.215711, 1.87657, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( -0.213171, 1.96797, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 0.0453132, 1.87657, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 0.140899, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( -0.148437, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( -0.148437, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 0.141011, 2.57735, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 0.354548, 2.61743, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 0.401319, 2.37236, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 0.993995, 1.94815, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 0.994061, 1.89238, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 0.720312, 1.87657, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 0.709375, 3.15157, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 0.709375, 3.63126, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 0.926043, 3.63126, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 0.709375, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 0.993751, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 0.926043, 2.30063, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 0.993751, 2.30063, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 2.7744, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 2.63854, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.6344, 0.57019, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 2.06771, 0.589783, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.06772, 0.319504, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 2.49583, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 2.48284, 0.938278, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.29152, 0.637299, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 2.35313, 0.663605, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.35313, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.35302, 0.359329, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 2.42448, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 2.48234, 0.970001, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.46772, 0.803589, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 2.49583, 0.80368, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 2.49583, 0.72052, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 2.42431, 0.718811, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 2.42586, 0.720642, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 2.49583, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 2.63854, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 2.73682, 0.637344, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 2.63854, 0.80368, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 2.63854, 0.488327, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 1.72344, 3.15157, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 1.49688, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 1.72344, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 2.3677, 1.63531, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( 2.31563, 1.83751, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 2.59219, 1.90001, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( 0.993751, 3.63126, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT( 0.926043, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //113 DX3DVERT( 0.497421, 1.30266, 0 ) DX3DVNORM( 0, 0, -1 ) //114 DX3DVERT( 0.497425, 1.15517, 0 ) DX3DVNORM( 0, 0, -1 ) //115 DX3DVERT( 0.925977, 0.628754, 0 ) DX3DVNORM( 0, 0, -1 ) //116 DX3DVERT( 0.7983, 0.795456, 0 ) DX3DVNORM( 0, 0, -1 ) //117 DX3DVERT( 0.631251, 1.20938, 0 ) DX3DVNORM( 0, 0, -1 ) //118 DX3DVERT( -0.148437, 3.15157, 0 ) DX3DVNORM( 0, 0, -1 ) //119 DX3DVERT( 0.0485979, 1.96797, 0 ) DX3DVNORM( 0, 0, -1 ) //120 DX3DVERT( 0.497421, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //121 DX3DVERT( 0.497412, 2.5979, 0 ) DX3DVNORM( 0, 0, -1 ) //122 DX3DVERT( 0.497277, 2.35735, 0 ) DX3DVNORM( 0, 0, -1 ) //123 DX3DVERT( 0.589241, 2.30083, 0 ) DX3DVNORM( 0, 0, -1 ) //124 DX3DVERT( 0.701563, 2.47656, 0 ) DX3DVNORM( 0, 0, -1 ) //125 DX3DVERT( 0.709375, 2.48126, 0 ) DX3DVNORM( 0, 0, -1 ) //126 DX3DVERT( 1.64531, 0.30452, 0 ) DX3DVNORM( 0, 0, -1 ) //127 DX3DVERT( 2.77658, 0.882813, 0 ) DX3DVNORM( 0, 0, -1 ) //128 DX3DVERT( 1.72344, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //129 DX3DVERT( 2.63854, 3.00798, 0 ) DX3DVNORM( 0, 0, -1 ) //130 DX3DVERT( 2.70081, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //131 DX3DVERT( 2.63854, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //132 DX3DVERT( 2.2079, 2.96594, 0 ) DX3DVNORM( 0, 0, -1 ) //133 DX3DVERT( 2.63854, 2.6857, 0 ) DX3DVNORM( 0, 0, -1 ) //134 DX3DVERT( 3.20938, 2.59845, 0 ) DX3DVNORM( 0, 0, -1 ) //135 DX3DVERT( 3.05625, 2.3797, 0 ) DX3DVNORM( 0, 0, -1 ) //136 DX3DVERT( 2.15156, 3, 0 ) DX3DVNORM( 0, 0, -1 ) //137 DX3DVERT( 2.29688, 3.22656, 0 ) DX3DVNORM( 0, 0, -1 ) //138 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_64_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_64_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 139 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_64_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_64_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_64_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 18, 15, 19, // 6 20 20, 18, 9, // 7 23 21, 22, 23, // 8 26 19, 21, 23, // 9 29 24, 25, 8, // 10 32 26, 27, 28, // 11 35 14, 13, 29, // 12 38 30, 29, 31, // 13 41 32, 14, 29, // 14 44 33, 34, 30, // 15 47 33, 30, 35, // 16 50 36, 37, 35, // 17 53 38, 39, 40, // 18 56 41, 42, 31, // 19 59 43, 44, 45, // 20 62 43, 45, 42, // 21 65 46, 24, 47, // 22 68 40, 48, 49, // 23 71 50, 51, 52, // 24 74 53, 47, 54, // 25 77 7, 26, 28, // 26 80 55, 56, 36, // 27 83 57, 58, 59, // 28 86 60, 61, 62, // 29 89 63, 60, 62, // 30 92 64, 65, 66, // 31 95 67, 59, 58, // 32 98 68, 69, 59, // 33 101 60, 63, 70, // 34 104 70, 71, 72, // 35 107 73, 74, 75, // 36 110 24, 46, 75, // 37 113 76, 77, 78, // 38 116 79, 80, 81, // 39 119 80, 82, 81, // 40 122 0, 83, 84, // 41 125 85, 86, 87, // 42 128 1, 84, 88, // 43 131 88, 84, 89, // 44 134 90, 91, 92, // 45 137 90, 92, 93, // 46 140 93, 92, 94, // 47 143 89, 95, 88, // 48 146 96, 97, 98, // 49 149 91, 99, 94, // 50 152 100, 98, 101, // 51 155 102, 101, 98, // 52 158 103, 102, 104, // 53 161 103, 105, 102, // 54 164 4, 106, 5, // 55 167 107, 5, 108, // 56 170 109, 110, 111, // 57 173 78, 112, 3, // 58 176 3, 76, 78, // 59 179 3, 80, 113, // 60 182 8, 25, 6, // 61 185 11, 50, 114, // 62 188 11, 114, 9, // 63 191 14, 32, 12, // 64 194 17, 22, 21, // 65 197 21, 19, 15, // 66 200 15, 17, 21, // 67 203 18, 19, 9, // 68 206 9, 114, 115, // 69 209 115, 20, 9, // 70 212 10, 9, 19, // 71 215 23, 10, 19, // 72 218 8, 54, 47, // 73 221 47, 24, 8, // 74 224 48, 40, 39, // 75 227 39, 31, 29, // 76 230 29, 13, 39, // 77 233 39, 13, 48, // 78 236 31, 35, 30, // 79 239 29, 30, 34, // 80 242 34, 32, 29, // 81 245 35, 37, 33, // 82 248 45, 44, 116, // 83 251 35, 31, 42, // 84 254 36, 45, 116, // 85 257 35, 42, 36, // 86 260 45, 36, 42, // 87 263 40, 28, 27, // 88 266 27, 38, 40, // 89 269 39, 38, 117, // 90 272 31, 39, 117, // 91 275 31, 117, 41, // 92 278 42, 41, 43, // 93 281 47, 53, 46, // 94 284 115, 114, 52, // 95 287 49, 118, 52, // 96 290 49, 52, 54, // 97 293 54, 40, 49, // 98 296 52, 118, 115, // 99 299 52, 114, 50, // 100 302 54, 52, 51, // 101 305 54, 51, 53, // 102 308 54, 8, 7, // 103 311 28, 40, 7, // 104 314 7, 40, 54, // 105 317 36, 116, 55, // 106 320 59, 69, 119, // 107 323 119, 57, 59, // 108 326 120, 65, 63, // 109 329 62, 120, 63, // 110 332 65, 120, 66, // 111 335 66, 17, 16, // 112 338 66, 16, 64, // 113 341 58, 121, 67, // 114 344 59, 67, 68, // 115 347 122, 123, 72, // 116 350 61, 60, 70, // 117 353 70, 72, 61, // 118 356 72, 71, 122, // 119 359 74, 6, 25, // 120 362 81, 82, 73, // 121 365 73, 75, 81, // 122 368 75, 124, 81, // 123 371 75, 25, 24, // 124 374 75, 74, 25, // 125 377 58, 57, 76, // 126 380 76, 79, 58, // 127 383 76, 3, 113, // 128 386 123, 122, 125, // 129 389 79, 121, 58, // 130 392 81, 124, 126, // 131 395 126, 79, 81, // 132 398 79, 76, 113, // 133 401 125, 126, 124, // 134 404 125, 124, 123, // 135 407 5, 107, 80, // 136 410 80, 3, 5, // 137 413 80, 79, 113, // 138 416 84, 1, 0, // 139 419 56, 55, 85, // 140 422 127, 56, 85, // 141 425 85, 87, 127, // 142 428 88, 95, 109, // 143 431 109, 1, 88, // 144 434 84, 104, 97, // 145 437 93, 87, 86, // 146 440 93, 86, 90, // 147 443 101, 102, 105, // 148 446 94, 101, 93, // 149 449 105, 93, 101, // 150 452 97, 96, 89, // 151 455 89, 84, 97, // 152 458 98, 100, 96, // 153 461 94, 92, 91, // 154 464 101, 94, 99, // 155 467 101, 99, 100, // 156 470 97, 104, 102, // 157 473 98, 97, 102, // 158 476 84, 83, 128, // 159 479 104, 84, 128, // 160 482 104, 128, 103, // 161 485 106, 108, 5, // 162 488 108, 129, 107, // 163 491 2, 1, 109, // 164 494 109, 111, 2, // 165 497 130, 131, 132, // 166 500 130, 132, 133, // 167 503 132, 134, 133, // 168 506 135, 136, 134, // 169 509 133, 137, 138, // 170 512 133, 138, 130, // 171 515 134, 132, 131, // 172 518 131, 135, 134, // 173 521 DX3DINDEX_END #endif #else #define index_Trim_Char_x_64_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_64_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_64_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_64_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_64_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_64_1__ ) DX3DMODEL_START( model_Trim_Char_x_64_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_64_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_64_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 522 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_64_1__, 11564485 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_64_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_63_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_65_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_65_1___initialShadingGroup_0 ) DX3DVERT( 2.54995, 0.886459, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.54995, 0.571762, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.8687, 0.886414, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.899843, 0.661133, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.14989, 0.886292, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.899782, 0.886459, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.978612, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.899782, 2.25418, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.899782, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.106556, 1.99356, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.184745, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.349771, 2.25235, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.349728, 3.26221, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.349728, 3.4529, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.307813, 3.44376, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.349658, 2.63846, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.249194, 2.54756, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.349728, 2.54739, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.67038, 3.10104, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.579689, 3.50313, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.69136, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.899836, 2.63506, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.899892, 2.938, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.728125, 2.87187, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.44981, 2.74908, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.44982, 3.03363, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.114908, 0.609787, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.349749, 0.498138, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.349728, 0.609634, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( -0.200335, 1.44376, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( -0.194991, 1.30443, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.073313, 1.44844, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.0747004, 0.886459, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.240139, 0.88649, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.0799359, 1.30444, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( -0.0952173, 0.886459, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.0745543, 0.645203, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.899782, 1.36119, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.763661, 0.886459, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.475001, 0.765518, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.899782, 1.00928, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.44978, 1.2672, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.44984, 1.30444, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.91951, 1.30444, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.77388, 1.9938, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 3.06935, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.78443, 2.54758, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.99989, 2.37985, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.99989, 2.54739, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.76291, 2.54739, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.99989, 3.10104, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.99989, 3.25394, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.9538, 3.10104, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.52812, 3.03517, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.52812, 2.75093, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.38594, 3.59219, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.1125, 3.65469, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.06252, 2.54739, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.19063, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.24508, 3.10104, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.54991, 2.75136, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.54995, 2.54739, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.99989, 0.352737, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.99989, 0.630783, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.80469, 0.596878, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.84063, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.53058, 1.99374, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.44984, 1.82903, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.47422, 1.30444, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.81568, 1.69687, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.75775, 1.30444, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 3.05539, 1.30444, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.54998, 0.946472, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.49037, 0.886459, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.33449, 2.54741, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.54998, 2.37657, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 0.387499, 3.10104, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.556251, 2.44687, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 0.815916, 2.54739, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 0.803125, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 0.478126, 2.73438, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 0.349745, 0.796387, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.18438, 1.37032, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 0.447311, 0.488922, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 0.989064, 1.10782, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.92188, 3, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 1.82813, 2.72656, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.10156, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.86719, 0.332809, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 3.10042, 1.69687, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_65_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_65_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 90 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_65_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_65_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_65_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 18, 19, 13, // 6 20 20, 8, 7, // 7 23 21, 22, 23, // 8 26 24, 25, 22, // 9 29 26, 27, 28, // 10 32 29, 30, 31, // 11 35 32, 33, 34, // 12 38 35, 36, 32, // 13 41 33, 32, 36, // 14 44 6, 8, 37, // 15 47 8, 20, 37, // 16 50 3, 38, 39, // 17 53 5, 40, 38, // 18 56 41, 42, 43, // 19 59 44, 45, 46, // 20 62 47, 48, 49, // 21 65 50, 51, 52, // 22 68 53, 25, 54, // 23 71 55, 56, 51, // 24 74 47, 57, 48, // 25 77 58, 59, 50, // 26 80 46, 60, 61, // 27 83 62, 63, 64, // 28 86 65, 66, 67, // 29 89 41, 68, 42, // 30 92 69, 70, 71, // 31 95 63, 62, 1, // 32 98 72, 73, 0, // 33 101 72, 0, 2, // 34 104 61, 74, 75, // 35 107 11, 17, 16, // 36 110 16, 9, 11, // 37 113 12, 76, 18, // 38 116 18, 13, 12, // 39 119 17, 11, 77, // 40 122 7, 78, 77, // 41 125 7, 77, 20, // 42 128 77, 78, 17, // 43 131 17, 78, 79, // 44 134 23, 18, 76, // 45 137 23, 79, 21, // 46 140 23, 80, 79, // 47 143 80, 15, 17, // 48 146 80, 23, 76, // 49 149 80, 17, 79, // 50 152 22, 21, 24, // 51 155 30, 34, 31, // 52 158 31, 10, 9, // 53 161 31, 9, 29, // 54 164 34, 30, 35, // 55 167 34, 35, 32, // 56 170 36, 26, 28, // 57 173 36, 28, 81, // 58 176 36, 81, 33, // 59 179 42, 67, 82, // 60 182 37, 43, 82, // 61 185 82, 6, 37, // 62 188 82, 43, 42, // 63 191 39, 81, 28, // 64 194 3, 5, 38, // 65 197 83, 28, 27, // 66 200 39, 83, 3, // 67 203 28, 83, 39, // 68 206 40, 5, 4, // 69 209 84, 4, 41, // 70 212 43, 84, 41, // 71 215 4, 84, 40, // 72 218 46, 61, 75, // 73 221 75, 44, 46, // 74 224 49, 66, 65, // 75 227 49, 65, 47, // 76 230 48, 50, 85, // 77 233 25, 24, 54, // 78 236 86, 85, 53, // 79 239 54, 86, 53, // 80 242 50, 52, 85, // 81 245 86, 49, 48, // 82 248 48, 85, 86, // 83 251 51, 50, 59, // 84 254 59, 55, 51, // 85 257 74, 61, 60, // 86 260 48, 57, 87, // 87 263 50, 48, 87, // 88 266 50, 87, 58, // 89 269 58, 87, 74, // 90 272 60, 58, 74, // 91 275 64, 88, 62, // 92 278 67, 42, 68, // 93 281 68, 65, 67, // 94 284 45, 44, 69, // 95 287 89, 45, 69, // 96 290 71, 89, 69, // 97 293 1, 0, 73, // 98 296 73, 63, 1, // 99 299 2, 71, 70, // 100 302 2, 70, 72, // 101 305 DX3DINDEX_END #endif #else #define index_Trim_Char_x_65_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_65_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_65_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_65_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_65_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_65_1__ ) DX3DMODEL_START( model_Trim_Char_x_65_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_65_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_65_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 306 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_65_1__, 13649621 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_65_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_64_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_66_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_66_1___initialShadingGroup_0 ) DX3DVERT( 2.69773, 0.523773, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.76567, 0.578979, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.69773, 0.579041, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.38583, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.45156, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.38583, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.798439, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.514427, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.514427, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.853126, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.514427, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.514427, 3.04817, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.0203113, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.0203113, 3.04817, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( -0.109374, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( -0.109374, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( -0.0203113, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.514427, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.837501, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.29363, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.76203, 1.95078, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.29363, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.29363, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.29363, 3.04817, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.76203, 3.04817, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.29363, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.76203, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.38583, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.38583, 3.04817, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.68594, 3.04817, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.76203, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.76203, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.38583, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.68594, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.29364, 0.359161, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.29363, 0.579041, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.09883, 0.579041, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.787501, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.0875, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( -0.109374, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.514427, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.09883, 0.853363, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.13056, 0.853363, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.07218, 1.31622, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.820028, 0.853363, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.904007, 0.62558, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.90403, 0.716217, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.29363, 0.659576, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.93392, 0.579071, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.09883, 0.716217, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.90403, 0.853363, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.76202, 0.304474, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.76203, 0.578156, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.29363, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 1.76203, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.95469, 1.58437, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.67813, 1.51718, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.70368, 1.40211, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.38583, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.38583, 0.579041, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.38573, 0.674469, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.81205, 0.577545, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.72484, 1.20453, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.61972, 0.853394, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.69773, 0.853363, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.95315, 0.853119, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.45156, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.45156, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.09844, 2.14531, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.11947, 2.49947, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.819443, 2.49947, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.15313, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.18906, 3.58437, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 0.892189, 3.59686, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.1375, 2.8125, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.68594, 3.07343, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 0.775356, 1.40207, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.07307, 1.40207, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 0.775017, 1.33405, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.21315, 0.716217, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.99182, 1.40205, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.8125, 0.303894, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.38576, 0.375641, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 3.00944, 1.18414, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_66_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_66_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 84 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_66_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_66_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_66_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 11, // 4 14 14, 15, 8, // 5 17 13, 16, 17, // 6 20 11, 17, 18, // 7 23 19, 20, 21, // 8 26 22, 23, 24, // 9 29 25, 26, 23, // 10 32 27, 28, 29, // 11 35 30, 24, 28, // 12 38 20, 3, 31, // 13 41 26, 32, 24, // 14 44 32, 33, 28, // 15 47 34, 35, 36, // 16 50 37, 38, 6, // 17 53 15, 39, 40, // 18 56 41, 42, 43, // 19 59 44, 45, 46, // 20 62 36, 35, 47, // 21 65 48, 36, 49, // 22 68 50, 46, 49, // 23 71 42, 41, 49, // 24 74 34, 51, 52, // 25 77 53, 54, 19, // 26 80 55, 56, 57, // 27 83 54, 58, 20, // 28 86 59, 60, 61, // 29 89 62, 63, 64, // 30 92 0, 2, 59, // 31 95 2, 64, 63, // 32 98 1, 65, 64, // 33 101 58, 66, 3, // 34 104 4, 67, 5, // 35 107 68, 69, 70, // 36 110 19, 21, 68, // 37 113 19, 68, 6, // 38 116 6, 38, 19, // 39 119 70, 6, 68, // 40 122 71, 72, 73, // 41 125 23, 22, 71, // 42 128 23, 71, 74, // 43 131 9, 18, 71, // 44 134 73, 9, 71, // 45 137 11, 10, 12, // 46 140 8, 7, 14, // 47 143 17, 11, 13, // 48 146 18, 70, 69, // 49 149 74, 25, 23, // 50 152 18, 74, 71, // 51 155 18, 9, 11, // 52 158 69, 74, 18, // 53 161 20, 31, 21, // 54 164 24, 30, 22, // 55 167 26, 24, 23, // 56 170 29, 75, 27, // 57 173 28, 27, 30, // 58 176 3, 5, 31, // 59 179 32, 28, 24, // 60 182 33, 29, 28, // 61 185 36, 48, 34, // 62 188 37, 76, 77, // 63 191 38, 53, 19, // 64 194 8, 40, 37, // 65 197 37, 6, 8, // 66 200 77, 38, 37, // 67 203 40, 8, 15, // 68 206 77, 76, 78, // 69 209 78, 44, 50, // 70 212 43, 50, 41, // 71 215 50, 43, 78, // 72 218 78, 43, 77, // 73 221 46, 50, 44, // 74 224 79, 49, 36, // 75 227 47, 79, 36, // 76 230 49, 46, 45, // 77 233 45, 48, 49, // 78 236 49, 41, 50, // 79 239 49, 79, 42, // 80 242 52, 47, 35, // 81 245 35, 34, 52, // 82 248 54, 20, 19, // 83 251 57, 80, 55, // 84 254 58, 3, 20, // 85 257 61, 52, 51, // 86 260 61, 81, 82, // 87 263 61, 82, 59, // 88 266 51, 81, 61, // 89 269 80, 57, 62, // 90 272 65, 83, 62, // 91 275 62, 64, 65, // 92 278 62, 83, 80, // 93 281 59, 82, 0, // 94 284 60, 59, 2, // 95 287 63, 60, 2, // 96 290 64, 2, 1, // 97 293 66, 4, 3, // 98 296 DX3DINDEX_END #endif #else #define index_Trim_Char_x_66_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_66_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_66_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_66_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_66_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_66_1__ ) DX3DMODEL_START( model_Trim_Char_x_66_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_66_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_66_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 297 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_66_1__, 15734757 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_66_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_65_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_67_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_67_1___initialShadingGroup_0 ) DX3DVERT( 2.67423, 1.45538, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.98039, 1.64691, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.90664, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.39643, 1.11029, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.53906, 0.573425, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.74453, 0.625366, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.29063, 2.48438, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.025, 2.38748, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.27969, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.814844, 2.30832, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.494722, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.814844, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.09063, 3.11719, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.821875, 3.03125, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.920775, 2.72092, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.74453, 3.05444, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.74453, 3.19305, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.70781, 3.1828, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.350001, 2.12656, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.448438, 1.88123, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.27969, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.54066, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.38418, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.24624, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.27969, 1.52997, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.69124, 1.11029, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 3.13735, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 3.0705, 2.45255, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.90664, 2.31827, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.74453, 2.64221, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.74453, 2.36832, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.92188, 2.42654, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.97656, 3.25781, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.20938, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.26353, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.20938, 2.39969, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.67422, 2.72092, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.67403, 2.76877, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.46534, 2.79401, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.80455, 2.72083, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.85137, 2.18414, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.90664, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.67429, 2.47821, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.71238, 2.45248, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.78999, 2.36591, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.79043, 2.45248, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.81533, 2.31812, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.90664, 2.45248, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.90679, 2.65598, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.81719, 0.643738, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.74453, 0.914978, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.20938, 2.05325, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.98618, 2.18405, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.20938, 1.43146, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.20938, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.00698, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.90664, 1.91562, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.67424, 1.75372, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.67422, 1.64719, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.85537, 2.11093, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.81551, 1.91559, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 3.11594, 1.91571, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.40437, 1.42017, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.43588, 2.53604, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.2094, 1.69156, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.01563, 1.72498, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.37974, 1.68127, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.36875, 2.23593, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.21586, 2.72092, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.27969, 2.51898, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.814844, 2.02365, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.10313, 2.13437, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.20938, 2.72092, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.83936, 2.72086, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.85156, 2.67654, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.18281, 2.5, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.20938, 2.50598, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.20935, 2.76981, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.11719, 2.75, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 2.03125, 2.00467, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.9875, 1.47186, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.28906, 2.07498, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 3.13925, 2.12186, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_67_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_67_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 83 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_67_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_67_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_67_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 9, 11, 8, // 4 14 12, 13, 14, // 5 17 15, 16, 17, // 6 20 10, 18, 19, // 7 23 20, 21, 22, // 8 26 23, 20, 8, // 9 29 23, 24, 20, // 10 32 3, 25, 21, // 11 35 26, 27, 28, // 12 38 29, 30, 31, // 13 41 32, 16, 15, // 14 44 33, 34, 35, // 15 47 36, 37, 38, // 16 50 39, 37, 36, // 17 53 40, 41, 28, // 18 56 39, 36, 42, // 19 59 43, 44, 45, // 20 62 46, 28, 47, // 21 65 27, 48, 47, // 22 68 5, 49, 50, // 23 71 51, 33, 52, // 24 74 53, 54, 55, // 25 77 56, 2, 1, // 26 80 34, 33, 51, // 27 83 57, 58, 2, // 28 86 59, 60, 56, // 29 89 41, 56, 61, // 30 92 54, 53, 62, // 31 95 63, 42, 36, // 32 98 64, 65, 55, // 33 101 58, 57, 66, // 34 104 2, 58, 0, // 35 107 50, 25, 3, // 36 110 3, 5, 50, // 37 113 30, 29, 6, // 38 116 8, 22, 67, // 39 119 67, 6, 8, // 40 122 6, 67, 30, // 41 125 68, 14, 7, // 42 128 7, 6, 69, // 43 131 8, 7, 9, // 44 134 7, 69, 68, // 45 137 14, 68, 12, // 46 140 70, 11, 10, // 47 143 19, 70, 10, // 48 146 22, 8, 20, // 49 149 11, 70, 71, // 50 152 8, 11, 71, // 51 155 8, 71, 23, // 52 158 21, 20, 24, // 53 161 24, 3, 21, // 54 164 28, 41, 26, // 55 167 28, 27, 47, // 56 170 52, 33, 35, // 57 173 72, 73, 74, // 58 176 31, 74, 29, // 59 179 74, 31, 72, // 60 182 75, 76, 72, // 61 185 35, 75, 31, // 62 188 31, 52, 35, // 63 191 72, 31, 75, // 64 194 72, 77, 78, // 65 197 15, 73, 78, // 66 200 15, 78, 32, // 67 203 78, 73, 72, // 68 206 77, 72, 36, // 69 209 38, 77, 36, // 70 212 28, 46, 40, // 71 215 42, 43, 45, // 72 218 48, 45, 47, // 73 221 42, 48, 39, // 74 224 45, 48, 42, // 75 227 47, 45, 44, // 76 230 44, 46, 47, // 77 233 52, 79, 51, // 78 236 55, 80, 53, // 79 239 1, 61, 56, // 80 242 51, 81, 34, // 81 245 2, 56, 60, // 82 248 60, 57, 2, // 83 251 41, 40, 59, // 84 254 59, 56, 41, // 85 257 82, 26, 41, // 86 260 41, 61, 82, // 87 263 0, 66, 62, // 88 266 62, 66, 54, // 89 269 72, 76, 63, // 90 272 63, 36, 72, // 91 275 55, 54, 64, // 92 278 66, 64, 54, // 93 281 66, 0, 58, // 94 284 DX3DINDEX_END #endif #else #define index_Trim_Char_x_67_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_67_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_67_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_67_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_67_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_67_1__ ) DX3DMODEL_START( model_Trim_Char_x_67_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_67_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_67_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 285 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_67_1__, 17819893 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_67_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_66_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_68_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_68_1___initialShadingGroup_0 ) DX3DVERT( 2.57862, 1.36639, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.94886, 1.58795, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.86667, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.20469, 0.2547, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.42656, 0.30896, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.42656, 0.57428, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.990626, 2.65179, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.990626, 2.3602, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.42656, 2.51315, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.274479, 2.38522, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( -0.0601358, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.274481, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.646876, 2.23126, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.568751, 2.49689, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.592189, 3.40625, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.307813, 3.32031, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.434717, 2.92221, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.42656, 3.48483, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.42656, 3.51309, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.41875, 3.51096, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( -0.301561, 2.16095, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( -0.2, 1.90469, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.990626, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.14862, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.990626, 2.13049, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.836334, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.990626, 1.04361, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.02444, 0.92157, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.33356, 0.92157, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.86667, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 3.15211, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 3.06631, 2.58887, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.42656, 2.80417, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.67188, 2.59375, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.70313, 3.58908, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.00261, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.05295, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.00261, 2.45874, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.57865, 2.92221, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.57867, 2.96835, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.3331, 2.99576, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.71492, 2.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.8499, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.86667, 2.58878, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.69697, 2.58878, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.86694, 2.8316, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.49219, 0.325012, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.00261, 2.09912, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.76558, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.0026, 1.34375, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.00261, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.76087, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.86667, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.5787, 1.67438, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.57865, 1.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.85469, 2.16565, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.80825, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 3.12501, 1.92203, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.25535, 1.32617, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.29903, 2.72366, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.57874, 2.66791, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.00265, 1.61536, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.77031, 1.65784, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.23422, 1.60016, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.845313, 2.59845, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 0.745579, 2.92221, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 0.928125, 2.33752, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 0.953093, 2.25531, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 0.274481, 2.09064, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.60156, 2.85938, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.87969, 2.93439, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.58496, 2.92221, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.94844, 2.67188, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.00261, 2.68518, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.00261, 2.92221, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.00261, 2.96069, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.81719, 2.04846, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.73438, 1.39377, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.08594, 2.12189, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 3.15474, 2.17657, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_68_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_68_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 80 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_68_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_68_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_68_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 9, 12, 13, // 4 14 14, 15, 16, // 5 17 17, 18, 19, // 6 20 10, 20, 21, // 7 23 22, 23, 24, // 8 26 25, 22, 24, // 9 29 25, 26, 22, // 10 32 26, 27, 28, // 11 35 29, 30, 31, // 12 38 32, 8, 33, // 13 41 34, 18, 17, // 14 44 35, 36, 37, // 15 47 38, 39, 40, // 16 50 41, 39, 38, // 17 53 42, 29, 43, // 18 56 44, 43, 45, // 19 59 31, 45, 43, // 20 62 4, 46, 5, // 21 65 47, 35, 48, // 22 68 49, 50, 51, // 23 71 52, 2, 1, // 24 74 36, 35, 47, // 25 77 53, 54, 2, // 26 80 55, 56, 52, // 27 83 57, 55, 52, // 28 86 50, 49, 58, // 29 89 59, 60, 38, // 30 92 61, 62, 51, // 31 95 54, 53, 63, // 32 98 2, 54, 0, // 33 101 5, 28, 27, // 34 104 5, 27, 3, // 35 107 8, 32, 6, // 36 110 7, 6, 64, // 37 113 65, 16, 13, // 38 116 13, 66, 64, // 39 119 67, 13, 12, // 40 122 13, 64, 65, // 41 125 66, 13, 67, // 42 128 64, 66, 7, // 43 131 16, 65, 14, // 44 134 68, 11, 10, // 45 137 10, 21, 68, // 46 140 11, 68, 12, // 47 143 24, 67, 12, // 48 146 12, 25, 24, // 49 149 12, 9, 11, // 50 152 23, 22, 26, // 51 155 28, 23, 26, // 52 158 31, 43, 29, // 53 161 48, 35, 37, // 54 164 69, 70, 71, // 55 167 33, 69, 32, // 56 170 69, 33, 70, // 57 173 72, 73, 74, // 58 176 37, 72, 33, // 59 179 37, 33, 48, // 60 182 74, 33, 72, // 61 185 74, 75, 70, // 62 188 71, 70, 34, // 63 191 17, 71, 34, // 64 194 70, 33, 74, // 65 197 75, 74, 38, // 66 200 38, 40, 75, // 67 203 43, 44, 42, // 68 206 41, 38, 60, // 69 209 45, 41, 60, // 70 212 45, 60, 44, // 71 215 48, 76, 47, // 72 218 51, 77, 49, // 73 221 1, 57, 52, // 74 224 47, 78, 36, // 75 227 2, 52, 56, // 76 230 56, 53, 2, // 77 233 29, 42, 55, // 78 236 55, 57, 29, // 79 239 79, 30, 29, // 80 242 29, 57, 79, // 81 245 0, 63, 58, // 82 248 58, 63, 50, // 83 251 74, 73, 59, // 84 254 59, 38, 74, // 85 257 51, 50, 61, // 86 260 63, 61, 50, // 87 263 63, 0, 54, // 88 266 DX3DINDEX_END #endif #else #define index_Trim_Char_x_68_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_68_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_68_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_68_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_68_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_68_1__ ) DX3DMODEL_START( model_Trim_Char_x_68_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_68_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_68_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 267 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_68_1__, 19905029 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_68_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_67_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_69_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_69_1___initialShadingGroup_0 ) DX3DVERT( 2.57821, 1.25595, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.90013, 1.46588, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.83906, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.83906, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.73549, 2.37769, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.81875, 2.04062, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.0125, 2.10373, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.25407, 2.37775, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.0125, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.53438, 2.83334, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.53199, 2.83334, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.490626, 2.96094, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.490626, 2.83334, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.751563, 2.83334, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.751563, 2.09531, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.751563, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.490626, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.0125, 2.48285, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.925349, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.53441, 2.55505, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.53438, 2.60547, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.27344, 2.60547, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.27344, 2.70459, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.13974, 2.60547, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.8722, 2.01624, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.87217, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 2.05625, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.05625, 3.28906, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.87188, 3.28906, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.87188, 2.91095, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.87188, 2.64844, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.58859, 2.83337, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.57814, 2.83734, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.57813, 2.83334, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.15156, 2.91876, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.05625, 2.83334, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.15182, 2.01929, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.15166, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.05625, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.15156, 2.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.91937, 2.60574, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.83906, 2.60547, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.57813, 2.60547, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.83924, 2.68668, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.53438, 0.782562, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.53436, 0.90036, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.29063, 0.784393, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.24688, 1.81406, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.08281, 1.62344, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.22499, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.769436, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.908399, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.490626, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 0.743751, 1.12344, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.490626, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.53438, 1.26563, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.53438, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.79555, 0.742188, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.84569, 0.782593, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.79531, 0.782562, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.86237, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.05625, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.79688, 1.18594, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.08906, 1.16721, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.53448, 0.598999, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.02543, 1.0105, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.79531, 1.01044, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 3.04107, 1.69394, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.83906, 1.69403, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.14367, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.57822, 1.54797, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.57813, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.81057, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.72795, 1.69394, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 3.09405, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.83906, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.39033, 1.46606, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.73113, 1.46616, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.53438, 1.55157, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 3.10006, 2.04062, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 3.04807, 2.37781, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 0.751563, 2.96094, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 0.756251, 2.09531, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.27334, 2.39386, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.872, 2.37762, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.15156, 3.28906, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.15204, 1.92188, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.5782, 2.53574, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.41563, 0.554688, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 0.490626, 1.12344, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 1.67549, 1.01044, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.05622, 1.07608, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 1.85938, 1.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.14063, 1.42502, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_69_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_69_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 94 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_69_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_69_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_69_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 9, 10, // 3 11 11, 12, 13, // 4 14 14, 15, 16, // 5 17 8, 17, 18, // 6 20 19, 20, 21, // 7 23 17, 8, 7, // 8 26 21, 22, 23, // 9 29 20, 9, 10, // 10 32 24, 25, 26, // 11 35 27, 28, 29, // 12 38 30, 29, 9, // 13 41 31, 32, 33, // 14 44 34, 27, 35, // 15 47 36, 37, 38, // 16 50 33, 35, 39, // 17 53 40, 41, 3, // 18 56 4, 3, 41, // 19 59 31, 33, 42, // 20 62 40, 43, 41, // 21 65 44, 45, 46, // 22 68 47, 48, 49, // 23 71 50, 51, 52, // 24 74 53, 50, 54, // 25 77 55, 56, 49, // 26 80 57, 58, 59, // 27 83 25, 60, 61, // 28 86 62, 63, 61, // 29 89 44, 64, 57, // 30 92 45, 44, 59, // 31 95 58, 65, 66, // 32 98 1, 67, 68, // 33 101 26, 61, 69, // 34 104 70, 71, 2, // 35 107 72, 73, 68, // 36 110 67, 74, 75, // 37 113 0, 71, 76, // 38 116 12, 16, 15, // 39 119 77, 78, 56, // 40 122 71, 70, 76, // 41 125 2, 71, 0, // 42 128 5, 72, 75, // 43 131 5, 74, 79, // 44 134 5, 79, 80, // 45 137 5, 80, 3, // 46 140 75, 74, 5, // 47 143 13, 81, 11, // 48 146 6, 8, 18, // 49 149 51, 82, 14, // 50 152 52, 51, 14, // 51 155 16, 52, 14, // 52 158 82, 51, 6, // 53 161 18, 82, 6, // 54 164 21, 83, 19, // 55 167 7, 83, 21, // 56 170 7, 21, 23, // 57 173 7, 23, 17, // 58 176 22, 21, 20, // 59 179 10, 22, 20, // 60 182 38, 84, 24, // 61 185 26, 38, 24, // 62 188 29, 9, 9, // 63 191 29, 30, 35, // 64 194 29, 35, 27, // 65 197 30, 84, 38, // 66 200 20, 19, 30, // 67 203 9, 20, 30, // 68 206 30, 39, 35, // 69 209 34, 85, 27, // 70 212 35, 33, 32, // 71 215 32, 34, 35, // 72 218 26, 86, 36, // 73 221 36, 38, 26, // 74 224 38, 37, 39, // 75 227 39, 87, 42, // 76 230 42, 33, 39, // 77 233 39, 30, 38, // 78 236 3, 80, 40, // 79 239 41, 42, 87, // 80 242 87, 4, 41, // 81 245 42, 41, 43, // 82 248 42, 43, 31, // 83 251 46, 88, 64, // 84 254 64, 44, 46, // 85 257 49, 56, 78, // 86 260 78, 47, 49, // 87 263 52, 54, 50, // 88 266 54, 89, 53, // 89 269 61, 26, 25, // 90 272 77, 56, 55, // 91 275 62, 90, 66, // 92 278 62, 66, 65, // 93 281 62, 65, 91, // 94 284 61, 60, 92, // 95 287 62, 92, 77, // 96 290 77, 55, 62, // 97 293 92, 62, 61, // 98 296 57, 59, 44, // 99 299 59, 66, 90, // 100 302 90, 45, 59, // 101 305 66, 59, 58, // 102 308 68, 2, 1, // 103 311 69, 86, 26, // 104 314 2, 68, 73, // 105 317 2, 73, 70, // 106 320 68, 75, 72, // 107 323 75, 68, 67, // 108 326 63, 62, 91, // 109 329 93, 61, 63, // 110 332 76, 93, 0, // 111 335 63, 0, 93, // 112 338 61, 93, 69, // 113 341 15, 13, 12, // 114 344 DX3DINDEX_END #endif #else #define index_Trim_Char_x_69_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_69_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_69_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_69_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_69_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_69_1__ ) DX3DMODEL_START( model_Trim_Char_x_69_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_69_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_69_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 345 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_69_1__, 21990165 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_69_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_68_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_70_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_70_1___initialShadingGroup_0 ) DX3DVERT( 2.78493, 2.86014, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.86719, 2.78018, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.78484, 2.78009, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 3.10079, 1.92892, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 3.03533, 1.64517, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 2.78484, 1.64517, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.796705, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.603125, 1.57968, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.775001, 1.77969, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.868751, 0.47345, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 1.17039, 0.605957, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 1.17, 0.510284, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.175958, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( -0.121874, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( -0.121874, 1.92889, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.143751, 0.929688, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( -0.121874, 0.929688, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 1.17, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.17, 1.1189, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 1.17, 1.41949, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 1.29135, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 1.54375, 0.510315, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 1.49297, 0.510284, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 1.49297, 0.794006, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 1.40254, 0.794525, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 1.49326, 0.469177, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 1.17017, 0.288544, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 1.76597, 0.794159, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 1.53125, 1.01407, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 1.81594, 1.92889, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 1.91871, 1.76642, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 1.91871, 1.68658, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 1.89844, 1.27188, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 1.81594, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.9084, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 2.4619, 1.10306, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 2.46188, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 2.78484, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 2.70138, 1.64505, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 2.78492, 1.85477, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 2.46203, 1.41571, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 2.85776, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 0.84703, 2.8942, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.17, 3.05032, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.17, 2.78009, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 0.524063, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 0.761951, 2.49649, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 0.524051, 2.22989, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 0.151563, 2.04843, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 0.346267, 1.92889, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( -0.121874, 3.06381, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( -0.121874, 3.21875, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 0.151563, 3.21875, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( -0.121874, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 0.151563, 3.06381, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 0.689588, 2.78009, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 0.847032, 2.78009, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 0.524061, 2.62317, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 1.17003, 2.75803, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 0.846953, 2.56781, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.61719, 3.14374, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 1.61719, 3.63126, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.81594, 3.63126, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 1.61718, 1.92889, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.61719, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 1.81594, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.61719, 2.87189, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 1.81594, 3.06381, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 3.03793, 2.4964, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 3.10796, 2.07187, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.80782, 2.07187, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 1.91875, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 1.91875, 3.14844, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 1.91875, 2.875, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.40991, 3.06372, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.46188, 2.78009, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.78484, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.70486, 2.49649, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 1.60754, 1.36145, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 1.61735, 1.65625, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 2.34917, 1.36124, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 0.417909, 2.49637, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 2.7984, 1.92889, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 1.00469, 0.226563, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 1.84375, 0.9953, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.81589, 0.908905, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 1.59844, 1.27969, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 1.91873, 1.92889, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 0.159376, 2.04843, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 0.151563, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 1.21009, 3.06381, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 1.91875, 3.63126, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.46185, 3.0455, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.46201, 2.7337, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_70_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_70_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 94 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_70_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_70_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_70_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 18, 6, // 6 20 17, 19, 20, // 7 23 21, 22, 23, // 8 26 24, 23, 22, // 9 29 25, 26, 11, // 10 32 21, 25, 22, // 11 35 27, 23, 28, // 12 38 29, 30, 31, // 13 41 32, 33, 34, // 14 44 35, 36, 37, // 15 47 38, 39, 5, // 16 50 37, 36, 40, // 17 53 41, 37, 5, // 18 56 42, 43, 44, // 19 59 45, 46, 47, // 20 62 48, 49, 14, // 21 65 50, 51, 52, // 22 68 53, 50, 54, // 23 71 55, 42, 56, // 24 74 46, 45, 57, // 25 77 58, 59, 56, // 26 80 60, 61, 62, // 27 83 63, 64, 65, // 28 86 66, 60, 67, // 29 89 68, 69, 70, // 30 92 29, 65, 71, // 31 95 72, 73, 67, // 32 98 73, 72, 74, // 33 101 0, 2, 75, // 34 104 2, 76, 77, // 35 107 1, 68, 76, // 36 110 33, 78, 79, // 37 113 36, 80, 40, // 38 116 57, 45, 81, // 39 119 39, 82, 3, // 40 122 3, 5, 39, // 41 125 19, 17, 6, // 42 128 6, 8, 19, // 43 131 26, 83, 9, // 44 134 9, 11, 26, // 45 137 14, 49, 12, // 46 140 13, 12, 15, // 47 143 23, 27, 21, // 48 146 22, 11, 10, // 49 149 22, 10, 24, // 50 152 11, 22, 25, // 51 155 18, 17, 20, // 52 158 23, 24, 28, // 53 161 28, 84, 85, // 54 164 28, 85, 27, // 55 167 86, 78, 33, // 56 170 20, 86, 28, // 57 173 20, 28, 18, // 58 176 33, 28, 86, // 59 179 29, 87, 30, // 60 182 31, 34, 33, // 61 185 31, 79, 29, // 62 188 84, 28, 33, // 63 191 80, 36, 35, // 64 194 32, 80, 35, // 65 197 35, 84, 32, // 66 200 33, 32, 84, // 67 203 37, 41, 35, // 68 206 38, 5, 37, // 69 209 40, 38, 37, // 70 212 5, 4, 41, // 71 215 44, 56, 42, // 72 218 81, 45, 47, // 73 221 48, 88, 49, // 74 224 53, 89, 48, // 75 227 48, 14, 53, // 76 230 47, 49, 88, // 77 233 47, 88, 81, // 78 236 52, 54, 50, // 79 239 54, 89, 53, // 80 242 55, 56, 59, // 81 245 55, 59, 46, // 82 248 46, 57, 55, // 83 251 56, 44, 58, // 84 254 60, 66, 90, // 85 257 62, 67, 60, // 86 260 65, 29, 63, // 87 263 65, 64, 66, // 88 266 44, 43, 90, // 89 269 66, 58, 44, // 90 272 44, 90, 66, // 91 275 66, 73, 65, // 92 278 3, 82, 70, // 93 281 70, 77, 76, // 94 284 76, 68, 70, // 95 287 70, 69, 3, // 96 290 71, 87, 29, // 97 293 62, 91, 72, // 98 296 72, 67, 62, // 99 299 73, 71, 65, // 100 302 74, 92, 75, // 101 305 75, 93, 73, // 102 308 73, 74, 75, // 103 311 73, 66, 67, // 104 314 75, 92, 0, // 105 317 93, 75, 2, // 106 320 2, 77, 93, // 107 323 76, 2, 1, // 108 326 79, 63, 29, // 109 329 79, 31, 33, // 110 332 DX3DINDEX_END #endif #else #define index_Trim_Char_x_70_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_70_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_70_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_70_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_70_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_70_1__ ) DX3DMODEL_START( model_Trim_Char_x_70_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_70_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_70_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 333 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_70_1__, 82459109 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_70_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_69_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_71_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_71_1___initialShadingGroup_0 ) DX3DVERT( 2.80781, 0.77655, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.97813, 0.987488, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.88874, 1.0571, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.49311, 2.46875, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.94375, 2.46875, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.49311, 2.71094, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.65625, 2.37753, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.65625, 1.93738, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.94063, 1.93738, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.65625, 3.25781, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.65625, 2.81766, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 1.94063, 2.81766, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.94063, 2.46875, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.00808, 2.46875, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.00808, 2.71094, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.03804, 0.642303, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.29797, 0.616577, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.30098, 0.862183, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.03804, 1.71732, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.04366, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.30253, 1.5329, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.916787, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.03804, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.795544, 1.66815, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.627415, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.795532, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.03803, 1.75922, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.893188, 1.71722, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.795388, 0.737701, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.03804, 0.837036, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.795532, 1.0571, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.865249, 1.05713, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.833761, 1.20706, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.571747, 1.05707, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.795532, 1.27716, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.556127, 1.27716, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.795532, 1.38721, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.03804, 1.4953, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.839484, 1.27719, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.883908, 1.38721, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.916777, 1.42487, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.684015, 0.837036, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.795532, 0.837036, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.76557, 0.766693, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.82511, 0.837036, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.76557, 0.837036, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 1.58219, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.00808, 1.49725, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.94063, 1.64688, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.65625, 1.47812, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.52306, 0.837036, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.76557, 1.0571, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.62265, 1.05704, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 1.91654, 1.0571, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.24217, 1.4971, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.00806, 1.61774, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.43915, 1.0571, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.49308, 1.01822, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.49311, 1.0571, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.4931, 1.34171, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.94375, 2.71094, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.94063, 2.37753, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.94063, 3.25781, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.94063, 2.71094, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.52305, 0.917938, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.52305, 0.640533, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.03799, 0.903687, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.52306, 1.51001, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.52307, 1.76559, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.29613, 1.78299, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.552819, 1.21362, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.65625, 1.74063, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.65702, 1.35083, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.94063, 1.36563, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.00806, 1.33066, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_71_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_71_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 75 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_71_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_71_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_71_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 10, 6, 12, // 4 14 13, 3, 14, // 5 17 15, 16, 17, // 6 20 18, 19, 20, // 7 23 21, 22, 18, // 8 26 23, 24, 25, // 9 29 26, 27, 18, // 10 32 28, 15, 29, // 11 35 30, 31, 32, // 12 38 33, 30, 34, // 13 41 35, 34, 36, // 14 44 37, 22, 21, // 15 47 38, 39, 36, // 16 50 40, 21, 25, // 17 53 41, 28, 42, // 18 56 41, 42, 30, // 19 59 31, 30, 42, // 20 62 37, 19, 22, // 21 65 43, 44, 45, // 22 68 46, 47, 48, // 23 71 47, 46, 49, // 24 74 43, 45, 50, // 25 77 45, 51, 52, // 26 80 44, 53, 51, // 27 83 54, 55, 47, // 28 86 56, 57, 58, // 29 89 56, 58, 59, // 30 92 2, 59, 58, // 31 95 2, 58, 57, // 32 98 57, 0, 2, // 33 101 4, 60, 5, // 34 104 8, 61, 6, // 35 107 11, 62, 9, // 36 110 12, 13, 63, // 37 113 6, 61, 12, // 38 116 63, 11, 10, // 39 119 10, 12, 63, // 40 122 13, 14, 63, // 41 125 3, 5, 14, // 42 128 50, 64, 17, // 43 131 16, 65, 17, // 44 134 17, 66, 29, // 45 137 29, 15, 17, // 46 140 17, 65, 50, // 47 143 20, 67, 68, // 48 146 18, 22, 19, // 49 149 69, 26, 18, // 50 152 18, 20, 69, // 51 155 68, 69, 20, // 52 158 23, 25, 21, // 53 161 27, 23, 21, // 54 164 21, 18, 27, // 55 167 29, 42, 28, // 56 170 32, 38, 34, // 57 173 34, 30, 32, // 58 176 34, 35, 70, // 59 179 70, 33, 34, // 60 182 25, 24, 35, // 61 185 36, 25, 35, // 62 188 21, 40, 37, // 63 191 36, 34, 38, // 64 194 25, 36, 39, // 65 197 25, 39, 40, // 66 200 30, 33, 41, // 67 203 42, 29, 66, // 68 206 66, 31, 42, // 69 209 8, 7, 71, // 70 212 71, 68, 67, // 71 215 71, 67, 46, // 72 218 46, 48, 71, // 73 221 48, 47, 55, // 74 224 71, 48, 8, // 75 227 72, 52, 51, // 76 230 73, 74, 47, // 77 233 49, 72, 73, // 78 236 73, 47, 49, // 79 239 53, 73, 72, // 80 242 51, 53, 72, // 81 245 50, 65, 43, // 82 248 64, 50, 45, // 83 251 45, 52, 64, // 84 254 51, 45, 44, // 85 257 54, 47, 74, // 86 260 54, 74, 56, // 87 263 59, 54, 56, // 88 266 DX3DINDEX_END #endif #else #define index_Trim_Char_x_71_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_71_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_71_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_71_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_71_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_71_1__ ) DX3DMODEL_START( model_Trim_Char_x_71_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_71_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_71_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 267 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_71_1__, 84544245 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_71_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_70_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_72_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_72_1___initialShadingGroup_0 ) DX3DVERT( 2.35869, 2.63281, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.35869, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.92031, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 2.35868, 1.16116, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 2.80239, 0.852509, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 2.35869, 0.852539, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 0.873124, 1.44385, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 0.556624, 1.40634, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 0.556624, 1.67444, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.556624, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( 0.556593, 0.608246, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.871703, 0.565521, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.406452, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( -0.0238417, 0.852539, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.25628, 0.852539, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.25628, 0.715576, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.25618, 0.445007, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.10736, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 0.25628, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.282433, 0.852631, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.371103, 0.715454, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.515258, 1.67444, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.556619, 1.68289, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.406452, 1.40048, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.53711, 1.40048, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.406429, 1.33981, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( -0.038987, 1.12653, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.0586254, 1.40048, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.25628, 1.40048, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.25628, 1.12653, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.256294, 1.09055, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.262223, 1.12646, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.25628, 1.26349, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.25628, 1.5787, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 1.23189, 1.40048, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.15732, 1.68665, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.34531, 1.64685, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 1.50515, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 1.45766, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 1.45766, 0.852539, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 1.30854, 0.852509, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 1.45765, 0.517242, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.15729, 0.338623, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.15731, 0.578583, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 1.64531, 1.25311, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 1.34616, 1.2149, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 1.34531, 1.3703, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 2.95938, 0.734375, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 2.77969, 0.507813, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 2.35866, 0.822174, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 2.31537, 0.852509, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 1.75797, 1.49716, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 1.95457, 1.4003, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 1.758, 1.40048, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 1.34531, 3.04425, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.34531, 3.59216, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.64531, 3.59216, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 1.34531, 1.94839, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 1.34531, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 1.64531, 2.49634, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.64531, 3.04425, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 1.64531, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.758, 2.63281, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 1.758, 2.89063, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 0.256628, 0.961334, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 2.92031, 2.63281, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.15731, 1.41626, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 0.866011, 1.70953, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 1.1573, 0.633514, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 0.863462, 0.304077, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 0.556624, 0.332642, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 0.406356, 0.684845, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( -0.0444313, 1.03522, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 0.252519, 1.02484, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 0.323627, 1.26349, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 1.64531, 1.94839, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 1.64531, 1.54529, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 1.61645, 0.852539, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 1.75795, 1.19733, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 1.64531, 2.63281, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_72_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_72_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 80 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_72_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_72_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_72_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 10, 9, 12, // 4 14 13, 14, 15, // 5 17 16, 17, 18, // 6 20 16, 18, 12, // 7 23 15, 14, 19, // 8 26 18, 15, 20, // 9 29 21, 22, 8, // 10 32 23, 24, 25, // 11 35 26, 27, 28, // 12 38 26, 29, 30, // 13 41 31, 30, 29, // 14 44 28, 23, 25, // 15 47 31, 29, 32, // 16 50 27, 33, 28, // 17 53 21, 24, 23, // 18 56 34, 35, 36, // 19 59 37, 38, 39, // 20 62 40, 39, 38, // 21 65 41, 42, 43, // 22 68 37, 41, 38, // 23 71 44, 45, 46, // 24 74 4, 47, 48, // 25 77 49, 50, 5, // 26 80 51, 52, 53, // 27 83 3, 5, 50, // 28 86 54, 55, 56, // 29 89 57, 58, 59, // 30 92 54, 60, 61, // 31 95 62, 63, 1, // 32 98 64, 19, 14, // 33 101 2, 65, 0, // 34 104 35, 66, 6, // 35 107 8, 22, 67, // 36 110 67, 6, 8, // 37 113 6, 67, 35, // 38 116 11, 68, 43, // 39 119 11, 42, 69, // 40 122 11, 69, 70, // 41 125 70, 9, 11, // 42 128 43, 42, 11, // 43 131 12, 71, 10, // 44 134 15, 18, 17, // 45 137 17, 13, 15, // 46 140 12, 9, 70, // 47 143 12, 70, 16, // 48 146 19, 20, 15, // 49 149 71, 12, 18, // 50 152 18, 20, 71, // 51 155 32, 29, 26, // 52 158 26, 28, 32, // 53 161 64, 14, 13, // 54 164 30, 13, 72, // 55 167 30, 72, 26, // 56 170 13, 30, 73, // 57 173 13, 73, 64, // 58 176 74, 32, 28, // 59 179 25, 74, 28, // 60 182 32, 74, 31, // 61 185 21, 8, 7, // 62 188 28, 33, 21, // 63 191 23, 28, 21, // 64 194 7, 24, 21, // 65 197 36, 57, 75, // 66 200 34, 66, 35, // 67 203 51, 53, 76, // 68 206 34, 76, 53, // 69 209 76, 34, 36, // 70 212 75, 76, 36, // 71 215 39, 77, 37, // 72 218 38, 43, 68, // 73 221 68, 40, 38, // 74 224 43, 38, 41, // 75 227 39, 40, 45, // 76 230 53, 78, 44, // 77 233 46, 34, 53, // 78 236 53, 44, 46, // 79 239 45, 44, 77, // 80 242 45, 77, 39, // 81 245 49, 5, 4, // 82 248 4, 48, 49, // 83 251 78, 53, 52, // 84 254 78, 52, 3, // 85 257 50, 78, 3, // 86 260 56, 60, 54, // 87 263 59, 75, 57, // 88 266 61, 63, 79, // 89 269 79, 59, 58, // 90 272 79, 58, 54, // 91 275 61, 79, 54, // 92 278 63, 62, 79, // 93 281 1, 0, 62, // 94 284 DX3DINDEX_END #endif #else #define index_Trim_Char_x_72_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_72_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_72_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_72_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_72_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_72_1__ ) DX3DMODEL_START( model_Trim_Char_x_72_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_72_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_72_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 285 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_72_1__, 86629381 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_72_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_71_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_73_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_73_1___initialShadingGroup_0 ) DX3DVERT( 2.32188, 3.04694, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.35469, 3.04688, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.35469, 3.30783, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.667188, 3.15253, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.21875, 3.095, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.21875, 3.35843, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.576564, 3.16406, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.667188, 3.41739, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.77031, 3.05969, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.77031, 3.32147, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.32188, 3.30786, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.607813, 3.42502, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.32181, 0.543518, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.7131, 0.857056, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.59766, 0.857117, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.59766, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 2.74963, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 2.59786, 2.05206, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.13174, 1.88504, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.21851, 1.91516, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.21875, 2.17917, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.257728, 2.39786, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.176602, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.476489, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.310938, 2.76563, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.555588, 2.39786, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.75972, 2.00992, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.77031, 2.00992, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.77031, 2.26715, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.32188, 2.14108, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.32198, 2.19464, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.32188, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.45475, 2.14151, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.19411, 0.604736, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.667168, 0.630005, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.667188, 0.363892, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.66748, 1.66281, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.667188, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.578753, 1.88428, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.396876, 0.65625, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.381251, 0.390625, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.21875, 0.604797, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.21875, 0.343933, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.7703, 0.383759, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.59766, 1.3707, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.87316, 1.3707, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.87351, 1.39688, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.30153, 1.88403, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.3217, 1.87076, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.543, 1.39786, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.54268, 1.3707, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.59766, 1.6275, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.77033, 0.652588, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.32186, 0.887238, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.28465, 0.857117, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.32188, 0.857117, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.83615, 1.11392, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.59766, 1.11392, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.48892, 1.11386, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.667177, 1.94043, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.603125, 2.73907, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.78908, 2.26724, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.18872, 0.34375, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 0.464063, 1.81094, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.471876, 1.80627, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 0.381251, 1.46408, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 0.115625, 1.53284, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.85122, 1.6275, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.507, 1.62756, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_73_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_73_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 69 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_73_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_73_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_73_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 3, 7, // 2 8 4, 8, 9, // 3 11 8, 0, 10, // 4 14 2, 10, 0, // 5 17 5, 7, 3, // 6 20 7, 11, 6, // 7 23 9, 5, 4, // 8 26 10, 9, 8, // 9 29 12, 13, 14, // 10 32 15, 16, 17, // 11 35 18, 19, 20, // 12 38 21, 22, 23, // 13 41 24, 21, 25, // 14 44 26, 27, 28, // 15 47 27, 29, 30, // 16 50 31, 15, 17, // 17 53 32, 30, 29, // 18 56 33, 34, 35, // 19 59 36, 18, 37, // 20 62 36, 37, 38, // 21 65 34, 39, 40, // 22 68 41, 42, 43, // 23 71 44, 45, 46, // 24 74 31, 47, 48, // 25 77 49, 50, 44, // 26 80 15, 31, 48, // 27 83 16, 15, 51, // 28 86 52, 43, 12, // 29 89 53, 54, 55, // 30 92 13, 56, 57, // 31 95 53, 55, 14, // 32 98 50, 58, 57, // 33 101 56, 45, 44, // 34 104 37, 59, 38, // 35 107 14, 55, 12, // 36 110 59, 37, 18, // 37 113 18, 20, 59, // 38 116 23, 25, 21, // 39 119 25, 60, 24, // 40 122 20, 19, 26, // 41 125 28, 20, 26, // 42 128 47, 31, 29, // 43 131 61, 28, 27, // 44 134 27, 30, 61, // 45 137 29, 27, 47, // 46 140 32, 29, 31, // 47 143 31, 17, 32, // 48 146 42, 41, 33, // 49 149 62, 42, 33, // 50 152 33, 35, 62, // 51 155 63, 23, 22, // 52 158 64, 65, 36, // 53 161 38, 64, 36, // 54 164 65, 64, 63, // 55 167 22, 66, 63, // 56 170 63, 66, 65, // 57 173 40, 35, 34, // 58 176 43, 52, 41, // 59 179 67, 51, 44, // 60 182 46, 67, 44, // 61 185 51, 68, 49, // 62 188 44, 51, 49, // 63 191 68, 51, 15, // 64 194 48, 68, 15, // 65 197 51, 67, 16, // 66 200 12, 55, 54, // 67 203 54, 52, 12, // 68 206 57, 14, 13, // 69 209 14, 57, 58, // 70 212 14, 58, 53, // 71 215 57, 44, 50, // 72 218 44, 57, 56, // 73 221 DX3DINDEX_END #endif #else #define index_Trim_Char_x_73_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_73_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_73_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_73_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_73_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_73_1__ ) DX3DMODEL_START( model_Trim_Char_x_73_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_73_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_73_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 222 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_73_1__, 88714517 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_73_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_72_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_74_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_74_1___initialShadingGroup_0 ) DX3DVERT( 2.27599, 0.8526, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.27599, 0.782898, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.35012, 0.8526, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.4644, 2.12543, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.76794, 1.89218, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.7771, 2.12491, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.772977, 2.29269, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.839888, 2.41187, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.772906, 2.41199, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.27394, 2.93176, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 1.27385, 3.22647, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.908873, 2.93176, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.271876, 3.45157, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.271876, 2.93176, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.564063, 2.93176, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.580396, 2.41199, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.772906, 2.76059, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.27397, 2.89859, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.32137, 2.93155, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.77497, 3.19168, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.77496, 3.37405, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 2.60489, 2.93176, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 2.276, 3.26904, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 2.27599, 3.19168, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 2.21974, 2.93182, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 2.27599, 2.93176, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.80064, 3.08762, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.02548, 3.05084, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.02548, 3.19168, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.83115, 3.37543, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.02553, 3.35785, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.27603, 2.86896, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.44604, 2.41199, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.76081, 2.41202, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.27395, 0.376282, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.27399, 0.654449, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.772908, 0.606903, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.560938, 1.48593, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.623123, 1.89218, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.271876, 1.89218, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.61875, 0.604706, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.631251, 0.332825, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.77493, 0.498566, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.45399, 1.89218, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.33118, 1.37234, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.6644, 1.37241, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.02548, 0.8526, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.0254, 0.959747, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.86849, 0.853088, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.27602, 1.26022, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.17693, 1.11255, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.27599, 1.11252, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.271876, 2.41199, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 0.564063, 2.41199, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.564063, 3.45157, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 0.564063, 2.39218, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 0.571876, 2.39218, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.77494, 3.08716, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 0.772906, 0.334625, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.271876, 1.48593, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.77474, 0.804657, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_74_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_74_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 61 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_74_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_74_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_74_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 6, 8, 15, // 5 17 8, 16, 15, // 6 20 17, 9, 11, // 7 23 17, 18, 9, // 8 26 19, 20, 10, // 9 29 21, 22, 23, // 10 32 24, 25, 23, // 11 35 26, 27, 28, // 12 38 29, 20, 19, // 13 41 22, 30, 28, // 14 44 24, 31, 25, // 15 47 32, 33, 21, // 16 50 34, 35, 36, // 17 53 37, 38, 39, // 18 56 36, 40, 41, // 19 59 35, 34, 42, // 20 62 43, 44, 45, // 21 65 1, 0, 46, // 22 68 47, 46, 0, // 23 71 47, 48, 46, // 24 74 49, 50, 51, // 25 77 51, 0, 2, // 26 80 13, 52, 53, // 27 83 3, 43, 4, // 28 86 33, 32, 3, // 29 89 3, 5, 33, // 30 92 14, 54, 12, // 31 95 55, 53, 52, // 32 98 56, 38, 6, // 33 101 15, 56, 6, // 34 104 38, 56, 55, // 35 107 52, 39, 55, // 36 110 55, 39, 38, // 37 113 16, 8, 7, // 38 116 16, 7, 17, // 39 119 11, 16, 17, // 40 122 10, 9, 18, // 41 125 10, 57, 19, // 42 128 18, 57, 10, // 43 131 23, 25, 21, // 44 134 23, 28, 27, // 45 137 23, 27, 24, // 46 140 19, 57, 26, // 47 143 26, 28, 19, // 48 146 19, 28, 30, // 49 149 19, 30, 29, // 50 152 28, 23, 22, // 51 155 21, 25, 31, // 52 158 31, 32, 21, // 53 161 36, 58, 34, // 54 164 39, 59, 37, // 55 167 41, 58, 36, // 56 170 42, 60, 35, // 57 173 45, 4, 43, // 58 176 46, 48, 60, // 59 179 46, 60, 42, // 60 182 46, 42, 1, // 61 185 0, 51, 50, // 62 188 50, 47, 0, // 63 191 44, 49, 51, // 64 194 45, 44, 51, // 65 197 2, 45, 51, // 66 200 53, 14, 13, // 67 203 DX3DINDEX_END #endif #else #define index_Trim_Char_x_74_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_74_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_74_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_74_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_74_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_74_1__ ) DX3DMODEL_START( model_Trim_Char_x_74_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_74_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_74_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 204 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_74_1__, 90799653 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_74_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_73_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_75_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_75_1___initialShadingGroup_0 ) DX3DVERT( 2.42067, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //0 DX3DVERT( 2.55313, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //1 DX3DVERT( 2.56875, 3.12811, 0 ) DX3DVNORM( 0, 0, -1 ) //2 DX3DVERT( 0.921394, 3.13281, 0 ) DX3DVNORM( 0, 0, -1 ) //3 DX3DVERT( 0.921394, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //4 DX3DVERT( 1.54417, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //5 DX3DVERT( 1.18425, 1.50177, 0 ) DX3DVNORM( 0, 0, -1 ) //6 DX3DVERT( 1.54416, 1.46613, 0 ) DX3DVNORM( 0, 0, -1 ) //7 DX3DVERT( 1.54417, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //8 DX3DVERT( 0.0343755, 1.58438, 0 ) DX3DVNORM( 0, 0, -1 ) //9 DX3DVERT( -0.0781247, 1.79532, 0 ) DX3DVNORM( 0, 0, -1 ) //10 DX3DVERT( 0.0232211, 1.85934, 0 ) DX3DVNORM( 0, 0, -1 ) //11 DX3DVERT( 0.421635, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //12 DX3DVERT( 0.421619, 0.644073, 0 ) DX3DVNORM( 0, 0, -1 ) //13 DX3DVERT( 0.336551, 0.841583, 0 ) DX3DVNORM( 0, 0, -1 ) //14 DX3DVERT( 0.326354, 0.94931, 0 ) DX3DVNORM( 0, 0, -1 ) //15 DX3DVERT( 0.921394, 0.587189, 0 ) DX3DVNORM( 0, 0, -1 ) //16 DX3DVERT( 0.921394, 0.646637, 0 ) DX3DVNORM( 0, 0, -1 ) //17 DX3DVERT( 1.41859, 0.586456, 0 ) DX3DVNORM( 0, 0, -1 ) //18 DX3DVERT( 0.671514, 0.587189, 0 ) DX3DVNORM( 0, 0, -1 ) //19 DX3DVERT( 0.67143, 0.805176, 0 ) DX3DVNORM( 0, 0, -1 ) //20 DX3DVERT( 0.671557, 0.454193, 0 ) DX3DVNORM( 0, 0, -1 ) //21 DX3DVERT( 0.470713, 0.587219, 0 ) DX3DVNORM( 0, 0, -1 ) //22 DX3DVERT( 0.615808, 1.85934, 0 ) DX3DVNORM( 0, 0, -1 ) //23 DX3DVERT( 0.421635, 1.77942, 0 ) DX3DVNORM( 0, 0, -1 ) //24 DX3DVERT( 0.421635, 1.85934, 0 ) DX3DVNORM( 0, 0, -1 ) //25 DX3DVERT( 0.671514, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //26 DX3DVERT( 0.921394, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //27 DX3DVERT( 0.921619, 1.22641, 0 ) DX3DVNORM( 0, 0, -1 ) //28 DX3DVERT( 0.561213, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //29 DX3DVERT( 0.671514, 1.09604, 0 ) DX3DVNORM( 0, 0, -1 ) //30 DX3DVERT( 0.421635, 1.09604, 0 ) DX3DVNORM( 0, 0, -1 ) //31 DX3DVERT( 0.623259, 0.953796, 0 ) DX3DVNORM( 0, 0, -1 ) //32 DX3DVERT( 0.680245, 1.09625, 0 ) DX3DVNORM( 0, 0, -1 ) //33 DX3DVERT( 0.671323, 1.0856, 0 ) DX3DVNORM( 0, 0, -1 ) //34 DX3DVERT( 1.54417, 1.19421, 0 ) DX3DVNORM( 0, 0, -1 ) //35 DX3DVERT( 1.1817, 1.25381, 0 ) DX3DVNORM( 0, 0, -1 ) //36 DX3DVERT( 0.201563, 3.13281, 0 ) DX3DVNORM( 0, 0, -1 ) //37 DX3DVERT( 0.201563, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //38 DX3DVERT( 0.421635, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //39 DX3DVERT( 0.421635, 2.11105, 0 ) DX3DVNORM( 0, 0, -1 ) //40 DX3DVERT( 0.921394, 1.95981, 0 ) DX3DVNORM( 0, 0, -1 ) //41 DX3DVERT( 1.04063, 2.20468, 0 ) DX3DVNORM( 0, 0, -1 ) //42 DX3DVERT( 1.04375, 2.20001, 0 ) DX3DVNORM( 0, 0, -1 ) //43 DX3DVERT( 0.828677, 2.36819, 0 ) DX3DVNORM( 0, 0, -1 ) //44 DX3DVERT( 0.421635, 3.13281, 0 ) DX3DVNORM( 0, 0, -1 ) //45 DX3DVERT( 0.921394, 2.42679, 0 ) DX3DVNORM( 0, 0, -1 ) //46 DX3DVERT( 0.921394, 2.36819, 0 ) DX3DVNORM( 0, 0, -1 ) //47 DX3DVERT( 1.54417, 2.82025, 0 ) DX3DVNORM( 0, 0, -1 ) //48 DX3DVERT( 1.54417, 2.50897, 0 ) DX3DVNORM( 0, 0, -1 ) //49 DX3DVERT( 1.31122, 2.36819, 0 ) DX3DVNORM( 0, 0, -1 ) //50 DX3DVERT( 2.83367, 1.85934, 0 ) DX3DVNORM( 0, 0, -1 ) //51 DX3DVERT( 2.91065, 1.60489, 0 ) DX3DVNORM( 0, 0, -1 ) //52 DX3DVERT( 2.67055, 1.60492, 0 ) DX3DVNORM( 0, 0, -1 ) //53 DX3DVERT( 1.81384, 1.35049, 0 ) DX3DVNORM( 0, 0, -1 ) //54 DX3DVERT( 1.73254, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //55 DX3DVERT( 1.54418, 0.334473, 0 ) DX3DVNORM( 0, 0, -1 ) //56 DX3DVERT( 1.54416, 0.589142, 0 ) DX3DVNORM( 0, 0, -1 ) //57 DX3DVERT( 1.6375, 0.59375, 0 ) DX3DVNORM( 0, 0, -1 ) //58 DX3DVERT( 1.92092, 1.23993, 0 ) DX3DVNORM( 0, 0, -1 ) //59 DX3DVERT( 1.92091, 1.09604, 0 ) DX3DVNORM( 0, 0, -1 ) //60 DX3DVERT( 1.73254, 1.09604, 0 ) DX3DVNORM( 0, 0, -1 ) //61 DX3DVERT( 1.67845, 1.09579, 0 ) DX3DVNORM( 0, 0, -1 ) //62 DX3DVERT( 1.73254, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //63 DX3DVERT( 1.72787, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //64 DX3DVERT( 1.73265, 0.877686, 0 ) DX3DVNORM( 0, 0, -1 ) //65 DX3DVERT( 1.73267, 0.955688, 0 ) DX3DVNORM( 0, 0, -1 ) //66 DX3DVERT( 2.42067, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //67 DX3DVERT( 2.74693, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //68 DX3DVERT( 2.42076, 0.546814, 0 ) DX3DVNORM( 0, 0, -1 ) //69 DX3DVERT( 2.36551, 0.841553, 0 ) DX3DVNORM( 0, 0, -1 ) //70 DX3DVERT( 2.42072, 0.896393, 0 ) DX3DVNORM( 0, 0, -1 ) //71 DX3DVERT( 2.59783, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //72 DX3DVERT( 2.67055, 1.35046, 0 ) DX3DVNORM( 0, 0, -1 ) //73 DX3DVERT( 2.57958, 1.60483, 0 ) DX3DVNORM( 0, 0, -1 ) //74 DX3DVERT( 2.43669, 1.85944, 0 ) DX3DVNORM( 0, 0, -1 ) //75 DX3DVERT( 2.67055, 1.85934, 0 ) DX3DVNORM( 0, 0, -1 ) //76 DX3DVERT( 2.60009, 1.42499, 0 ) DX3DVNORM( 0, 0, -1 ) //77 DX3DVERT( 2.92049, 1.45129, 0 ) DX3DVNORM( 0, 0, -1 ) //78 DX3DVERT( 2.91656, 1.35049, 0 ) DX3DVNORM( 0, 0, -1 ) //79 DX3DVERT( 1.63413, 2.87708, 0 ) DX3DVNORM( 0, 0, -1 ) //80 DX3DVERT( 1.92091, 3.05826, 0 ) DX3DVNORM( 0, 0, -1 ) //81 DX3DVERT( 1.92091, 2.87708, 0 ) DX3DVNORM( 0, 0, -1 ) //82 DX3DVERT( 1.68437, 2.06775, 0 ) DX3DVNORM( 0, 0, -1 ) //83 DX3DVERT( 1.54418, 2.29465, 0 ) DX3DVNORM( 0, 0, -1 ) //84 DX3DVERT( 1.78586, 2.30676, 0 ) DX3DVNORM( 0, 0, -1 ) //85 DX3DVERT( 1.92091, 2.73663, 0 ) DX3DVNORM( 0, 0, -1 ) //86 DX3DVERT( 2.67057, 2.06451, 0 ) DX3DVNORM( 0, 0, -1 ) //87 DX3DVERT( 1.92096, 2.05612, 0 ) DX3DVNORM( 0, 0, -1 ) //88 DX3DVERT( 1.92093, 2.30304, 0 ) DX3DVNORM( 0, 0, -1 ) //89 DX3DVERT( 2.42069, 2.20816, 0 ) DX3DVNORM( 0, 0, -1 ) //90 DX3DVERT( 2.42067, 2.11377, 0 ) DX3DVNORM( 0, 0, -1 ) //91 DX3DVERT( 2.60529, 2.11383, 0 ) DX3DVNORM( 0, 0, -1 ) //92 DX3DVERT( 2.42076, 1.87405, 0 ) DX3DVNORM( 0, 0, -1 ) //93 DX3DVERT( 2.02656, 3.125, 0 ) DX3DVNORM( 0, 0, -1 ) //94 DX3DVERT( 2.42067, 3.03864, 0 ) DX3DVNORM( 0, 0, -1 ) //95 DX3DVERT( 2.1533, 2.87708, 0 ) DX3DVNORM( 0, 0, -1 ) //96 DX3DVERT( 0.921385, 1.48251, 0 ) DX3DVNORM( 0, 0, -1 ) //97 DX3DVERT( 2.00392, 0.945587, 0 ) DX3DVNORM( 0, 0, -1 ) //98 DX3DVERT( 1.54417, 3.13281, 0 ) DX3DVNORM( 0, 0, -1 ) //99 DX3DVERT( 1.92091, 3.38593, 0 ) DX3DVNORM( 0, 0, -1 ) //100 DX3DVERT( 0.421243, 1.22397, 0 ) DX3DVNORM( 0, 0, -1 ) //101 DX3DVERT( 1.42741, 0.332275, 0 ) DX3DVNORM( 0, 0, -1 ) //102 DX3DVERT( 0.921511, 0.377502, 0 ) DX3DVNORM( 0, 0, -1 ) //103 DX3DVERT( 0.64962, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //104 DX3DVERT( 1.54419, 2.06326, 0 ) DX3DVNORM( 0, 0, -1 ) //105 DX3DVERT( 1.93438, 0.635925, 0 ) DX3DVNORM( 0, 0, -1 ) //106 DX3DVERT( 1.9209, 0.372986, 0 ) DX3DVNORM( 0, 0, -1 ) //107 DX3DVERT( 1.92091, 0.841614, 0 ) DX3DVNORM( 0, 0, -1 ) //108 DX3DVERT( 1.73461, 0.917847, 0 ) DX3DVNORM( 0, 0, -1 ) //109 DX3DVERT( 1.99469, 0.841644, 0 ) DX3DVNORM( 0, 0, -1 ) //110 DX3DVERT( 2.02656, 3.13281, 0 ) DX3DVNORM( 0, 0, -1 ) //111 DX3DVERT( 1.92091, 3.13281, 0 ) DX3DVNORM( 0, 0, -1 ) //112 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_75_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_75_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 113 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_75_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_75_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_75_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 12, 14, 15, // 5 17 16, 17, 18, // 6 20 19, 20, 17, // 7 23 13, 12, 20, // 8 26 21, 22, 19, // 9 29 21, 19, 16, // 10 32 23, 24, 25, // 11 35 26, 27, 28, // 12 38 29, 26, 30, // 13 41 31, 30, 32, // 14 44 33, 34, 30, // 15 47 8, 35, 36, // 16 50 37, 38, 39, // 17 53 25, 11, 40, // 18 56 41, 42, 43, // 19 59 23, 40, 44, // 20 62 45, 39, 4, // 21 65 44, 46, 47, // 22 68 48, 49, 50, // 23 71 51, 52, 53, // 24 74 7, 54, 55, // 25 77 56, 57, 58, // 26 80 59, 60, 61, // 27 83 55, 61, 62, // 28 86 63, 64, 65, // 29 89 66, 61, 60, // 30 92 67, 68, 69, // 31 95 70, 67, 69, // 32 98 70, 71, 67, // 33 101 71, 72, 73, // 34 104 74, 75, 76, // 35 107 77, 74, 53, // 36 110 78, 79, 73, // 37 113 80, 81, 82, // 38 116 83, 84, 85, // 39 119 80, 82, 86, // 40 122 87, 51, 76, // 41 125 88, 89, 90, // 42 128 91, 90, 92, // 43 131 93, 91, 92, // 44 134 94, 95, 96, // 45 137 96, 86, 82, // 46 140 26, 29, 97, // 47 143 61, 66, 62, // 48 146 60, 59, 98, // 49 149 99, 5, 100, // 50 152 2, 95, 0, // 51 155 5, 99, 3, // 52 158 27, 97, 6, // 53 161 6, 36, 27, // 54 164 11, 25, 24, // 55 167 24, 9, 11, // 56 170 15, 101, 31, // 57 173 15, 31, 12, // 58 176 18, 57, 56, // 59 179 18, 102, 103, // 60 182 18, 103, 16, // 61 185 56, 102, 18, // 62 188 17, 16, 19, // 63 191 12, 104, 20, // 64 194 20, 19, 22, // 65 197 20, 22, 13, // 66 200 16, 103, 21, // 67 203 33, 30, 26, // 68 206 26, 28, 33, // 69 209 30, 31, 101, // 70 212 30, 101, 29, // 71 215 30, 34, 32, // 72 218 32, 104, 12, // 73 221 12, 31, 32, // 74 224 36, 28, 27, // 75 227 36, 6, 8, // 76 230 39, 45, 37, // 77 233 47, 50, 42, // 78 236 43, 84, 105, // 79 239 105, 41, 43, // 80 242 42, 41, 47, // 81 245 23, 25, 40, // 82 248 44, 47, 41, // 83 251 41, 23, 44, // 84 254 4, 3, 45, // 85 257 50, 47, 46, // 86 260 46, 48, 50, // 87 263 53, 76, 51, // 88 266 55, 8, 7, // 89 269 63, 106, 58, // 90 272 58, 107, 56, // 91 275 58, 64, 63, // 92 278 58, 106, 107, // 93 281 61, 55, 54, // 94 284 54, 59, 61, // 95 287 35, 8, 55, // 96 290 62, 35, 55, // 97 293 108, 63, 65, // 98 296 60, 109, 66, // 99 299 109, 60, 108, // 100 302 65, 109, 108, // 101 305 108, 110, 106, // 102 308 69, 107, 106, // 103 311 69, 106, 70, // 104 314 106, 63, 108, // 105 317 68, 67, 71, // 106 320 73, 79, 71, // 107 323 71, 79, 68, // 108 326 76, 53, 74, // 109 329 73, 72, 77, // 110 332 77, 53, 73, // 111 335 73, 53, 52, // 112 338 73, 52, 78, // 113 341 83, 105, 84, // 114 344 85, 89, 88, // 115 347 88, 83, 85, // 116 350 86, 49, 48, // 117 353 48, 80, 86, // 118 356 91, 93, 88, // 119 359 90, 91, 88, // 120 362 76, 75, 93, // 121 365 87, 76, 93, // 122 368 93, 92, 87, // 123 371 111, 112, 100, // 124 374 96, 82, 81, // 125 377 81, 94, 96, // 126 380 95, 94, 111, // 127 383 100, 0, 111, // 128 386 111, 0, 95, // 129 389 97, 27, 26, // 130 392 98, 110, 108, // 131 395 108, 60, 98, // 132 398 100, 112, 99, // 133 401 DX3DINDEX_END #endif #else #define index_Trim_Char_x_75_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_75_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_75_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_75_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_75_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_75_1__ ) DX3DMODEL_START( model_Trim_Char_x_75_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_75_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_75_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 402 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_75_1__, 92884789 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_75_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_74_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_76_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_76_1___initialShadingGroup_0 ) DX3DVERT( 2.7232, 0.482056, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 3.32969, 0.914063, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 3.32339, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.903647, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.903647, 0.254669, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.943751, 0.254669, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.23956, 2.2572, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.51026, 2.487, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.40897, 2.76154, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.254687, 2.67188, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.297137, 2.67188, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.254687, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.254687, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.297137, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.657813, 2.67188, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.657813, 2.25717, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.903647, 2.25717, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.903647, 3.59219, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.657813, 3.59219, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.657813, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.51016, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.51045, 2.83783, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( -0.309374, 1.14374, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( -0.117186, 0.948425, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.297137, 1.36493, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.297137, 1.7515, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.133121, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.297137, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.943751, 1.98904, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.657813, 1.71719, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.657813, 2.09842, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.657813, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.657813, 0.254669, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.526052, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.903647, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.943751, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 2.5608, 2.39075, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 2.53066, 2.76151, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.41992, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.89274, 2.76144, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.07604, 2.82785, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.11668, 3.12415, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.41992, 3.01776, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.41992, 2.96921, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.2683, 2.96921, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.19564, 2.76151, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.2683, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.2683, 2.86539, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.14494, 3.12503, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.11667, 2.96921, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.15458, 2.80881, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.19241, 2.7674, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.19248, 2.81348, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.19248, 2.96921, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.11667, 2.86539, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.14626, 2.81348, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.15457, 2.81348, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.15457, 2.86539, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.19248, 2.86539, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.26833, 3.10898, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.25969, 2.25717, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.19562, 1.58966, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.48918, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.72318, 0.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.57155, 0.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.41992, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.50179, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.47163, 1.24994, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.29899, 0.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.41991, 0.493317, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 2.41992, 0.58844, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 2.41992, 0.75531, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 2.57155, 0.75531, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 2.65887, 0.761017, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 2.57155, 0.785492, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 3.17344, 1.11563, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 2.97341, 0.92215, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.903647, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 0.943751, 2.76157, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 0.657813, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.72317, 0.770386, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 2.72318, 0.75531, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 0.943751, 2.36404, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 0.297137, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 0.943751, 1.58969, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.26104, 2.34323, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.55713, 2.2572, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.11667, 2.82367, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.58487, 0.460876, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.17181, 1.20422, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.18756, 0.92218, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 0.943751, 3.59219, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_76_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_76_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 92 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_76_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_76_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_76_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 11, 13, // 4 14 14, 15, 16, // 5 17 17, 18, 19, // 6 20 20, 21, 8, // 7 23 22, 23, 24, // 8 26 25, 26, 27, // 9 29 28, 6, 16, // 10 32 29, 28, 30, // 11 35 31, 32, 4, // 12 38 27, 24, 33, // 13 41 34, 3, 35, // 14 44 36, 37, 38, // 15 47 7, 39, 20, // 16 50 39, 40, 41, // 17 53 37, 42, 43, // 18 56 38, 43, 44, // 19 59 45, 46, 47, // 20 62 48, 41, 49, // 21 65 50, 51, 52, // 22 68 53, 49, 54, // 23 71 55, 50, 56, // 24 74 55, 56, 57, // 25 77 57, 56, 52, // 26 80 53, 58, 47, // 27 83 42, 59, 44, // 28 86 60, 61, 62, // 29 89 0, 63, 64, // 30 92 65, 66, 67, // 31 95 68, 69, 70, // 32 98 68, 70, 71, // 33 101 72, 64, 63, // 34 104 71, 70, 64, // 35 107 66, 65, 71, // 36 110 73, 74, 72, // 37 113 2, 75, 76, // 38 116 17, 77, 78, // 39 119 79, 31, 3, // 40 122 76, 80, 81, // 41 125 2, 63, 0, // 42 128 63, 2, 76, // 43 131 81, 63, 76, // 44 134 5, 35, 3, // 45 137 82, 78, 77, // 46 140 7, 20, 8, // 47 143 82, 16, 6, // 48 146 8, 82, 6, // 49 149 82, 14, 16, // 50 152 10, 13, 11, // 51 155 13, 83, 12, // 52 158 13, 10, 14, // 53 161 14, 19, 13, // 54 164 14, 82, 77, // 55 167 19, 83, 13, // 56 170 19, 14, 77, // 57 173 19, 77, 17, // 58 176 24, 27, 26, // 59 179 26, 22, 24, // 60 182 34, 84, 28, // 61 185 28, 29, 34, // 62 188 25, 27, 33, // 63 191 29, 79, 34, // 64 194 16, 15, 30, // 65 197 30, 28, 16, // 66 200 29, 30, 25, // 67 203 33, 29, 25, // 68 206 4, 3, 31, // 69 209 35, 84, 34, // 70 212 85, 60, 86, // 71 215 46, 45, 85, // 72 218 38, 85, 36, // 73 221 85, 38, 46, // 74 224 86, 36, 85, // 75 227 40, 87, 54, // 76 230 40, 49, 41, // 77 233 21, 20, 39, // 78 236 39, 41, 21, // 79 239 54, 49, 40, // 80 242 43, 38, 37, // 81 245 47, 46, 38, // 82 248 38, 44, 47, // 83 251 52, 51, 45, // 84 254 47, 58, 52, // 85 257 52, 45, 47, // 86 260 53, 44, 59, // 87 263 49, 59, 48, // 88 266 59, 49, 53, // 89 269 52, 56, 50, // 90 272 57, 58, 53, // 91 275 53, 54, 57, // 92 278 57, 54, 87, // 93 281 57, 87, 55, // 94 284 52, 58, 57, // 95 287 47, 44, 53, // 96 290 44, 43, 42, // 97 293 62, 86, 60, // 98 296 64, 70, 69, // 99 299 64, 69, 88, // 100 302 64, 88, 0, // 101 305 67, 62, 61, // 102 308 67, 89, 90, // 103 311 67, 90, 65, // 104 314 61, 89, 67, // 105 317 71, 65, 90, // 106 320 71, 90, 68, // 107 323 63, 73, 72, // 108 326 64, 72, 71, // 109 329 71, 72, 74, // 110 332 74, 66, 71, // 111 335 81, 80, 73, // 112 338 73, 63, 81, // 113 341 78, 91, 17, // 114 344 3, 34, 79, // 115 347 DX3DINDEX_END #endif #else #define index_Trim_Char_x_76_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_76_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_76_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_76_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_76_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_76_1__ ) DX3DMODEL_START( model_Trim_Char_x_76_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_76_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_76_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 348 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_76_1__, 94969925 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_76_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_75_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_77_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_77_1___initialShadingGroup_0 ) DX3DVERT( 2.40548, 0.576508, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.74623, 0.871613, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.65508, 0.871613, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.31529, 0.64859, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.907815, 0.663116, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.907812, 0.391266, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.40704, 2.00476, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.40703, 2.23975, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.993751, 2.14218, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.408594, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.408594, 2.05972, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.110985, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.240626, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.240626, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.408594, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.907813, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.907813, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.40703, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.408594, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.869306, 2.36145, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.797882, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.907813, 2.38666, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.907813, 2.36145, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.33352, 2.36145, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( -0.0906249, 1.73279, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.0218753, 1.51718, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.408595, 1.71359, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.576564, 0.695313, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.571876, 0.421875, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 2.65508, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.80009, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.65509, 2.03174, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.67028, 2.02069, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 1.90625, 2.00845, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.75, 2.2674, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.40703, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.90625, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.90625, 2.71304, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.90625, 2.85806, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.62763, 2.85806, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.40547, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.40547, 3.0195, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.51875, 3.08905, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.90625, 3.04053, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.14248, 2.85806, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.36662, 1.86493, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.40547, 2.11313, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.40547, 1.86484, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.5336, 2.11316, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.40547, 2.17105, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.40702, 0.649841, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.40703, 0.37561, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 1.90625, 0.417572, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.65508, 1.36823, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.90286, 1.36819, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.90486, 1.44373, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.40554, 1.83502, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.58151, 1.41315, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.58017, 1.36823, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 2.55204, 1.61652, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 2.65508, 1.61652, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.90625, 0.702972, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.40543, 0.950104, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.31336, 0.871643, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.40547, 0.871613, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.86198, 1.1199, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.65508, 1.1199, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.52202, 1.1199, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.34063, 0.375061, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 0.989064, 2.14999, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.90781, 1.89917, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.40703, 2.40659, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.40703, 2.71359, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.90627, 2.26349, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.90625, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 2.50312, 3.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.9875, 3.10156, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.9875, 3.09375, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.89045, 1.61652, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_77_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_77_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 79 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_77_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_77_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_77_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 17, // 5 17 18, 14, 16, // 6 20 19, 10, 20, // 7 23 21, 19, 22, // 8 26 21, 22, 23, // 9 29 11, 24, 25, // 10 32 26, 20, 9, // 11 35 4, 27, 28, // 12 38 29, 30, 31, // 13 41 32, 33, 34, // 14 44 35, 17, 36, // 15 47 37, 38, 39, // 16 50 40, 41, 42, // 17 53 43, 38, 44, // 18 56 33, 45, 46, // 19 59 38, 37, 44, // 20 62 47, 29, 31, // 21 65 48, 49, 46, // 22 68 50, 51, 52, // 23 71 53, 54, 55, // 24 74 45, 56, 47, // 25 77 57, 58, 53, // 26 80 59, 60, 29, // 27 83 30, 29, 60, // 28 86 61, 52, 0, // 29 89 62, 63, 64, // 30 92 1, 65, 66, // 31 95 62, 64, 2, // 32 98 58, 67, 66, // 33 101 65, 54, 53, // 34 104 38, 43, 39, // 35 107 2, 64, 0, // 36 110 68, 51, 50, // 37 113 68, 50, 3, // 38 116 3, 5, 68, // 39 119 69, 23, 22, // 40 122 8, 70, 6, // 41 125 70, 8, 69, // 42 128 69, 22, 70, // 43 131 14, 18, 12, // 44 134 17, 35, 15, // 45 137 16, 15, 18, // 46 140 10, 9, 20, // 47 143 70, 22, 19, // 48 146 19, 20, 70, // 49 149 23, 71, 72, // 50 152 23, 72, 21, // 51 155 26, 9, 11, // 52 158 11, 25, 26, // 53 161 28, 5, 4, // 54 164 33, 73, 34, // 55 167 7, 6, 32, // 56 170 32, 34, 7, // 57 173 36, 74, 35, // 58 176 72, 71, 37, // 59 179 39, 72, 37, // 60 182 42, 75, 40, // 61 185 74, 36, 76, // 62 188 44, 41, 77, // 63 191 44, 77, 43, // 64 194 76, 77, 41, // 65 197 76, 40, 74, // 66 200 41, 40, 76, // 67 203 45, 47, 46, // 68 206 46, 49, 73, // 69 209 73, 33, 46, // 70 212 48, 46, 47, // 71 215 47, 31, 48, // 72 218 52, 61, 50, // 73 221 78, 60, 53, // 74 224 55, 78, 53, // 75 227 60, 59, 57, // 76 230 53, 60, 57, // 77 233 29, 47, 56, // 78 236 56, 59, 29, // 79 239 60, 78, 30, // 80 242 0, 64, 63, // 81 245 63, 61, 0, // 82 248 66, 2, 1, // 83 251 2, 66, 67, // 84 254 2, 67, 62, // 85 257 66, 53, 58, // 86 260 53, 66, 65, // 87 263 DX3DINDEX_END #endif #else #define index_Trim_Char_x_77_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_77_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_77_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_77_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_77_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_77_1__ ) DX3DMODEL_START( model_Trim_Char_x_77_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_77_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_77_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 264 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_77_1__, 97055061 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_77_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_76_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_78_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_78_1___initialShadingGroup_0 ) DX3DVERT( 2.62072, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.62069, 0.843323, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.84898, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.27704, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.27704, 0.596893, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 1.35313, 0.596893, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.35313, 2.05939, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.68298, 2.36044, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.27704, 2.36044, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.443751, 2.51251, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.829145, 2.51251, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.443751, 2.74219, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.27704, 3.24219, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 1.27704, 2.8013, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 1.35313, 2.8013, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.09531, 3.24219, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.09531, 2.8013, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.09531, 2.16876, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.866731, 1.91956, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.27704, 1.91956, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.09531, 2.74219, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.72492, 2.39273, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.7248, 2.71899, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.494212, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.381251, 1.33908, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.576564, 1.16721, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.829145, 1.8768, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.829145, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.27704, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.35313, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.833081, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.09531, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.09531, 0.596893, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.829145, 1.47397, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 1.35313, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.78967, 1.91956, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 3.06652, 1.91956, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 3.00231, 2.3605, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.17286, 2.61926, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 2.17283, 2.8013, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.87644, 2.80142, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.17277, 2.88855, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.67772, 2.80139, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.6207, 2.82996, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 2.62072, 2.8013, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.29135, 2.8959, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.39677, 2.8013, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.50732, 2.58066, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.62062, 2.49606, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.62072, 2.58087, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.27858, 2.62939, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.39675, 2.61798, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.84467, 2.36044, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.90718, 2.58087, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.70646, 2.36044, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.84467, 2.58087, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.84469, 2.66565, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.77514, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.72493, 0.846588, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.95796, 1.03745, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.79688, 1.09689, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.79232, 1.79065, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.75862, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 3.04127, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.19935, 0.742065, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 2.40608, 1.03778, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 2.62073, 1.19165, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.72493, 0.901245, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.70781, 0.854706, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.09531, 1.47867, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.35313, 1.91956, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 0.829145, 2.74219, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.35313, 3.24219, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.09531, 2.36044, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.09531, 2.51251, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.35313, 2.42346, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.09531, 1.78284, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 2.17282, 0.74231, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 2.17281, 1.00244, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 3.0688, 1.81488, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 2.19747, 1.00204, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_78_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_78_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 81 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_78_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_78_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_78_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 18, 19, // 6 20 8, 13, 20, // 7 23 7, 21, 22, // 8 26 23, 24, 25, // 9 29 26, 23, 27, // 10 32 28, 29, 19, // 11 35 26, 27, 30, // 12 38 31, 32, 4, // 13 41 27, 33, 30, // 14 44 28, 3, 34, // 15 47 35, 36, 37, // 16 50 38, 39, 40, // 17 53 39, 41, 40, // 18 56 42, 43, 44, // 19 59 45, 39, 46, // 20 62 47, 48, 49, // 21 65 50, 51, 46, // 22 68 47, 49, 44, // 23 71 52, 37, 53, // 24 74 54, 52, 55, // 25 77 42, 44, 49, // 26 80 53, 56, 55, // 27 83 57, 58, 59, // 28 86 59, 60, 57, // 29 89 61, 62, 63, // 30 92 64, 1, 65, // 31 95 66, 65, 0, // 32 98 66, 0, 2, // 33 101 58, 67, 68, // 34 104 69, 31, 3, // 35 107 5, 34, 3, // 36 110 19, 70, 6, // 37 113 6, 17, 19, // 38 116 10, 71, 11, // 39 119 14, 72, 12, // 40 122 13, 12, 15, // 41 125 8, 73, 17, // 42 128 17, 6, 8, // 43 131 71, 10, 74, // 44 134 13, 16, 20, // 45 137 74, 73, 8, // 46 140 8, 20, 74, // 47 143 74, 20, 71, // 48 146 75, 14, 13, // 49 149 75, 8, 7, // 50 152 22, 75, 7, // 51 155 13, 8, 75, // 52 158 33, 27, 23, // 53 161 23, 25, 33, // 54 164 29, 70, 19, // 55 167 76, 69, 28, // 56 170 76, 19, 18, // 57 173 76, 18, 26, // 58 176 30, 76, 26, // 59 179 28, 19, 76, // 60 182 4, 3, 31, // 61 185 34, 29, 28, // 62 188 52, 54, 35, // 63 191 35, 37, 52, // 64 194 40, 22, 21, // 65 197 21, 38, 40, // 66 200 45, 41, 39, // 67 203 46, 44, 43, // 68 206 43, 45, 46, // 69 209 39, 38, 50, // 70 212 50, 46, 39, // 71 215 44, 46, 51, // 72 218 44, 51, 47, // 73 221 53, 55, 52, // 74 224 55, 49, 48, // 75 227 48, 54, 55, // 76 230 49, 55, 56, // 77 233 49, 56, 42, // 78 236 57, 67, 58, // 79 239 77, 78, 59, // 80 242 59, 58, 77, // 81 245 79, 36, 35, // 82 248 79, 35, 61, // 83 251 61, 63, 79, // 84 254 80, 78, 77, // 85 257 65, 80, 64, // 86 260 65, 1, 0, // 87 263 77, 64, 80, // 88 266 2, 63, 62, // 89 269 2, 62, 66, // 90 272 3, 28, 69, // 91 275 DX3DINDEX_END #endif #else #define index_Trim_Char_x_78_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_78_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_78_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_78_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_78_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_78_1__ ) DX3DMODEL_START( model_Trim_Char_x_78_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_78_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_78_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 276 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_78_1__, 99140197 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_78_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_77_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_79_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_79_1___initialShadingGroup_0 ) DX3DVERT( 2.52131, 0.826569, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.52128, 0.58786, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.80097, 0.826569, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.855713, 0.278137, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.915625, 0.278137, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.855713, 0.826569, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.915625, 2.11407, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.915625, 2.5, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.855713, 2.47189, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( -0.1875, 2.68439, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.300513, 2.68439, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( -0.1875, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.855713, 3.56876, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.855713, 3.02032, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.915625, 3.02032, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.642188, 3.56876, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.642188, 3.02032, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.642188, 2.22812, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.365529, 1.92343, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.855713, 1.92343, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.642188, 2.68439, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.642188, 2.47189, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.29403, 2.47189, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.41092, 2.56573, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.41061, 2.89966, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( -0.092344, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( -0.254687, 1.17032, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( -0.0515618, 0.990631, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.260566, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.300513, 1.42319, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.855713, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.915625, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.300513, 1.84866, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.642188, 1.82187, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.642188, 0.826569, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.642188, 0.278137, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.642188, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.915625, 0.826569, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 2.78086, 1.92343, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 3.07334, 1.92346, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.98764, 2.47186, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.96618, 2.8353, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.96611, 3.02032, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.63589, 3.02023, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.9661, 3.11502, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.57697, 3.02039, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.5214, 3.04749, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.52131, 3.02032, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.12186, 3.12561, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.10775, 2.84824, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.5213, 2.7045, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.52131, 2.74609, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.79891, 2.47189, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.86601, 2.74609, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.67908, 2.47189, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 2.79891, 2.74609, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 2.79892, 2.83871, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.41091, 0.645905, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 1.41091, 0.594086, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.96611, 0.460999, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.55447, 0.82663, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.48438, 0.854706, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.47448, 0.826569, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 2.78422, 1.78619, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 2.74289, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.04243, 1.375, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.99376, 0.741699, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.9983, 0.460663, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.52131, 0.951477, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.3563, 0.827301, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.39531, 0.601563, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 0.915625, 1.92343, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 0.300513, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 0.915625, 3.56876, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 0.642188, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.9661, 0.742004, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 3.07675, 1.7684, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_79_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_79_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 77 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_79_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_79_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_79_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 16, 13, // 5 17 17, 18, 19, // 6 20 20, 21, 8, // 7 23 22, 23, 24, // 8 26 25, 26, 27, // 9 29 25, 28, 29, // 10 32 30, 31, 19, // 11 35 32, 29, 33, // 12 38 34, 35, 3, // 13 41 36, 34, 5, // 14 44 30, 5, 37, // 15 47 38, 39, 40, // 16 50 41, 42, 43, // 17 53 42, 44, 43, // 18 56 45, 46, 47, // 19 59 48, 44, 42, // 20 62 49, 50, 51, // 21 65 52, 40, 53, // 22 68 54, 52, 55, // 23 71 45, 47, 51, // 24 74 53, 56, 55, // 25 77 57, 58, 59, // 26 80 60, 61, 62, // 27 83 63, 64, 65, // 28 86 66, 67, 1, // 29 89 68, 69, 0, // 30 92 68, 0, 2, // 31 95 58, 57, 70, // 32 98 4, 37, 5, // 33 101 19, 71, 6, // 34 104 6, 17, 19, // 35 107 10, 72, 11, // 36 110 14, 73, 12, // 37 113 13, 12, 15, // 38 116 8, 21, 17, // 39 119 17, 6, 8, // 40 122 72, 10, 20, // 41 125 13, 16, 74, // 42 128 13, 74, 20, // 43 131 20, 8, 13, // 44 134 20, 74, 72, // 45 137 7, 14, 13, // 46 140 7, 6, 22, // 47 143 24, 7, 22, // 48 146 13, 8, 7, // 49 149 27, 28, 25, // 50 152 29, 32, 25, // 51 155 31, 71, 19, // 52 158 33, 36, 30, // 53 161 33, 19, 18, // 54 164 33, 18, 32, // 55 167 30, 19, 33, // 56 170 3, 5, 34, // 57 173 5, 30, 36, // 58 176 37, 31, 30, // 59 179 52, 54, 38, // 60 182 38, 40, 52, // 61 185 24, 23, 41, // 62 188 43, 24, 41, // 63 191 42, 47, 46, // 64 194 46, 48, 42, // 65 197 42, 41, 49, // 66 200 47, 42, 49, // 67 203 51, 47, 49, // 68 206 53, 55, 52, // 69 209 55, 51, 50, // 70 212 50, 54, 55, // 71 215 51, 55, 56, // 72 218 51, 56, 45, // 73 221 60, 62, 57, // 74 224 59, 75, 60, // 75 227 59, 60, 57, // 76 230 39, 38, 63, // 77 233 76, 39, 63, // 78 236 63, 65, 76, // 79 239 66, 75, 59, // 80 242 1, 0, 69, // 81 245 69, 66, 1, // 82 248 59, 67, 66, // 83 251 2, 65, 64, // 84 254 2, 64, 68, // 85 257 DX3DINDEX_END #endif #else #define index_Trim_Char_x_79_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_79_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_79_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_79_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_79_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_79_1__ ) DX3DMODEL_START( model_Trim_Char_x_79_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_79_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_79_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 258 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_79_1__, 101225333 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_79_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_78_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_80_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_80_1___initialShadingGroup_0 ) DX3DVERT( 2.81542, 0.602661, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.83939, 0.631775, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.81542, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.904095, 0.684631, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 1.05969, 0.946411, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.904171, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.32188, 2.49689, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.23849, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.45024, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.358049, 2.39001, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.159133, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.358099, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.240626, 3.46405, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.240626, 3.22186, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.358099, 3.22186, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.556348, 2.20578, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.358099, 3.46405, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.904171, 3.22186, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.45025, 2.98276, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.41359, 2.83472, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.45024, 2.83466, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.0850603, 0.603577, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.358098, 0.461456, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.358099, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.0850632, 1.89056, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.0850632, 1.57587, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.118907, 1.57587, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( -0.0550876, 1.89056, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( -0.160542, 1.57584, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 0.0850552, 2.11642, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.257992, 1.89056, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.0850632, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.161104, 0.946472, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.0836849, 1.29163, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.0553147, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.0850632, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.45019, 1.95193, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.358054, 2.02185, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.631135, 0.474548, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.861481, 0.631866, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.631135, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.904084, 1.25598, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.740335, 0.946381, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.472137, 0.449463, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.494617, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.631135, 0.789093, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.611411, 0.788879, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.459852, 0.722046, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.358129, 0.744843, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 0.631237, 0.807739, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 1.32407, 1.57581, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 1.03242, 1.57574, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.81542, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.8697, 2.20514, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.54231, 2.51788, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 1.52763, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.70374, 2.83466, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 2.51165, 2.20529, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 2.54239, 2.20526, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 1.99635, 0.34848, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 1.99632, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 1.8598, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 1.8598, 1.10379, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.85888, 0.973206, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.93566, 1.10406, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.57617, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.72328, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 1.72328, 1.10379, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 1.72309, 1.27765, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 1.70804, 1.26132, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.72328, 1.26114, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.8598, 1.26114, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.85389, 0.946564, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.99636, 1.14792, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.99632, 1.26114, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.63714, 0.631958, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 1.72319, 0.511932, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 1.72328, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.72328, 0.789093, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.87066, 0.789032, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.8598, 0.789093, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.85109, 0.90155, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.85976, 0.826233, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.81542, 1.57587, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 3.08599, 1.57587, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 3.02976, 1.89056, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.54239, 2.17593, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.81339, 1.57587, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.81542, 1.89056, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.54239, 0.631744, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.54242, 0.691559, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.23094, 0.58548, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.22421, 1.20224, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.79531, 1.23282, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.81542, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 3.00768, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.72093, 0.946442, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 0.904171, 3.46405, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 1.45024, 3.22186, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 0.904171, 2.6741, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 0.904238, 2.39529, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 1.39531, 2.76563, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( -0.188343, 1.29782, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( -0.136377, 0.946625, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 0.49452, 0.725464, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 1.99628, 2.47229, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 1.99632, 2.73755, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 1.6875, 2.77344, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 1.61719, 2.51563, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 1.45024, 3.46405, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 1.50781, 3.22186, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 1.80938, 3.22186, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 1.80938, 3.46405, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 1.99636, 1.43796, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 1.57413, 0.896271, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 1.99621, 0.641815, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.74015, 1.89081, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 2.22487, 0.316925, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 2.54239, 0.386688, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 2.54238, 1.10782, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 2.54232, 1.39777, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 2.21474, 1.46768, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT( 2.81613, 1.49597, 0 ) DX3DVNORM( 0, 0, 1 ) //122 DX3DVERT( 3.08848, 1.48621, 0 ) DX3DVNORM( 0, 0, 1 ) //123 DX3DVERT( 2.725, 0.956238, 0 ) DX3DVNORM( 0, 0, 1 ) //124 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_80_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_80_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 125 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_80_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_80_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_80_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 9, 11, 15, // 5 17 16, 14, 17, // 6 20 18, 19, 20, // 7 23 21, 22, 23, // 8 26 24, 25, 26, // 9 29 27, 28, 25, // 10 32 29, 27, 24, // 11 35 29, 24, 30, // 12 38 31, 32, 33, // 13 41 34, 21, 35, // 14 44 34, 35, 31, // 15 47 32, 31, 35, // 16 50 36, 8, 7, // 17 53 37, 15, 11, // 18 56 38, 39, 40, // 19 59 5, 41, 42, // 20 62 43, 38, 44, // 21 65 40, 45, 46, // 22 68 47, 48, 23, // 23 71 45, 49, 46, // 24 74 3, 5, 42, // 25 77 50, 51, 41, // 26 80 52, 53, 54, // 27 83 20, 8, 55, // 28 86 18, 20, 56, // 29 89 57, 58, 54, // 30 92 59, 60, 61, // 31 95 8, 36, 55, // 32 98 62, 63, 64, // 33 101 65, 66, 67, // 34 104 68, 69, 70, // 35 107 68, 70, 71, // 36 110 66, 72, 63, // 37 113 70, 67, 62, // 38 116 73, 74, 71, // 39 119 75, 76, 77, // 40 122 75, 77, 78, // 41 125 79, 80, 61, // 42 128 78, 77, 61, // 43 131 81, 72, 66, // 44 134 79, 82, 80, // 45 137 83, 84, 85, // 46 140 58, 57, 86, // 47 143 87, 83, 88, // 48 146 52, 58, 86, // 49 149 53, 52, 88, // 50 152 89, 90, 91, // 51 155 74, 73, 92, // 52 158 93, 94, 95, // 53 161 0, 2, 89, // 54 164 2, 94, 96, // 55 167 1, 95, 94, // 56 170 97, 17, 98, // 57 173 99, 100, 6, // 58 176 20, 19, 101, // 59 179 8, 20, 101, // 60 182 101, 6, 8, // 61 185 6, 101, 99, // 62 188 14, 16, 12, // 63 191 100, 99, 9, // 64 194 15, 100, 9, // 65 197 17, 97, 16, // 66 200 23, 35, 21, // 67 203 26, 30, 24, // 68 206 25, 24, 27, // 69 209 37, 11, 10, // 70 212 37, 10, 29, // 71 215 29, 30, 37, // 72 218 33, 26, 25, // 73 221 33, 28, 102, // 74 224 33, 102, 103, // 75 227 103, 31, 33, // 76 230 25, 28, 33, // 77 233 31, 103, 34, // 78 236 35, 23, 48, // 79 239 35, 48, 32, // 80 242 51, 50, 36, // 81 245 7, 51, 36, // 82 248 38, 40, 44, // 83 251 44, 23, 22, // 84 254 22, 43, 44, // 85 257 104, 44, 40, // 86 260 46, 104, 40, // 87 263 44, 104, 47, // 88 266 47, 23, 44, // 89 269 45, 40, 39, // 90 272 49, 39, 3, // 91 275 3, 42, 49, // 92 278 39, 49, 45, // 93 281 41, 5, 4, // 94 284 4, 50, 41, // 95 287 54, 58, 52, // 96 290 105, 106, 107, // 97 293 107, 56, 20, // 98 296 108, 107, 20, // 99 299 55, 108, 20, // 100 302 107, 108, 105, // 101 305 109, 98, 110, // 102 308 56, 111, 110, // 103 311 56, 110, 18, // 104 314 110, 111, 112, // 105 317 110, 112, 109, // 106 320 54, 106, 105, // 107 323 54, 105, 57, // 108 326 61, 77, 76, // 109 329 76, 59, 61, // 110 332 67, 70, 69, // 111 335 69, 65, 67, // 112 338 71, 74, 113, // 113 341 71, 113, 68, // 114 344 63, 62, 67, // 115 347 63, 67, 66, // 116 350 62, 71, 70, // 117 353 71, 62, 64, // 118 356 64, 73, 71, // 119 359 66, 65, 114, // 120 362 78, 66, 114, // 121 365 78, 114, 75, // 122 368 61, 60, 115, // 123 371 115, 79, 61, // 124 374 61, 80, 78, // 125 377 80, 82, 78, // 126 380 78, 82, 81, // 127 383 66, 78, 81, // 128 386 85, 88, 83, // 129 389 88, 116, 87, // 130 392 116, 88, 52, // 131 395 86, 116, 52, // 132 398 88, 85, 53, // 133 401 91, 115, 60, // 134 404 91, 59, 117, // 135 407 91, 117, 118, // 136 410 118, 89, 91, // 137 413 60, 59, 91, // 138 416 92, 119, 120, // 139 419 92, 121, 113, // 140 422 92, 113, 74, // 141 425 120, 121, 92, // 142 428 93, 120, 119, // 143 431 83, 87, 122, // 144 434 123, 84, 122, // 145 437 123, 122, 93, // 146 440 95, 123, 93, // 147 443 122, 84, 83, // 148 446 124, 96, 94, // 149 449 124, 94, 93, // 150 452 93, 119, 124, // 151 455 89, 118, 0, // 152 458 90, 89, 2, // 153 461 2, 96, 90, // 154 464 94, 2, 1, // 155 467 98, 109, 97, // 156 470 DX3DINDEX_END #endif #else #define index_Trim_Char_x_80_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_80_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_80_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_80_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_80_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_80_1__ ) DX3DMODEL_START( model_Trim_Char_x_80_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_80_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_80_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 471 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_80_1__, 161694277 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_80_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_79_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_81_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_81_1___initialShadingGroup_0 ) DX3DVERT( 2.90469, 0.34375, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 3.14688, 0.460938, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.78718, 0.95343, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.43393, 0.95343, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.58125, 0.783905, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.58125, 0.95343, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 2.58125, 1.18552, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 2.41406, 1.35468, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 2.19063, 1.20624, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.27656, 0.773438, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.09688, 0.948425, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.0158, 0.841125, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 1.15575, 1.10446, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.884376, 1.10483, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.884374, 0.890472, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 1.44997, 2.56241, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 1.45002, 2.76636, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.29844, 2.74219, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.318778, 2.38519, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.318751, 2.65585, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( -0.067187, 2.52811, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 0.292189, 3.19061, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.318751, 3.19061, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 0.292189, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.884391, 2.50296, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 0.884376, 2.81531, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.800543, 2.81531, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 0.884376, 3.19061, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 0.318751, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.45, 3.19061, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 0.884376, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 0.318822, 0.664185, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 0.318751, 1.10483, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 0.313654, 1.10483, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 0.234231, 1.7291, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 0.318411, 1.64688, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 0.318751, 1.72922, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.177644, 1.94553, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.177345, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 0.318751, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 0.174968, 1.91064, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 0.31875, 2.1488, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.212259, 2.03955, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 0.318751, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 0.175983, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 0.177241, 1.87238, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.318751, 1.10965, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 1.45, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 1.45, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 1.3793, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.601563, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.884376, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.884374, 1.73199, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 0.601563, 1.72922, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.53086, 1.72922, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 0.601541, 2.02008, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 0.601563, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 0.53086, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 0.460157, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.460157, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.460157, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 0.490133, 1.88431, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.485491, 1.91132, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 0.460157, 1.96194, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 0.507806, 1.96213, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 0.453444, 1.57318, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 0.460157, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 0.460157, 1.72922, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 0.566363, 1.80679, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 0.53086, 1.80679, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 0.460157, 1.80679, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 0.53086, 1.8302, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 0.884387, 2.07037, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.16719, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.16711, 1.73996, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.12969, 1.71719, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 0.884376, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.954725, 2.07187, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.3793, 1.96194, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.25195, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 1.30861, 2.01443, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 1.30859, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 1.30859, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 1.16719, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 1.16714, 2.05814, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 1.45, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 1.45, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 1.36101, 1.93195, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 1.35018, 1.8844, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 1.3793, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 1.45, 1.96194, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 0.626563, 1.02969, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 0.623438, 1.03751, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 0.698214, 1.10483, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 1.15781, 1.45624, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.86406, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.92066, 2.19464, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.92158, 2.22586, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 1.45, 2.81531, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 1.45, 2.80273, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 1.48729, 2.81531, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT( 1.91094, 3.19061, 0 ) DX3DVNORM( 0, 0, 1 ) //101 DX3DVERT( 2.01563, 2.99359, 0 ) DX3DVNORM( 0, 0, 1 ) //102 DX3DVERT( 2.01563, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //103 DX3DVERT( 2.32448, 2.50528, 0 ) DX3DVNORM( 0, 0, 1 ) //104 DX3DVERT( 2.58127, 2.36298, 0 ) DX3DVNORM( 0, 0, 1 ) //105 DX3DVERT( 2.58125, 2.505, 0 ) DX3DVNORM( 0, 0, 1 ) //106 DX3DVERT( 2.58125, 3.18448, 0 ) DX3DVNORM( 0, 0, 1 ) //107 DX3DVERT( 2.58125, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //108 DX3DVERT( 2.01562, 2.55374, 0 ) DX3DVNORM( 0, 0, 1 ) //109 DX3DVERT( 2.29849, 2.5116, 0 ) DX3DVNORM( 0, 0, 1 ) //110 DX3DVERT( 2.29844, 2.76974, 0 ) DX3DVNORM( 0, 0, 1 ) //111 DX3DVERT( 2.58127, 2.68604, 0 ) DX3DVNORM( 0, 0, 1 ) //112 DX3DVERT( 2.68281, 3.21875, 0 ) DX3DVNORM( 0, 0, 1 ) //113 DX3DVERT( 2.68281, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //114 DX3DVERT( 2.62065, 2.21558, 0 ) DX3DVNORM( 0, 0, 1 ) //115 DX3DVERT( 2.62009, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //116 DX3DVERT( 2.82593, 2.50488, 0 ) DX3DVNORM( 0, 0, 1 ) //117 DX3DVERT( 2.01587, 0.477875, 0 ) DX3DVNORM( 0, 0, 1 ) //118 DX3DVERT( 2.01563, 0.718811, 0 ) DX3DVNORM( 0, 0, 1 ) //119 DX3DVERT( 1.90208, 0.718964, 0 ) DX3DVNORM( 0, 0, 1 ) //120 DX3DVERT( 1.73282, 1.73062, 0 ) DX3DVNORM( 0, 0, 1 ) //121 DX3DVERT( 1.73281, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //122 DX3DVERT( 2.01563, 1.57407, 0 ) DX3DVNORM( 0, 0, 1 ) //123 DX3DVERT( 1.575, 1.72031, 0 ) DX3DVNORM( 0, 0, 1 ) //124 DX3DVERT( 1.66141, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //125 DX3DVERT( 1.59141, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //126 DX3DVERT( 1.64553, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //127 DX3DVERT( 1.59141, 2.03952, 0 ) DX3DVNORM( 0, 0, 1 ) //128 DX3DVERT( 1.52231, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //129 DX3DVERT( 1.59139, 2.13348, 0 ) DX3DVNORM( 0, 0, 1 ) //130 DX3DVERT( 2.01565, 1.51135, 0 ) DX3DVNORM( 0, 0, 1 ) //131 DX3DVERT( 1.73281, 0.342896, 0 ) DX3DVNORM( 0, 0, 1 ) //132 DX3DVERT( 1.73281, 0.525818, 0 ) DX3DVNORM( 0, 0, 1 ) //133 DX3DVERT( 1.59141, 0.525818, 0 ) DX3DVNORM( 0, 0, 1 ) //134 DX3DVERT( 1.5914, 0.333801, 0 ) DX3DVNORM( 0, 0, 1 ) //135 DX3DVERT( 1.5207, 0.525818, 0 ) DX3DVNORM( 0, 0, 1 ) //136 DX3DVERT( 1.59139, 0.597351, 0 ) DX3DVNORM( 0, 0, 1 ) //137 DX3DVERT( 1.52071, 0.61911, 0 ) DX3DVNORM( 0, 0, 1 ) //138 DX3DVERT( 1.51523, 0.622314, 0 ) DX3DVNORM( 0, 0, 1 ) //139 DX3DVERT( 1.45, 0.622314, 0 ) DX3DVNORM( 0, 0, 1 ) //140 DX3DVERT( 1.45, 0.525818, 0 ) DX3DVNORM( 0, 0, 1 ) //141 DX3DVERT( 1.44967, 0.683899, 0 ) DX3DVNORM( 0, 0, 1 ) //142 DX3DVERT( 1.73282, 0.614746, 0 ) DX3DVNORM( 0, 0, 1 ) //143 DX3DVERT( 1.61691, 0.595825, 0 ) DX3DVNORM( 0, 0, 1 ) //144 DX3DVERT( 2.86399, 1.98309, 0 ) DX3DVNORM( 0, 0, 1 ) //145 DX3DVERT( 2.29819, 1.84418, 0 ) DX3DVNORM( 0, 0, 1 ) //146 DX3DVERT( 2.29829, 1.5799, 0 ) DX3DVNORM( 0, 0, 1 ) //147 DX3DVERT( 2.5813, 1.70264, 0 ) DX3DVNORM( 0, 0, 1 ) //148 DX3DVERT( 2.01563, 1.7673, 0 ) DX3DVNORM( 0, 0, 1 ) //149 DX3DVERT( 2.28099, 1.57446, 0 ) DX3DVNORM( 0, 0, 1 ) //150 DX3DVERT( 2.58115, 2.05872, 0 ) DX3DVNORM( 0, 0, 1 ) //151 DX3DVERT( 2.3882, 1.88489, 0 ) DX3DVNORM( 0, 0, 1 ) //152 DX3DVERT( 2.58125, 1.88437, 0 ) DX3DVNORM( 0, 0, 1 ) //153 DX3DVERT( 2.80009, 1.88449, 0 ) DX3DVNORM( 0, 0, 1 ) //154 DX3DVERT( 0.951779, 2.31451, 0 ) DX3DVNORM( 0, 0, 1 ) //155 DX3DVERT( 0.884405, 2.31293, 0 ) DX3DVNORM( 0, 0, 1 ) //156 DX3DVERT( 0.390519, 2.1947, 0 ) DX3DVNORM( 0, 0, 1 ) //157 DX3DVERT( 0.884376, 2.84305, 0 ) DX3DVNORM( 0, 0, 1 ) //158 DX3DVERT( 1.45, 3.03024, 0 ) DX3DVNORM( 0, 0, 1 ) //159 DX3DVERT( 0.884398, 1.13193, 0 ) DX3DVNORM( 0, 0, 1 ) //160 DX3DVERT( 0.795723, 1.10504, 0 ) DX3DVNORM( 0, 0, 1 ) //161 DX3DVERT( 0.996352, 1.1463, 0 ) DX3DVNORM( 0, 0, 1 ) //162 DX3DVERT( 1.6711, 2.56763, 0 ) DX3DVNORM( 0, 0, 1 ) //163 DX3DVERT( 1.90471, 2.80197, 0 ) DX3DVNORM( 0, 0, 1 ) //164 DX3DVERT( 1.45003, 2.23477, 0 ) DX3DVNORM( 0, 0, 1 ) //165 DX3DVERT( 1.45009, 0.358948, 0 ) DX3DVNORM( 0, 0, 1 ) //166 DX3DVERT( 1.29375, 2.75, 0 ) DX3DVNORM( 0, 0, 1 ) //167 DX3DVERT( 0.0140627, 2.30154, 0 ) DX3DVNORM( 0, 0, 1 ) //168 DX3DVERT( 1.45, 3.43594, 0 ) DX3DVNORM( 0, 0, 1 ) //169 DX3DVERT( -0.246874, 0.503113, 0 ) DX3DVNORM( 0, 0, 1 ) //170 DX3DVERT( -0.0203113, 0.340607, 0 ) DX3DVNORM( 0, 0, 1 ) //171 DX3DVERT( 0.601561, 1.79022, 0 ) DX3DVNORM( 0, 0, 1 ) //172 DX3DVERT( 0.53047, 1.98242, 0 ) DX3DVNORM( 0, 0, 1 ) //173 DX3DVERT( 0.601563, 2.19467, 0 ) DX3DVNORM( 0, 0, 1 ) //174 DX3DVERT( 1.35558, 1.96188, 0 ) DX3DVNORM( 0, 0, 1 ) //175 DX3DVERT( 0.876563, 0.890594, 0 ) DX3DVNORM( 0, 0, 1 ) //176 DX3DVERT( 0.775001, 1.49063, 0 ) DX3DVNORM( 0, 0, 1 ) //177 DX3DVERT( 0.884376, 1.26218, 0 ) DX3DVNORM( 0, 0, 1 ) //178 DX3DVERT( 1.45, 1.45889, 0 ) DX3DVNORM( 0, 0, 1 ) //179 DX3DVERT( 2.8637, 2.44867, 0 ) DX3DVNORM( 0, 0, 1 ) //180 DX3DVERT( 1.91094, 3.1828, 0 ) DX3DVNORM( 0, 0, 1 ) //181 DX3DVERT( 2.01565, 2.79987, 0 ) DX3DVNORM( 0, 0, 1 ) //182 DX3DVERT( 1.66427, 1.92709, 0 ) DX3DVNORM( 0, 0, 1 ) //183 DX3DVERT( 1.63281, 0.332916, 0 ) DX3DVNORM( 0, 0, 1 ) //184 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_81_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_81_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 185 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_81_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_81_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_81_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 2, 6, 5, // 3 11 2, 5, 4, // 4 14 4, 0, 2, // 5 17 3, 5, 6, // 6 20 6, 8, 3, // 7 23 9, 10, 11, // 8 26 12, 13, 14, // 9 29 15, 16, 17, // 10 32 18, 19, 20, // 11 35 21, 22, 23, // 12 38 24, 25, 26, // 13 41 22, 27, 28, // 14 44 27, 29, 30, // 15 47 31, 32, 33, // 16 50 34, 35, 36, // 17 53 37, 38, 39, // 18 56 37, 40, 38, // 19 59 41, 42, 43, // 20 62 44, 45, 38, // 21 65 34, 36, 39, // 22 68 32, 46, 33, // 23 71 47, 48, 49, // 24 74 50, 51, 52, // 25 77 50, 53, 54, // 26 80 55, 56, 57, // 27 83 43, 39, 58, // 28 86 41, 43, 59, // 29 89 60, 59, 57, // 30 92 58, 61, 62, // 31 95 59, 63, 64, // 32 98 65, 66, 67, // 33 101 39, 36, 67, // 34 104 68, 69, 54, // 35 107 70, 67, 54, // 36 110 61, 58, 70, // 37 113 68, 71, 69, // 38 116 56, 55, 72, // 39 119 73, 74, 75, // 40 122 76, 72, 77, // 41 125 78, 49, 48, // 42 128 79, 80, 81, // 43 131 82, 83, 84, // 44 134 85, 86, 82, // 45 137 87, 88, 49, // 46 140 89, 81, 80, // 47 143 89, 78, 90, // 48 146 31, 91, 92, // 49 149 46, 32, 93, // 50 152 73, 51, 94, // 51 155 95, 96, 97, // 52 158 98, 99, 100, // 53 161 101, 102, 103, // 54 164 104, 105, 106, // 55 167 107, 108, 103, // 56 170 109, 110, 111, // 57 173 104, 106, 112, // 58 176 113, 114, 108, // 59 179 115, 116, 95, // 60 182 117, 112, 106, // 61 185 118, 119, 120, // 62 188 121, 122, 123, // 63 191 124, 125, 126, // 64 194 127, 128, 126, // 65 197 90, 48, 126, // 66 200 129, 86, 85, // 67 203 127, 130, 128, // 68 206 131, 123, 122, // 69 209 132, 133, 134, // 70 212 135, 134, 136, // 71 215 137, 138, 136, // 72 218 139, 140, 141, // 73 221 139, 142, 140, // 74 224 133, 143, 144, // 75 227 119, 11, 120, // 76 230 145, 96, 95, // 77 233 146, 147, 148, // 78 236 149, 123, 150, // 79 239 151, 152, 153, // 80 242 153, 148, 154, // 81 245 151, 154, 145, // 82 248 123, 131, 150, // 83 251 155, 83, 82, // 84 254 156, 157, 60, // 85 257 25, 158, 26, // 86 260 98, 159, 158, // 87 263 13, 160, 161, // 88 266 12, 162, 13, // 89 269 163, 109, 164, // 90 272 129, 165, 86, // 91 275 119, 118, 9, // 92 278 11, 119, 9, // 93 281 14, 166, 141, // 94 284 14, 142, 12, // 95 287 140, 142, 14, // 96 290 14, 141, 140, // 97 293 99, 98, 167, // 98 296 17, 167, 24, // 99 299 24, 15, 17, // 100 302 25, 24, 167, // 101 305 25, 167, 98, // 102 308 20, 168, 18, // 103 311 22, 28, 23, // 104 314 19, 18, 24, // 105 317 26, 19, 24, // 106 320 27, 30, 28, // 107 323 29, 169, 30, // 108 326 170, 171, 31, // 109 329 33, 170, 31, // 110 332 39, 43, 42, // 111 335 39, 42, 37, // 112 338 44, 38, 40, // 113 341 39, 38, 45, // 114 344 45, 34, 39, // 115 347 74, 73, 47, // 116 350 49, 88, 47, // 117 353 47, 88, 74, // 118 356 52, 172, 53, // 119 359 53, 50, 52, // 120 362 67, 66, 50, // 121 365 54, 67, 50, // 122 368 57, 173, 55, // 123 371 63, 59, 43, // 124 374 43, 58, 63, // 125 377 59, 60, 157, // 126 380 157, 41, 59, // 127 383 56, 174, 60, // 128 386 57, 56, 60, // 129 389 62, 64, 63, // 130 392 62, 63, 58, // 131 395 173, 57, 59, // 132 398 64, 173, 59, // 133 401 67, 36, 35, // 134 404 67, 35, 65, // 135 407 70, 58, 39, // 136 410 39, 67, 70, // 137 413 54, 53, 172, // 138 416 54, 172, 68, // 139 419 54, 69, 70, // 140 422 70, 69, 71, // 141 425 71, 61, 70, // 142 428 72, 76, 174, // 143 431 174, 56, 72, // 144 434 75, 52, 51, // 145 437 51, 73, 75, // 146 440 77, 84, 83, // 147 443 77, 83, 76, // 148 446 48, 90, 78, // 149 449 79, 81, 82, // 150 452 82, 84, 79, // 151 455 82, 81, 89, // 152 458 89, 85, 82, // 153 461 78, 175, 87, // 154 464 87, 49, 78, // 155 467 175, 78, 89, // 156 470 89, 80, 175, // 157 473 90, 85, 89, // 158 476 176, 13, 161, // 159 479 92, 93, 32, // 160 482 92, 32, 31, // 161 485 176, 14, 13, // 162 488 91, 31, 176, // 163 491 161, 91, 176, // 164 494 66, 65, 177, // 165 497 178, 51, 177, // 166 500 93, 178, 177, // 167 503 93, 177, 46, // 168 506 177, 51, 50, // 169 509 177, 50, 66, // 170 512 51, 178, 94, // 171 515 179, 47, 73, // 172 518 73, 94, 179, // 173 521 97, 180, 95, // 174 524 159, 98, 100, // 175 527 101, 181, 102, // 176 530 169, 29, 101, // 177 533 101, 103, 169, // 178 536 100, 102, 181, // 179 539 100, 181, 159, // 180 542 103, 102, 107, // 181 545 111, 182, 109, // 182 548 111, 110, 104, // 183 551 104, 112, 111, // 184 554 108, 107, 113, // 185 557 117, 106, 105, // 186 560 180, 105, 115, // 187 563 95, 180, 115, // 188 566 105, 180, 117, // 189 569 120, 143, 133, // 190 572 133, 132, 118, // 191 575 120, 133, 118, // 192 578 123, 149, 121, // 193 581 122, 121, 124, // 194 584 48, 47, 124, // 195 587 124, 126, 48, // 196 590 124, 47, 122, // 197 593 126, 125, 183, // 198 596 183, 127, 126, // 199 599 126, 128, 85, // 200 602 126, 85, 90, // 201 605 85, 128, 130, // 202 608 85, 130, 129, // 203 611 122, 47, 179, // 204 614 122, 179, 131, // 205 617 134, 135, 184, // 206 620 184, 132, 134, // 207 623 141, 166, 135, // 208 626 136, 141, 135, // 209 629 136, 134, 137, // 210 632 141, 136, 138, // 211 635 138, 139, 141, // 212 638 144, 137, 134, // 213 641 134, 133, 144, // 214 644 148, 153, 152, // 215 647 148, 152, 146, // 216 650 150, 147, 146, // 217 653 146, 149, 150, // 218 656 151, 153, 154, // 219 659 145, 95, 116, // 220 662 145, 116, 151, // 221 665 155, 156, 76, // 222 668 82, 86, 165, // 223 671 165, 155, 82, // 224 674 76, 83, 155, // 225 677 174, 76, 156, // 226 680 60, 174, 156, // 227 683 158, 25, 98, // 228 686 160, 13, 162, // 229 689 109, 182, 164, // 230 692 16, 15, 163, // 231 695 163, 164, 16, // 232 698 DX3DINDEX_END #endif #else #define index_Trim_Char_x_81_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_81_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_81_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_81_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_81_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_81_1__ ) DX3DMODEL_START( model_Trim_Char_x_81_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_81_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_81_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 699 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_81_1__, 163779413 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_81_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_80_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_82_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_82_1___initialShadingGroup_0 ) DX3DVERT( 2.21094, 0.616638, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.21094, 0.358429, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.75313, 0.421875, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 2.79505, 1.99921, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 2.77188, 2.20779, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 2.21094, 2.12323, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.654688, 2.32498, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.699717, 2.4158, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 0.443751, 2.4158, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 1.03281, 3.62827, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.920313, 3.65466, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.743751, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( -0.121874, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( -0.121874, 3.10284, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 0.443751, 3.10284, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.443751, 1.99921, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.38379, 2.4158, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( -0.121874, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.443751, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.03282, 2.51596, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.807625, 2.41589, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.03281, 2.4158, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.59432, 1.99921, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.62188, 1.99921, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.62188, 2.20752, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.04375, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.03281, 3.10284, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.26719, 2.5549, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.32734, 2.4158, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.03282, 2.27481, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.21562, 2.30698, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.48355, 2.20749, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.62188, 2.4158, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.21094, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.21094, 3.10284, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.7375, 3.10284, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.62188, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.62188, 3.10284, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.66692, 2.41583, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.62188, 2.45154, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 2.21094, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.7375, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 0.73827, 0.511383, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.03281, 0.408905, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.03281, 0.619659, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.03283, 1.7775, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 0.580115, 1.44739, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 0.738282, 1.44739, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 0.138059, 1.99921, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( -0.145312, 1.57968, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 0.105928, 1.44739, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 0.443448, 0.870972, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.443751, 0.895569, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 0.437845, 0.895477, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 0.0619909, 1.44739, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 0.0921889, 1.4281, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 0.751424, 0.895569, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 0.738283, 0.929871, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 0.738282, 0.895569, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.738282, 1.17148, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.976894, 1.44748, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 0.587009, 0.619659, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 0.738282, 0.619659, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 1.62187, 0.598602, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 1.0328, 0.67688, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 1.62188, 1.72504, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 1.59844, 1.98593, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 2.21094, 1.86386, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 2.8, 1.95468, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 2.21094, 1.99921, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 1.76312, 0.596497, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 1.62188, 0.345612, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 1.77344, 0.343628, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 1.97401, 1.44739, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 1.67489, 1.44739, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 1.68438, 1.04529, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 0.443751, 2.52756, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 0.639063, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 1.03281, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 1.62188, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 0.589598, 1.99945, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 0.443728, 1.8595, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 0.443751, 1.17148, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 0.44375, 1.18689, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 0.42478, 1.03436, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 0.738304, 1.16898, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.725, 0.6828, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 0.657813, 2.32187, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 0.443751, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 0.939063, 2.92969, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 1.2, 3.58905, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 1.32735, 2.29459, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.7375, 3.17969, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 1.87969, 2.05624, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 1.03268, 1.48331, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 0.720415, 1.05444, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 1.64844, 1.73279, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 1.93438, 1.80624, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 1.98438, 1.04529, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_82_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_82_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 99 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_82_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_82_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_82_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 11, // 3 11 12, 13, 14, // 4 14 15, 8, 16, // 5 17 13, 17, 18, // 6 20 19, 20, 21, // 7 23 22, 23, 24, // 8 26 25, 11, 26, // 9 29 27, 21, 28, // 10 32 21, 29, 30, // 11 35 31, 24, 32, // 12 38 33, 34, 35, // 13 41 36, 37, 34, // 14 44 38, 32, 24, // 15 47 38, 39, 32, // 16 50 40, 41, 34, // 17 53 42, 43, 44, // 18 56 45, 46, 47, // 19 59 48, 49, 50, // 20 62 51, 52, 53, // 21 65 50, 54, 55, // 22 68 56, 57, 58, // 23 71 52, 58, 57, // 24 74 59, 47, 46, // 25 77 59, 60, 47, // 26 80 61, 42, 62, // 27 83 58, 52, 51, // 28 86 56, 58, 62, // 29 89 63, 64, 44, // 30 92 65, 23, 66, // 31 95 67, 68, 3, // 32 98 67, 69, 23, // 33 101 70, 71, 72, // 34 104 73, 74, 75, // 35 107 8, 76, 16, // 36 110 14, 18, 77, // 37 113 78, 79, 26, // 38 116 79, 40, 37, // 39 119 80, 15, 81, // 40 122 82, 83, 84, // 41 125 85, 59, 59, // 42 128 2, 86, 0, // 43 131 5, 69, 3, // 44 134 29, 21, 20, // 45 137 15, 80, 87, // 46 140 8, 15, 6, // 47 143 87, 6, 15, // 48 146 87, 80, 29, // 49 149 20, 87, 29, // 50 152 11, 88, 14, // 51 155 11, 89, 26, // 52 158 11, 25, 9, // 53 161 14, 88, 12, // 54 164 16, 48, 15, // 55 167 18, 14, 13, // 56 170 24, 31, 22, // 57 173 25, 90, 9, // 58 176 37, 36, 25, // 59 179 25, 26, 37, // 60 182 27, 19, 21, // 61 185 28, 32, 39, // 62 188 39, 27, 28, // 63 191 30, 91, 28, // 64 194 28, 21, 30, // 65 197 32, 28, 91, // 66 200 91, 31, 32, // 67 203 35, 92, 33, // 68 206 34, 33, 36, // 69 209 69, 5, 93, // 70 212 24, 23, 93, // 71 215 24, 93, 38, // 72 218 93, 23, 69, // 73 221 41, 35, 34, // 74 224 44, 62, 42, // 75 227 60, 94, 45, // 76 230 45, 47, 60, // 77 233 49, 54, 50, // 78 236 81, 15, 48, // 79 239 48, 50, 81, // 80 242 85, 59, 82, // 81 245 57, 82, 52, // 82 248 82, 57, 95, // 83 251 82, 95, 85, // 84 254 83, 82, 59, // 85 257 59, 46, 83, // 86 260 47, 59, 59, // 87 263 61, 62, 58, // 88 266 51, 61, 58, // 89 269 62, 44, 64, // 90 272 62, 64, 56, // 91 275 43, 71, 63, // 92 278 44, 43, 63, // 93 281 23, 22, 66, // 94 284 45, 94, 65, // 95 287 65, 66, 45, // 96 290 3, 69, 67, // 97 293 96, 74, 73, // 98 296 23, 65, 96, // 99 299 23, 96, 97, // 100 302 23, 97, 67, // 101 305 73, 97, 96, // 102 308 70, 63, 71, // 103 311 72, 1, 0, // 104 314 72, 0, 70, // 105 317 75, 98, 73, // 106 320 76, 8, 7, // 107 323 89, 78, 26, // 108 326 89, 11, 77, // 109 329 77, 11, 14, // 110 332 7, 89, 77, // 111 335 7, 77, 76, // 112 338 79, 37, 26, // 113 341 40, 34, 37, // 114 344 53, 52, 82, // 115 347 82, 84, 53, // 116 350 DX3DINDEX_END #endif #else #define index_Trim_Char_x_82_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_82_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_82_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_82_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_82_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_82_1__ ) DX3DMODEL_START( model_Trim_Char_x_82_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_82_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_82_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 351 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_82_1__, 165864549 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_82_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_81_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_83_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_83_1___initialShadingGroup_0 ) DX3DVERT( 2.91465, 0.963776, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.61128, 0.963989, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.57391, 0.899658, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 0.364844, 1.60721, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.364844, 0.992798, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.729228, 1.60724, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 0.917188, 2.89407, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 0.917188, 2.45914, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.09335, 2.89407, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 0.542729, 2.25064, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 0.833845, 2.25064, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 0.917188, 3.17606, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 0.802808, 2.89407, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 0.027812, 0.963776, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( -0.1875, 0.418762, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 0.0734386, 0.320313, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.364844, 1.80832, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 0.284256, 1.60721, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 0.350901, 0.963776, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 1.42446, 1.76807, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 1.46997, 1.6633, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.46953, 1.76807, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 1.19329, 1.91232, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.19336, 1.92892, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 0.917188, 1.92892, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.1933, 2.16296, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 0.917188, 2.061, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 1.25488, 2.16626, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 1.22346, 1.91315, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.33154, 1.87994, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 1.33145, 1.92892, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 1.46953, 1.92892, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 1.75537, 0.642212, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.02205, 0.387024, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.02188, 0.642029, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 1.7457, 1.60721, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.78063, 1.60721, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 1.74575, 1.71976, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 1.48879, 1.60739, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.64958, 1.92892, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.46942, 2.11154, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 1.7457, 0.963776, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 1.9183, 0.963776, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 1.63505, 0.963745, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.74601, 0.660126, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 2.02197, 0.712189, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 3.04551, 1.60721, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.86563, 1.65784, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.85209, 1.60721, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.57445, 0.493073, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.57422, 0.642029, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.32435, 0.642059, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 2.19844, 0.356293, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.2032, 0.612, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 2.09511, 0.642029, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 3.12656, 1.58438, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 1.325, 3.45157, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 1.06406, 3.53751, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 0.678126, 1.83752, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 0.670314, 1.83752, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 0.917184, 1.7955, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.29804, 0.630585, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 2.29791, 0.365662, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_83_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_83_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 63 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_83_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_83_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_83_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 7, 8, // 2 8 9, 10, 7, // 3 11 11, 12, 6, // 4 14 11, 6, 8, // 5 17 13, 14, 15, // 6 20 16, 17, 3, // 7 23 13, 18, 4, // 8 26 19, 20, 21, // 9 29 16, 3, 5, // 10 32 22, 23, 24, // 11 35 23, 25, 26, // 12 38 27, 25, 23, // 13 41 28, 29, 30, // 14 44 19, 21, 31, // 15 47 32, 33, 34, // 16 50 35, 36, 37, // 17 53 38, 35, 37, // 18 56 39, 40, 31, // 19 59 41, 42, 36, // 20 62 43, 44, 41, // 21 65 44, 32, 45, // 22 68 46, 47, 48, // 23 71 49, 50, 51, // 24 74 33, 52, 53, // 25 77 54, 45, 34, // 26 80 50, 2, 51, // 27 83 0, 55, 46, // 28 86 50, 49, 0, // 29 89 2, 50, 0, // 30 92 7, 6, 12, // 31 95 12, 9, 7, // 32 98 56, 57, 11, // 33 101 8, 56, 11, // 34 104 15, 18, 13, // 35 107 4, 3, 17, // 36 110 4, 17, 13, // 37 113 24, 26, 58, // 38 116 59, 10, 9, // 39 119 5, 58, 59, // 40 122 59, 16, 5, // 41 125 9, 16, 59, // 42 128 58, 5, 60, // 43 131 58, 60, 24, // 44 134 24, 60, 22, // 45 137 26, 24, 23, // 46 140 30, 31, 40, // 47 143 30, 40, 27, // 48 146 23, 30, 27, // 49 149 23, 22, 28, // 50 152 28, 30, 23, // 51 155 31, 30, 29, // 52 158 31, 29, 19, // 53 161 39, 31, 21, // 54 164 37, 21, 20, // 55 167 20, 38, 37, // 56 170 21, 37, 39, // 57 173 35, 38, 43, // 58 176 36, 35, 41, // 59 179 43, 41, 35, // 60 182 32, 34, 45, // 61 185 42, 41, 44, // 62 188 45, 42, 44, // 63 191 51, 61, 62, // 64 194 62, 49, 51, // 65 197 62, 61, 53, // 66 200 54, 34, 33, // 67 203 33, 53, 54, // 68 206 53, 52, 62, // 69 209 48, 1, 0, // 70 212 46, 48, 0, // 71 215 DX3DINDEX_END #endif #else #define index_Trim_Char_x_83_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_83_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_83_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_83_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_83_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_83_1__ ) DX3DMODEL_START( model_Trim_Char_x_83_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_83_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_83_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 216 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_83_1__, 167949685 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_83_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_82_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_Trim_Char_x_84_1__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif #if ((PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_TRILIST ) || ((PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP)) || (PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_INDEXSTRIP) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERT_START( VN, vertexbuff_Trim_Char_x_84_1___initialShadingGroup_0 ) DX3DVERT( 2.32031, 3.35937, 0 ) DX3DVNORM( 0, 0, 1 ) //0 DX3DVERT( 2.17578, 3.36048, 0 ) DX3DVNORM( 0, 0, 1 ) //1 DX3DVERT( 2.17578, 3.08719, 0 ) DX3DVNORM( 0, 0, 1 ) //2 DX3DVERT( 1.16615, 3.42577, 0 ) DX3DVNORM( 0, 0, 1 ) //3 DX3DVERT( 0.595314, 3.50312, 0 ) DX3DVNORM( 0, 0, 1 ) //4 DX3DVERT( 0.560938, 3.2375, 0 ) DX3DVNORM( 0, 0, 1 ) //5 DX3DVERT( 1.7422, 3.37658, 0 ) DX3DVNORM( 0, 0, 1 ) //6 DX3DVERT( 1.16615, 3.15622, 0 ) DX3DVNORM( 0, 0, 1 ) //7 DX3DVERT( 1.7422, 3.10491, 0 ) DX3DVNORM( 0, 0, 1 ) //8 DX3DVERT( 2.32031, 3.08594, 0 ) DX3DVNORM( 0, 0, 1 ) //9 DX3DVERT( 2.31824, 0.870312, 0 ) DX3DVNORM( 0, 0, 1 ) //10 DX3DVERT( 2.31823, 0.78499, 0 ) DX3DVNORM( 0, 0, 1 ) //11 DX3DVERT( 2.43751, 0.870317, 0 ) DX3DVNORM( 0, 0, 1 ) //12 DX3DVERT( 2.60626, 1.92344, 0 ) DX3DVNORM( 0, 0, 1 ) //13 DX3DVERT( 2.87523, 1.92342, 0 ) DX3DVNORM( 0, 0, 1 ) //14 DX3DVERT( 2.75247, 2.18678, 0 ) DX3DVNORM( 0, 0, 1 ) //15 DX3DVERT( 0.590109, 2.13795, 0 ) DX3DVNORM( 0, 0, 1 ) //16 DX3DVERT( 1.16615, 2.2293, 0 ) DX3DVNORM( 0, 0, 1 ) //17 DX3DVERT( 1.16615, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //18 DX3DVERT( 0.590113, 2.41843, 0 ) DX3DVNORM( 0, 0, 1 ) //19 DX3DVERT( 0.0140627, 2.29375, 0 ) DX3DVNORM( 0, 0, 1 ) //20 DX3DVERT( 1.16614, 2.50488, 0 ) DX3DVNORM( 0, 0, 1 ) //21 DX3DVERT( 0.769616, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //22 DX3DVERT( 1.60089, 2.26484, 0 ) DX3DVNORM( 0, 0, 1 ) //23 DX3DVERT( 1.60089, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //24 DX3DVERT( 1.60089, 2.53665, 0 ) DX3DVNORM( 0, 0, 1 ) //25 DX3DVERT( 1.73438, 2.26726, 0 ) DX3DVNORM( 0, 0, 1 ) //26 DX3DVERT( 2.31825, 2.16735, 0 ) DX3DVNORM( 0, 0, 1 ) //27 DX3DVERT( 2.31824, 2.18672, 0 ) DX3DVNORM( 0, 0, 1 ) //28 DX3DVERT( 1.7458, 2.53915, 0 ) DX3DVNORM( 0, 0, 1 ) //29 DX3DVERT( 2.38581, 2.45004, 0 ) DX3DVNORM( 0, 0, 1 ) //30 DX3DVERT( 2.31824, 2.47194, 0 ) DX3DVNORM( 0, 0, 1 ) //31 DX3DVERT( 2.31824, 2.45, 0 ) DX3DVNORM( 0, 0, 1 ) //32 DX3DVERT( 2.55933, 1.92344, 0 ) DX3DVNORM( 0, 0, 1 ) //33 DX3DVERT( 2.60626, 2.18672, 0 ) DX3DVNORM( 0, 0, 1 ) //34 DX3DVERT( 2.60621, 2.33327, 0 ) DX3DVNORM( 0, 0, 1 ) //35 DX3DVERT( 1.16614, 0.677254, 0 ) DX3DVNORM( 0, 0, 1 ) //36 DX3DVERT( 0.720313, 0.617186, 0 ) DX3DVNORM( 0, 0, 1 ) //37 DX3DVERT( 0.790626, 0.343748, 0 ) DX3DVNORM( 0, 0, 1 ) //38 DX3DVERT( 1.16614, 0.387463, 0 ) DX3DVNORM( 0, 0, 1 ) //39 DX3DVERT( 1.6009, 0.477629, 0 ) DX3DVNORM( 0, 0, 1 ) //40 DX3DVERT( 2.59238, 1.73594, 0 ) DX3DVNORM( 0, 0, 1 ) //41 DX3DVERT( 2.50562, 1.39689, 0 ) DX3DVNORM( 0, 0, 1 ) //42 DX3DVERT( 2.60626, 1.39687, 0 ) DX3DVNORM( 0, 0, 1 ) //43 DX3DVERT( 1.8445, 0.870388, 0 ) DX3DVNORM( 0, 0, 1 ) //44 DX3DVERT( 1.60089, 0.781578, 0 ) DX3DVNORM( 0, 0, 1 ) //45 DX3DVERT( 2.31824, 1.13359, 0 ) DX3DVNORM( 0, 0, 1 ) //46 DX3DVERT( 2.60623, 1.02474, 0 ) DX3DVNORM( 0, 0, 1 ) //47 DX3DVERT( 2.69601, 1.13363, 0 ) DX3DVNORM( 0, 0, 1 ) //48 DX3DVERT( 2.60626, 1.13359, 0 ) DX3DVNORM( 0, 0, 1 ) //49 DX3DVERT( 2.31829, 1.16419, 0 ) DX3DVNORM( 0, 0, 1 ) //50 DX3DVERT( 2.83468, 1.39715, 0 ) DX3DVNORM( 0, 0, 1 ) //51 DX3DVERT( 0.0765637, 2.02812, 0 ) DX3DVNORM( 0, 0, 1 ) //52 DX3DVERT( 2.89448, 1.74618, 0 ) DX3DVNORM( 0, 0, 1 ) //53 DX3DVERT( 3.45422, 2.74328, 0 ) DX3DVNORM( 0, 0, 1 ) //54 DX3DVERT( 3.48955, 2.76041, 0 ) DX3DVNORM( 0, 0, 1 ) //55 DX3DVERT( 3.45422, 2.76041, 0 ) DX3DVNORM( 0, 0, 1 ) //56 DX3DVERT( 3.03821, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //57 DX3DVERT( 3.04068, 3.3507, 0 ) DX3DVNORM( 0, 0, 1 ) //58 DX3DVERT( 3.04068, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //59 DX3DVERT( 3.04068, 3.44224, 0 ) DX3DVNORM( 0, 0, 1 ) //60 DX3DVERT( 2.99849, 3.4201, 0 ) DX3DVNORM( 0, 0, 1 ) //61 DX3DVERT( 3.48723, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //62 DX3DVERT( 3.45422, 3.21399, 0 ) DX3DVNORM( 0, 0, 1 ) //63 DX3DVERT( 3.45422, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //64 DX3DVERT( 3.15659, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //65 DX3DVERT( 3.24745, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //66 DX3DVERT( 3.24745, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //67 DX3DVERT( 3.37162, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //68 DX3DVERT( 3.25162, 3.55291, 0 ) DX3DVNORM( 0, 0, 1 ) //69 DX3DVERT( 3.24745, 3.55073, 0 ) DX3DVNORM( 0, 0, 1 ) //70 DX3DVERT( 3.24745, 3.00006, 0 ) DX3DVNORM( 0, 0, 1 ) //71 DX3DVERT( 3.45422, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //72 DX3DVERT( 3.38072, 2.76041, 0 ) DX3DVNORM( 0, 0, 1 ) //73 DX3DVERT( 3.27108, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //74 DX3DVERT( 3.66099, 2.84354, 0 ) DX3DVNORM( 0, 0, 1 ) //75 DX3DVERT( 3.59845, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //76 DX3DVERT( 3.40318, 2.71854, 0 ) DX3DVNORM( 0, 0, 1 ) //77 DX3DVERT( 3.04068, 2.67185, 0 ) DX3DVNORM( 0, 0, 1 ) //78 DX3DVERT( 3.07193, 2.68729, 0 ) DX3DVNORM( 0, 0, 1 ) //79 DX3DVERT( 3.04068, 2.74619, 0 ) DX3DVNORM( 0, 0, 1 ) //80 DX3DVERT( 3.03307, 2.76041, 0 ) DX3DVNORM( 0, 0, 1 ) //81 DX3DVERT( 2.83391, 2.76041, 0 ) DX3DVNORM( 0, 0, 1 ) //82 DX3DVERT( 2.69384, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //83 DX3DVERT( 2.62714, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //84 DX3DVERT( 2.62714, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //85 DX3DVERT( 2.61573, 3.35479, 0 ) DX3DVNORM( 0, 0, 1 ) //86 DX3DVERT( 2.42037, 3.25291, 0 ) DX3DVNORM( 0, 0, 1 ) //87 DX3DVERT( 2.47857, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //88 DX3DVERT( 2.62714, 3.36074, 0 ) DX3DVNORM( 0, 0, 1 ) //89 DX3DVERT( 2.67506, 3.38573, 0 ) DX3DVNORM( 0, 0, 1 ) //90 DX3DVERT( 2.59654, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //91 DX3DVERT( 2.62714, 2.90615, 0 ) DX3DVNORM( 0, 0, 1 ) //92 DX3DVERT( 2.62714, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //93 DX3DVERT( 2.9246, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //94 DX3DVERT( 2.83391, 3.11804, 0 ) DX3DVNORM( 0, 0, 1 ) //95 DX3DVERT( 2.83391, 2.95854, 0 ) DX3DVNORM( 0, 0, 1 ) //96 DX3DVERT( 2.8115, 3.15666, 0 ) DX3DVNORM( 0, 0, 1 ) //97 DX3DVERT( 2.83391, 2.56975, 0 ) DX3DVNORM( 0, 0, 1 ) //98 DX3DVERT( 2.71052, 2.76041, 0 ) DX3DVNORM( 0, 0, 1 ) //99 DX3DVERT( 2.81881, 2.56229, 0 ) DX3DVNORM( 0, 0, 1 ) //100 DX3DVERT_END #endif DX3DVERTEX_START( vertex_Trim_Char_x_84_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DVERTEX_VERTBUFFER( vertexbuff_Trim_Char_x_84_1___initialShadingGroup_0 ) #else DX3DVERTEX_VERTBUFFER( 0 ) #endif DX3DVERTEX_VERTNUM_iZ( VN, 101 ) DX3DVERTEX_END #else #define vertex_Trim_Char_x_84_1___initialShadingGroup_0 NULL #define vertexbuff_Trim_Char_x_84_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_TRILIST) ) || (PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_TRILIST ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DINDEX_START( index_Trim_Char_x_84_1___initialShadingGroup_0 ) 0, 1, 2, // 0 2 3, 4, 5, // 1 5 6, 3, 7, // 2 8 1, 6, 8, // 3 11 2, 9, 0, // 4 14 5, 7, 3, // 5 17 7, 8, 6, // 6 20 8, 2, 1, // 7 23 10, 11, 12, // 8 26 13, 14, 15, // 9 29 16, 17, 18, // 10 32 16, 19, 20, // 11 35 18, 21, 22, // 12 38 23, 24, 18, // 13 41 24, 25, 21, // 14 44 26, 27, 28, // 15 47 29, 25, 24, // 16 50 30, 31, 32, // 17 53 33, 13, 34, // 18 56 30, 32, 28, // 19 59 15, 35, 34, // 20 62 36, 37, 38, // 21 65 36, 39, 40, // 22 68 41, 42, 43, // 23 71 44, 45, 40, // 24 74 44, 10, 46, // 25 77 47, 48, 49, // 26 80 46, 10, 12, // 27 83 50, 46, 49, // 28 86 48, 51, 43, // 29 89 15, 34, 13, // 30 92 22, 19, 16, // 31 95 16, 18, 22, // 32 98 20, 52, 16, // 33 101 18, 17, 23, // 34 104 21, 18, 24, // 35 107 24, 23, 26, // 36 110 32, 24, 26, // 37 113 26, 28, 32, // 38 116 24, 32, 31, // 39 119 31, 29, 24, // 40 122 34, 28, 27, // 41 125 27, 33, 34, // 42 128 28, 34, 35, // 43 131 28, 35, 30, // 44 134 38, 39, 36, // 45 137 40, 45, 36, // 46 140 13, 33, 41, // 47 143 53, 14, 41, // 48 146 51, 53, 41, // 49 149 43, 51, 41, // 50 152 41, 14, 13, // 51 155 11, 10, 44, // 52 158 44, 40, 11, // 53 161 46, 50, 44, // 54 164 47, 49, 46, // 55 167 46, 12, 47, // 56 170 49, 43, 42, // 57 173 49, 42, 50, // 58 176 43, 49, 48, // 59 179 54, 55, 56, // 60 182 57, 58, 59, // 61 185 60, 61, 57, // 62 188 62, 63, 64, // 63 191 65, 66, 67, // 64 194 60, 59, 67, // 65 197 68, 67, 66, // 66 200 68, 69, 70, // 67 203 66, 65, 71, // 68 206 62, 64, 72, // 69 209 64, 66, 71, // 70 212 54, 56, 73, // 71 215 72, 74, 73, // 72 218 55, 75, 76, // 73 221 57, 59, 60, // 74 224 67, 59, 58, // 75 227 58, 65, 67, // 76 230 67, 70, 60, // 77 233 66, 64, 63, // 78 236 63, 68, 66, // 79 239 70, 67, 68, // 80 242 72, 76, 62, // 81 245 74, 72, 64, // 82 248 64, 71, 74, // 83 251 73, 77, 54, // 84 254 73, 56, 72, // 85 257 72, 56, 55, // 86 260 55, 76, 72, // 87 263 78, 79, 80, // 88 266 80, 81, 82, // 89 269 83, 84, 85, // 90 272 86, 87, 88, // 91 275 89, 86, 84, // 92 278 83, 90, 89, // 93 281 91, 92, 93, // 94 284 85, 88, 91, // 95 287 94, 95, 96, // 96 290 97, 85, 93, // 97 293 98, 82, 99, // 98 296 96, 93, 92, // 99 299 94, 96, 82, // 100 302 82, 98, 78, // 101 305 82, 78, 80, // 102 308 85, 97, 83, // 103 311 85, 84, 86, // 104 314 86, 88, 85, // 105 317 89, 84, 83, // 106 320 91, 93, 85, // 107 323 93, 96, 95, // 108 326 93, 95, 97, // 109 329 99, 100, 98, // 110 332 99, 82, 96, // 111 335 92, 99, 96, // 112 338 82, 81, 94, // 113 341 DX3DINDEX_END #endif #else #define index_Trim_Char_x_84_1___initialShadingGroup_0 NULL #endif #if ((PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_INDEXSTRIP) ) || (PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_INDEXSTRIP ) //NO INDEX STRIP #else #define index_Trim_Char_x_84_1___initialShadingGroup_0_INDEXSTRIP NULL #endif #if ((PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_FOLLOWALL) && (PT_ALL_TextHiraganaMplus1p_tst__ == PT_VERTEXSTRIP) ) || (PT_Trim_Char_x_84_1___initialShadingGroup_0 == PT_VERTEXSTRIP ) //NO VERTEX STRIP #else #define vertex_Trim_Char_x_84_1___initialShadingGroup_0_VERTEXSTRIP NULL #define vertexbuff_Trim_Char_x_84_1___initialShadingGroup_0_VERTEXSTRIP NULL #endif DX3DMODELTBL_START( modeltbl_Trim_Char_x_84_1__ ) DX3DMODEL_START( model_Trim_Char_x_84_1___initialShadingGroup_0 ) DX3DMODEL_VERTEX( vertex_Trim_Char_x_84_1___initialShadingGroup_0 ) #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DMODEL_INDEX( index_Trim_Char_x_84_1___initialShadingGroup_0 ) #else DX3DMODEL_INDEX( 0 ) #endif DX3DMODEL_INDEXNUM( 342 ) DX3DMODEL_INDEXSTRIP( NULL ) DX3DMODEL_INDEXSTRIPNUM( 0 ) DX3DMODEL_VERTEXSTRIP( NULL ) DX3DMODEL_MATERIAL( material_initialShadingGroup ) DX3DMODEL_END DX3DMODELTBL_END DX3DOBJECT_START_HASH( object_Trim_Char_x_84_1__, 170034821 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_Trim_Char_x_84_1__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_Trim_Char_x_83_1__ ) DX3DOBJECT_CHILD( object_NULL__ ) DX3DOBJECT_END ///////////////////////////////////////////// // object_root__ ///////////////////////////////////////////// #if 0 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 #endif DX3DOBJECT_START_HASH( object_root__, 680586657 ) DX3DOBJECT_ROTORDER( RO_XYZ ) DX3DOBJECT_MODEL( modeltbl_NULL__ ) DX3DOBJECT_MATRIXBIND( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXBIND_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSBIND_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_MATRIXPOSE( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_MATRIXPOSE_ABS( 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ) DX3DOBJECT_TRSPOSE_ROTORDER( RO_XYZ, 0, 0, 0, 0, 0, 0, // 0, 0, 0 1, 1, 1 ) DX3DOBJECT_NORMAL DX3DOBJECT_FLG_iZiR( NONE ) DX3DOBJECT_CALLBACK( 0 ) DX3DOBJECT_SIBLING( object_NULL__ ) DX3DOBJECT_CHILD( object_Trim_Char_x_84_1__ ) DX3DOBJECT_END //////////// export info /////////////// DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___0, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___1, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___2, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___3, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___4, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___5, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___6, 0 ) DX3DOBJECT_JOINTCOUNT( jointcnt_TextHiraganaMplus1p_tst___7, 0 ) ///////////////////////////////////////////// #if ( !BINARY_TextHiraganaMplus1p_tst__ ) DX3DBINARYFILE( binaryfile_TextHiraganaMplus1p_tst__, NULL ) #else DX3DBINARYFILE( binaryfile_TextHiraganaMplus1p_tst__, "Z:/toshi2/lib/dx/dx3dtext/maya/" ) #endif DX3DBINARYSIZE( binarysize_TextHiraganaMplus1p_tst__, 0 )
1956a2870803ae54afe8794dd1de63d1d619be8c
449d555969bfd7befe906877abab098c6e63a0e8
/3788/CH4/EX4.3.1/Ex4_3_2.sce
cc5b4dc99d7e855a4987437062fe29ea4d900518
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
394
sce
Ex4_3_2.sce
//Example 4.3.2 // Calculate the New System noise temperature //Variables clc clear Gain = 50 G1 = 0.631 attenuation = 2 Tm = 500 TIF = 1000 Tp = 300 //Calculation Twg = Tp*(1-G1) Tin = G1*25 T = (Tin + Twg +Gain + (Tm/(10^5)) + (TIF/(10^4))) Ts = (T/G1) //Result printf("Waveguide Noise temperature is %fK \n",Twg) printf("The new System noise temperature is %fK",Ts)
0f42a0e760b9034b9f0a7205a2a68b44f6764451
449d555969bfd7befe906877abab098c6e63a0e8
/503/CH3/EX3.7/ch3_7.sci
6c064e419c8a2d73513578566ac082bec06c2759
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
822
sci
ch3_7.sci
// Approx equivalent ckt referred to hv and lv sides resp, clc; //open ckt test data with HV side open ocv=200; oci=4; ocp=120; //short ckt test data with LV side open scv=60; sci=10; scp=300; //OC test(LV side) Y_o=oci/ocv; disp(Y_o,'Y_o(mho)'); G_i=ocp/ocv^2; disp(G_i,'G_i(mho)'); B_m=sqrt(Y_o^2-G_i^2); disp(B_m,'B_m(mho)'); //SC test(HV side) Z=scv/sci; disp(Z,'Z(ohm)'); R=scp/sci^2; disp(R,'R(ohm)'); X=sqrt(Z^2-R^2); disp(X,'X(ohm)'); N_H=2000; N_L=200; a=N_H/N_L; //transformation ratio //Equivalent ckt referred to HV side G_iHV=G_i/a^2; disp(G_iHV,'G_i(HV)mho'); B_mHV=B_m/a^2; disp(B_mHV,'B_m(HV)mho'); //Equivalent ckt referred to LV side RLV=R/a^2; disp(RLV,'R(LV)ohm'); XLV=X/a^2; disp(XLV,'X(LV)ohm');
cb4b7ff5c589674147352fea6ada54fa5d602f02
449d555969bfd7befe906877abab098c6e63a0e8
/3772/CH6/EX6.1/Ex6_1.sce
df498a429c2d5183ca602e093298c00e9ff49ef5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
638
sce
Ex6_1.sce
// Problem no 6.1,Page No.154 clc;clear; close; b=0.12 //m //Width of beam d=0.2 //m //Depth of beam dell=0.005 //m //Deflection E=2*10**5*10**6 //N/m**2 L=2.5 //m //Length of beam //Calculations I=b*d**3*12**-1 //m**4 //M.I of rectangular section w=8*E*I*dell*(L**4)**-1 //N/m //U.d.l //Let slope at free end be theta theta=w*L**3*(6*E*I)**-1 //Radian W=dell*3*E*I*(L**3)**-1*10**-3 //kN //Concentrated Load theta_2=W*L**2*(2*E*I)**-1 //Slope at free end //Result printf("Uniformly distributed Load beam should carry is %.2f N/m",w) printf("\n Concentrated Load at free end is %.2f kN",W) //Answer is wrong in the textbook.
9b9cdceb64e85cc1073cd3b983343ee30299cdb8
eda0ddb3e310b6d8e0a674f5cccfd207915546d1
/AMbasic.sce
6f3a1dd7f947c328915e69f8cd5feacb6bfdf81b
[]
no_license
jithinsisaac/Scilab-Experiments
046e781291cf08b68eec84084446ffee91adeb14
3f4d18b2f32b74abed963f02d6ecb8509d5fabc1
refs/heads/master
2022-11-09T08:24:39.953452
2020-06-25T07:52:07
2020-06-25T07:52:07
274,857,905
1
0
null
null
null
null
UTF-8
Scilab
false
false
547
sce
AMbasic.sce
fm = 40; //2 Hz fc = 300; //10 Hz fs = 100000; //samples/sAc Am=10; Ac=10; m=1 t = 0:1/fs:0.25; Vm = m*Ac*sin(2*%pi*fm*t); subplot(3,1,1) plot(t,Vm) title('Modulating Signal') t = 0:1/fs:0.5; Vc = Ac*sin(2*%pi*fc*t); subplot(3,1,2); plot(t,Vc); title('Carrier Signal'); t = 0:1/fs:0.25; x = (Ac+Ac*m*sin(2*%pi*fm*t)).*(sin(2*%pi*fc*t)); Am2 = (m*Ac*sin(2*%pi*fm*t))+(Ac); subplot(3,1,3); plot(t,x,t,Am2); title('Amplitude Modulated Signal')
e18a0632c82c2dd17deb82a03eb715a53817946e
4545588c8427debaf17f9dc71b0ace32f4fb5d67
/avr32/services/dsp/dsplib/conception/operators/fixed_point_ln.sci
930522b9da4ff785222cd2ea30214f758285596c
[]
no_license
eewiki/asf
02e06cec0465b28dd689dea801e6be6cbcd47eca
8d0f55bd089f2e68d2b53aa76adbb02c07cdb166
refs/heads/master
2021-01-16T18:20:22.690176
2015-03-09T05:42:50
2015-03-09T05:42:50
18,419,213
34
30
null
2014-12-25T05:13:20
2014-04-03T21:42:46
C
UTF-8
Scilab
false
false
726
sci
fixed_point_ln.sci
// Fixed point 16-bit cosine and sine clear function res=ln_test(x) res = 0; // Convert Q format to float x = x*2^(-31); expo = int(log(x)/log(2)); x = x*2^(-expo); a = (x-1)/(x+1); a_sqr = a*a; res = a_sqr*(1/9); res = a_sqr*(res + 1/7); res = a_sqr*(res + 1/5); res = a_sqr*(res + 1/3); res = a*(res + 1); res = res*2; res = log(x) + expo*log(2); endfunction; function res=DSP_Q(a, b, x) res = floor(x*2^b); endfunction QA = 1 QB = 31 e_moy = 0; 0.99999998882 for nbr=-0.0001:0.1:1, printf("ln(%f)\t%.11f %.11f\n", nbr, log(nbr)/log(10), ln_test(DSP_Q(QA, QB, nbr))); end; printf("Error average: %.11f\n", e_moy/length(-1:0.1:1));
e59e4a303f91e4c6cd952ed3e5b6c3ed5cf84281
449d555969bfd7befe906877abab098c6e63a0e8
/770/CH7/EX7.6/7_6.sce
cac40781340489fd299cd182adacfad721a38e64
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,046
sce
7_6.sce
clear; clc; //Example - 7.6 //Page number - 241 printf("Example - 7.6 and Page number - 241\n\n"); //Given P_1 = 1;//[MPa] - Initial pressure P_2 = 1.4;//[MPa] - Final pressure //We know that // dS = (Cp/T)*dT - (dV/dT)*dP // Along an isothermal path,integration of above expression between states 1 and 2 yields // S_2 - S_1 = - integral((dV/dT)*dP)_P // An estimate can be made by assuming that (dV/dT)_P remains constant over the range of pressure from P_1 to P_2 and evaluating the derivative at average pressure of 1.2 MPa P_avg = P_2; // S_2 - S_1 = -integral((dV/dT)*dP)_Pavg*(P_2 - P_1) // (dV/dT)_P=1.2MPa = ((V_350 - V_250)/(350 - 250)) dV_dT = (0.2345 - 0.19234)/100;//[m^(3)/kg-K] //Therefore delta_S = -dV_dT*(P_2 - P_1)*1000;//[kJ/kg-K] - Entropy change printf("The change in entropy is given by\n S_2-S_1 = %f kJ/kg-K",delta_S); //Let us compare this tabulated values. At 1MPA and 300 C, S_1 = 7.1229 kJ/kg-K. At 1.4 MPa and 300 C, S_2 = 6.9534 kJ/kg-K. //Therefore S_2 - S_1 = -0.1695 kJ/kg-K
895401df4b75c09a46b6eface159d9cf9b0c99c2
e806e966b06a53388fb300d89534354b222c2cad
/macros/morphologyEx.sci
ef1a93b55d648016b7cf9def50eaf1751cc76c55
[]
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
332
sci
morphologyEx.sci
function new_image = morphologyEx(image, operation, kernel, anchorX, anchorY, iterations, borderType) image_list = mattolist(image) out = opencv_morphologyEx(image_list, operation, kernel, anchorX, anchorY, iterations, borderType) sz = size(out) for i=1:sz new_image(:, :, i) = out(i) end endfunction
8c9ed95b49cc3b90c26356ee7284c9370ea9933c
449d555969bfd7befe906877abab098c6e63a0e8
/3840/CH3/EX3.8/Ex3_8.sce
c965a1a1989de6c3e6d9ef9e7f8e1edeaf607fe5
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
257
sce
Ex3_8.sce
clear // // // //Variable declaration d=1.6 //lattice spacing(angstrom) theta=90*%pi/180 //glancing angle(radian) lamda=1.5 //wavelength of X-rays(angstrom) //Calculation n=2*d*sin(theta)/lamda //maximum order of diffraction //Result
f3cf7b67ecc261bfd50075b6fe29e0fa84427cfb
449d555969bfd7befe906877abab098c6e63a0e8
/1370/CH2/EX2.9/example2_9.sce
bbcde8ef43225776a318733ed68acfc380c425bf
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
181
sce
example2_9.sce
//example2.9 clc disp("P=4, A=P=4, Z=480") disp("psi=20mWb=20*10^-3 Wb, I_a=50 A") t=(0.159*0.02*50*4*480)/4 format(7) disp(t,"Now, T_a(in N-m)=0.159*(psi)*(I_a)*(P*Z)/A=")
a12033d824a243d081420a0f774c22e36732828e
449d555969bfd7befe906877abab098c6e63a0e8
/1271/CH1/EX1.9/example1_9.sce
d41aefd3ea4b6f9f9ad0e8efc08754123b958c15
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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
example1_9.sce
clc // Given that ratio = 16 // ratio of intensities of two waves // Sample Problem 9 on page no. 1.43 printf("\n # PROBLEM 9 # \n") printf("\n Standard formula used \n I = k*a^2. \n") a1 = sqrt(ratio) // by the formula amplitude = sqrt(intensity) a2 = 1 R = ((a1 + a2) ^ 2) / ((a1 - a2) ^ 2)// calculation for ratio of maximum intensity with minimum intensity printf("\n Ratio of maximum intensity with minimum intensity = %f",R)
922436900ef86c31ceb95fbd9c593486c94428d5
449d555969bfd7befe906877abab098c6e63a0e8
/2165/CH5/EX5.14/5_14.sce
045ef0c8a8ee55e32f92252659d0680194c92a68
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
369
sce
5_14.sce
clc //initialisation of variables T1=30//Degree c T2=-10//degree C t1=263//F t2=303//F h1=20//Units h2=79//C.H.U/lb h=24//hours T3=1//Degree C p=2.2046//C.H.U/sec //CALCULATIONS P=h1*p//C.H.U/sec T=t1/(t2-t1)//F H=P*60//C.H.U W=(H*1400)/T//ft/lb hp=W/33000//h.p W1=(H*60*h)/(80*2240)//tons //RESULTS printf('the cycle is a perfect one=% f tons',W1)
f72418e4815a8fc691bad0ddaf5f10bc327526f6
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/ngram/5.12_13.tst
27bc0b42d89304fb3570e2acb33ded623605d40a
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
383,699
tst
5.12_13.tst
12 549:1 590:1 668:1 765:1 1394:1 1607:1 2487:1 3077:1 4105:1 4188:1 4278:1 5020:1 5509:27 6060:1 6478:1 6833:1 9337:1 9534:1 10325:1 10724:1 10832:1 10921:1 10936:1 10961:1 11040:1 11689:1 12102:1 12872:1 13381:1 13459:1 13764:1 15824:1 16027:1 16387:1 16680:1 17998:1 18999:1 19086:1 19138:1 19535:1 19831:1 12 180:1 549:1 590:1 595:1 668:2 765:1 1023:1 1131:1 1329:1 1340:1 1352:1 1360:1 1394:1 1507:1 1521:1 1607:1 1813:1 1972:1 2025:1 2053:1 2329:1 2487:1 2693:1 2933:1 3077:1 3202:1 3285:1 3314:1 3331:1 3365:1 3557:1 3716:1 3790:1 3978:1 3987:1 4105:1 4188:1 4278:1 4619:1 4950:1 5020:1 5083:1 5341:1 5509:107 5884:1 6060:1 6478:1 6759:1 6833:1 6843:1 7183:1 7348:1 7360:2 7452:1 7456:1 7546:1 7608:1 7627:1 7850:1 8160:1 8355:1 8506:1 8653:1 8675:1 8807:1 8832:1 8833:1 9275:1 9325:1 9337:1 9534:1 9710:1 9719:1 9960:1 10325:1 10429:1 10553:1 10724:1 10749:1 10829:1 10832:2 10833:1 10860:1 10921:2 10936:1 10961:1 11040:1 11077:1 11079:1 11126:1 11236:1 11601:1 11689:1 11698:1 11991:1 12086:1 12102:1 12286:1 12579:1 12586:1 12771:1 12872:1 12911:1 13024:1 13381:1 13459:1 13617:1 13677:1 13693:1 13764:1 13908:1 13983:1 14041:1 14213:1 14549:1 14926:1 14936:1 15017:1 15396:1 15824:1 16027:1 16101:1 16308:1 16387:1 16471:1 16482:1 16486:1 16680:1 16712:1 16742:1 16917:1 16919:1 17447:1 17490:1 17594:1 17775:1 17798:1 17861:1 17918:1 17998:1 18369:1 18497:1 18617:1 18999:1 19005:1 19060:1 19061:1 19086:1 19138:1 19180:1 19535:1 19567:1 19608:1 19665:1 19831:2 19884:1 20111:1 20351:1 20705:1 20715:1 12 180:1 549:1 588:1 590:1 593:1 595:1 668:2 701:1 765:1 795:1 1023:1 1079:1 1131:1 1329:1 1340:1 1352:1 1360:1 1394:1 1507:1 1521:1 1607:1 1813:1 1972:1 2025:1 2053:1 2190:1 2329:1 2487:1 2693:1 2933:1 3077:1 3202:1 3285:1 3314:1 3331:1 3365:1 3557:1 3716:1 3790:1 3978:1 3987:1 4105:1 4188:1 4252:1 4278:1 4308:1 4619:1 4950:1 5020:1 5083:1 5209:1 5341:1 5509:137 5574:1 5607:1 5884:1 6060:1 6478:1 6759:1 6833:1 6843:2 7183:1 7319:1 7348:1 7360:2 7408:1 7452:3 7456:1 7546:1 7608:1 7627:1 7850:1 8031:1 8160:1 8355:1 8506:1 8653:1 8662:1 8675:1 8807:1 8832:1 8833:1 9275:1 9325:1 9337:1 9534:1 9710:1 9719:1 9960:1 10325:1 10429:1 10553:1 10724:1 10749:1 10829:1 10832:2 10833:1 10860:1 10921:2 10936:1 10961:1 11040:1 11077:1 11079:1 11126:1 11236:1 11261:1 11601:1 11689:1 11698:1 11991:1 12086:1 12102:1 12286:1 12579:1 12586:1 12771:1 12872:1 12911:1 13024:1 13307:1 13381:1 13459:1 13617:1 13677:1 13693:1 13764:1 13908:1 13983:1 14041:1 14213:1 14549:1 14926:1 14936:1 15017:1 15287:1 15396:1 15548:1 15824:1 16027:1 16101:1 16308:1 16387:1 16471:1 16482:1 16486:1 16680:1 16712:1 16742:1 16917:1 16919:1 17339:1 17447:1 17490:1 17594:1 17775:1 17798:1 17811:1 17861:1 17918:1 17998:1 18369:1 18393:1 18497:1 18617:1 18999:1 19005:1 19060:1 19061:1 19086:1 19138:1 19180:1 19441:1 19535:1 19567:1 19608:1 19665:1 19831:2 19884:1 20111:1 20351:1 20705:1 20715:2 12 141:1 180:1 394:1 549:1 588:1 590:1 593:1 595:1 668:2 701:1 765:1 795:1 1023:1 1079:1 1131:2 1329:1 1340:1 1352:1 1360:1 1394:1 1507:1 1521:1 1607:1 1813:1 1930:1 1972:1 2025:1 2052:1 2053:1 2061:1 2190:1 2329:1 2464:1 2487:1 2498:1 2613:1 2655:1 2677:1 2693:1 2911:1 2933:1 3077:1 3124:1 3202:1 3207:1 3285:1 3302:1 3314:1 3331:1 3365:1 3505:1 3557:1 3716:1 3731:1 3790:1 3865:1 3978:1 3987:1 4105:1 4185:1 4188:1 4252:1 4278:1 4282:1 4308:1 4619:1 4648:1 4745:1 4771:1 4950:1 5020:1 5083:1 5100:1 5209:1 5341:1 5442:1 5470:1 5509:210 5512:1 5574:1 5607:1 5884:1 5995:1 6060:1 6160:1 6351:1 6478:1 6687:1 6759:1 6833:1 6843:3 7183:1 7213:1 7319:1 7348:1 7360:2 7408:1 7452:4 7456:1 7546:1 7599:1 7608:1 7627:1 7846:1 7850:1 8031:1 8074:1 8160:1 8303:1 8338:1 8355:1 8506:1 8538:1 8619:1 8652:1 8653:1 8662:1 8675:1 8807:1 8832:1 8833:2 9275:1 9325:1 9337:1 9534:1 9644:1 9675:1 9710:1 9719:2 9823:1 9960:1 10325:1 10429:1 10553:1 10724:1 10749:1 10829:1 10832:2 10833:1 10860:1 10921:3 10936:1 10961:1 11040:1 11077:1 11079:1 11095:1 11112:1 11126:1 11236:1 11261:1 11518:1 11601:1 11689:1 11698:1 11991:1 12086:1 12102:1 12235:1 12286:1 12579:1 12586:1 12771:1 12811:1 12872:1 12911:1 12968:1 13024:1 13289:1 13307:1 13381:1 13459:1 13532:1 13617:1 13677:1 13693:1 13764:1 13908:1 13983:1 14041:2 14213:1 14411:1 14501:1 14549:1 14926:1 14936:1 15017:1 15192:1 15281:1 15287:2 15301:1 15339:1 15396:1 15412:1 15463:1 15548:1 15733:1 15766:1 15792:1 15824:1 16027:1 16036:1 16101:1 16261:1 16308:1 16366:1 16387:1 16471:1 16482:1 16486:1 16581:1 16680:1 16695:1 16712:1 16742:3 16917:1 16919:1 17339:1 17386:1 17401:1 17447:1 17490:1 17524:1 17594:1 17775:1 17798:1 17811:1 17861:1 17918:1 17939:1 17998:1 18369:1 18393:1 18497:1 18550:1 18564:1 18617:1 18760:1 18999:1 19005:1 19060:1 19061:1 19086:1 19138:1 19180:1 19319:1 19441:1 19535:1 19567:1 19608:1 19665:1 19740:1 19831:2 19884:1 20071:1 20111:1 20329:1 20351:1 20396:1 20460:1 20486:2 20700:1 20705:3 20715:3 20748:1 12 141:1 180:1 394:1 549:1 572:1 588:1 590:1 593:1 595:1 627:1 668:2 701:1 710:1 765:1 795:1 1023:1 1079:1 1131:2 1329:1 1340:1 1352:1 1360:1 1369:1 1394:1 1507:1 1521:1 1607:1 1691:1 1721:1 1813:1 1861:1 1930:1 1972:1 2025:1 2052:1 2053:1 2061:1 2190:1 2329:1 2449:1 2464:1 2487:1 2498:1 2613:1 2655:1 2677:1 2693:1 2911:1 2933:1 3077:1 3124:1 3128:1 3178:1 3202:1 3207:1 3208:1 3285:1 3302:1 3314:1 3331:1 3365:1 3505:1 3557:1 3716:1 3731:1 3790:1 3865:1 3978:1 3987:1 4089:1 4105:1 4185:1 4188:1 4252:1 4254:1 4278:1 4282:1 4308:1 4619:1 4648:1 4745:1 4771:1 4950:1 4979:1 5020:1 5083:1 5100:1 5209:1 5341:1 5442:2 5470:2 5509:251 5512:1 5574:1 5607:1 5717:1 5884:1 5995:1 6060:1 6160:1 6351:1 6478:1 6687:1 6759:1 6833:1 6843:3 7183:1 7213:1 7303:1 7319:1 7348:1 7360:2 7408:1 7452:5 7456:1 7546:1 7599:1 7608:1 7627:1 7684:1 7846:1 7850:1 8031:1 8074:1 8160:1 8195:1 8303:1 8338:1 8355:1 8506:1 8538:1 8619:1 8652:1 8653:1 8662:1 8675:1 8807:1 8832:1 8833:2 9089:1 9275:1 9325:1 9337:1 9534:1 9644:1 9675:2 9710:1 9719:2 9823:1 9960:1 10325:1 10429:1 10544:1 10553:1 10724:1 10749:1 10829:1 10832:2 10833:1 10860:1 10921:4 10936:1 10937:1 10961:1 11040:1 11077:1 11079:1 11095:1 11112:1 11126:1 11236:1 11261:1 11518:1 11601:1 11689:1 11698:1 11942:1 11991:1 12086:1 12102:1 12235:2 12286:1 12333:1 12579:1 12586:1 12700:1 12771:1 12811:1 12872:1 12911:1 12968:1 13024:1 13143:1 13289:1 13307:1 13381:1 13459:1 13532:1 13617:1 13651:1 13657:1 13677:1 13693:1 13764:1 13858:1 13908:1 13983:1 14041:2 14213:1 14411:1 14501:1 14549:1 14562:1 14812:1 14926:1 14936:2 15017:1 15023:1 15060:1 15192:1 15281:1 15287:2 15301:1 15339:1 15396:1 15412:2 15463:1 15548:1 15714:1 15733:1 15766:1 15792:1 15824:1 16004:1 16027:1 16036:1 16101:1 16261:1 16308:1 16366:1 16387:1 16471:1 16482:1 16486:1 16581:1 16680:1 16695:1 16712:1 16742:3 16917:1 16919:1 17339:1 17386:1 17401:1 17447:1 17490:1 17524:1 17594:1 17775:1 17798:1 17811:1 17858:1 17861:1 17865:1 17918:1 17939:1 17998:1 18211:1 18257:1 18369:1 18393:1 18416:1 18497:1 18550:1 18564:1 18617:1 18760:1 18890:1 18999:1 19005:1 19060:1 19061:2 19081:1 19086:1 19138:1 19180:1 19319:1 19441:1 19535:1 19567:1 19608:1 19665:1 19740:1 19831:2 19884:1 20048:1 20071:1 20111:1 20315:1 20329:1 20351:1 20396:1 20460:1 20486:2 20632:1 20700:1 20705:3 20715:3 20748:1 12 129:1 141:1 173:1 180:1 265:1 273:1 277:1 356:1 394:1 496:1 549:1 572:1 588:1 590:1 593:1 595:1 627:1 668:2 701:1 710:1 765:1 795:1 809:1 925:1 1023:2 1050:1 1079:1 1089:1 1131:2 1329:1 1340:1 1352:1 1360:1 1369:1 1394:1 1408:2 1439:1 1507:1 1521:1 1607:1 1629:1 1691:1 1721:2 1813:1 1855:1 1861:1 1930:1 1972:1 2025:1 2052:1 2053:1 2061:1 2190:1 2329:1 2404:1 2412:1 2449:1 2464:1 2487:1 2498:1 2613:1 2655:1 2677:1 2693:1 2728:1 2850:1 2911:1 2933:1 3077:1 3118:1 3124:2 3128:1 3178:1 3197:1 3202:1 3207:1 3208:1 3220:1 3285:1 3302:1 3314:1 3331:1 3365:1 3505:1 3557:1 3716:1 3731:1 3790:1 3865:1 3963:1 3978:1 3987:1 4089:1 4105:1 4185:1 4188:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4308:1 4334:1 4619:1 4648:1 4730:1 4745:1 4771:1 4950:1 4979:1 5020:1 5064:1 5083:1 5100:1 5182:1 5185:1 5209:1 5341:1 5442:2 5458:1 5470:2 5509:324 5512:1 5574:1 5607:1 5717:1 5816:1 5884:1 5913:1 5995:1 6060:1 6160:1 6351:1 6478:1 6687:1 6759:2 6833:1 6843:3 6864:1 6874:1 7000:1 7039:1 7183:1 7213:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:2 7450:1 7452:6 7456:1 7546:2 7553:1 7599:1 7608:1 7627:1 7684:1 7846:1 7850:1 8031:1 8074:1 8160:1 8195:1 8237:1 8303:1 8329:1 8338:1 8346:1 8355:1 8506:1 8538:1 8619:1 8642:1 8652:1 8653:1 8662:1 8675:1 8709:1 8807:1 8825:1 8832:1 8833:2 9089:1 9275:1 9325:1 9337:1 9397:1 9460:1 9534:1 9595:1 9644:1 9675:2 9710:1 9719:2 9758:1 9823:1 9960:1 10002:1 10325:1 10429:1 10544:2 10553:1 10724:1 10749:1 10829:2 10832:2 10833:1 10860:1 10921:6 10936:1 10937:1 10961:1 10965:1 11040:1 11077:1 11079:1 11095:1 11112:1 11126:1 11236:1 11251:1 11255:1 11261:1 11518:1 11581:1 11601:1 11689:1 11698:1 11942:1 11991:1 12010:1 12086:1 12102:1 12170:1 12235:2 12286:1 12295:1 12333:1 12548:1 12579:1 12586:1 12700:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 13024:1 13143:1 13266:1 13289:1 13307:1 13381:1 13389:1 13459:1 13532:1 13617:2 13651:1 13657:1 13677:1 13693:1 13764:1 13787:1 13858:1 13908:1 13949:2 13983:1 14041:2 14213:1 14411:1 14501:1 14549:1 14562:1 14716:1 14739:1 14812:1 14926:1 14936:2 15017:2 15023:2 15060:1 15192:1 15224:1 15281:1 15287:2 15301:1 15339:1 15396:1 15412:2 15463:1 15548:1 15714:1 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 16004:1 16027:1 16036:2 16101:1 16261:1 16308:1 16349:1 16366:1 16387:1 16471:1 16482:1 16486:1 16581:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:1 16917:1 16919:1 17339:1 17386:1 17401:1 17418:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17594:1 17775:1 17798:1 17811:1 17814:1 17858:1 17861:1 17865:1 17918:1 17939:1 17980:1 17998:1 18044:1 18211:1 18257:1 18359:1 18369:1 18393:1 18416:1 18462:1 18497:1 18550:1 18564:1 18617:1 18724:1 18760:1 18808:1 18890:1 18999:1 19005:2 19060:2 19061:3 19081:1 19086:1 19136:1 19138:1 19180:1 19319:1 19359:1 19361:1 19441:1 19535:1 19567:1 19608:1 19665:1 19740:1 19804:1 19812:1 19831:2 19884:1 20048:1 20071:1 20073:1 20111:1 20315:1 20329:1 20351:1 20373:1 20385:1 20396:1 20460:1 20486:2 20632:1 20700:1 20705:3 20715:3 20748:1 12 129:1 141:1 173:1 180:1 265:1 273:1 277:1 356:2 394:1 496:1 549:1 572:1 588:1 590:1 593:1 595:1 627:1 668:2 701:1 710:1 765:1 795:1 809:1 925:1 1023:2 1050:1 1074:1 1079:1 1089:1 1131:2 1329:1 1340:1 1352:1 1360:1 1369:1 1394:1 1408:2 1439:1 1507:1 1521:1 1592:1 1607:1 1629:1 1645:1 1691:1 1721:2 1813:1 1855:1 1861:1 1930:1 1972:1 2025:1 2052:1 2053:1 2061:1 2117:1 2190:1 2329:1 2367:1 2404:1 2412:1 2449:1 2464:1 2487:1 2498:1 2613:1 2655:1 2677:1 2693:1 2728:1 2850:1 2911:1 2933:1 3048:1 3077:1 3118:1 3124:2 3128:1 3178:1 3197:1 3202:1 3207:1 3208:1 3220:1 3285:1 3302:1 3314:1 3331:1 3365:1 3505:1 3528:1 3557:1 3586:1 3716:1 3731:1 3790:1 3865:1 3963:2 3978:1 3987:1 4089:1 4105:1 4185:1 4188:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4308:1 4334:1 4607:1 4619:1 4648:1 4730:1 4745:1 4771:1 4950:1 4979:1 5020:1 5064:1 5083:1 5100:1 5182:1 5185:1 5209:1 5337:1 5341:1 5442:2 5458:1 5470:2 5509:372 5512:1 5574:1 5607:1 5717:1 5816:1 5884:1 5913:1 5953:1 5995:1 6060:1 6160:1 6351:1 6478:1 6560:1 6687:1 6759:2 6833:1 6843:3 6864:1 6865:1 6874:1 6935:1 7000:2 7039:2 7183:1 7213:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:3 7450:1 7452:6 7456:1 7546:2 7553:1 7599:1 7608:1 7627:1 7684:1 7815:1 7846:1 7850:1 7984:1 8031:1 8074:1 8160:1 8195:1 8237:1 8303:1 8329:1 8338:1 8346:1 8355:1 8506:1 8538:1 8584:1 8619:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:1 8709:2 8797:1 8807:1 8825:1 8832:1 8833:2 9089:1 9275:1 9325:1 9337:1 9397:1 9460:1 9492:1 9534:1 9595:2 9644:1 9675:2 9710:1 9719:2 9758:1 9823:1 9960:1 10002:1 10006:1 10325:1 10429:1 10493:1 10544:2 10553:1 10724:1 10734:1 10749:1 10829:2 10832:2 10833:1 10860:1 10921:6 10936:1 10937:1 10953:1 10961:1 10965:1 11040:1 11077:1 11079:1 11095:1 11112:1 11126:1 11236:1 11251:1 11255:1 11261:1 11518:1 11581:1 11601:1 11636:1 11689:1 11698:1 11784:1 11942:1 11991:1 12010:1 12086:1 12102:1 12170:1 12235:2 12254:1 12286:1 12295:1 12333:1 12548:1 12579:1 12586:1 12608:1 12700:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 12985:1 13024:1 13143:1 13266:1 13289:1 13307:1 13381:1 13389:1 13459:1 13532:1 13617:2 13651:1 13657:1 13677:1 13693:1 13712:1 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 14041:2 14213:1 14304:1 14411:1 14501:1 14549:1 14562:1 14716:1 14739:1 14790:1 14812:1 14910:1 14926:1 14936:2 15017:2 15023:2 15060:1 15192:1 15224:1 15281:1 15287:2 15301:1 15339:1 15396:1 15412:2 15463:1 15521:1 15548:1 15632:1 15714:1 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 15831:1 15950:1 15961:1 16004:2 16027:1 16036:2 16101:1 16261:1 16308:1 16349:1 16366:1 16387:1 16471:1 16482:1 16486:1 16581:1 16615:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:1 16917:1 16919:1 16945:1 17036:1 17293:1 17339:1 17386:1 17401:1 17418:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17769:1 17770:1 17775:1 17798:1 17811:1 17814:1 17825:1 17845:1 17858:1 17861:1 17865:1 17918:1 17939:1 17980:1 17998:1 18044:1 18211:1 18257:1 18359:1 18369:1 18393:1 18416:1 18462:1 18497:1 18550:1 18564:1 18617:1 18724:1 18760:1 18775:1 18808:1 18838:1 18870:1 18890:1 18999:1 19005:2 19060:2 19061:3 19081:1 19086:1 19136:1 19138:1 19180:1 19319:1 19359:1 19361:1 19441:1 19535:1 19567:1 19608:1 19665:1 19740:1 19804:1 19812:1 19831:2 19884:1 19890:1 20048:1 20071:1 20073:1 20111:1 20190:1 20225:1 20315:1 20329:1 20351:1 20373:1 20385:1 20396:1 20460:1 20486:2 20596:1 20632:1 20700:1 20705:3 20715:3 20748:1 12 97:1 129:1 141:1 173:1 180:1 265:1 273:1 277:1 356:2 394:1 407:1 496:1 549:1 572:1 588:1 590:1 593:1 595:1 627:1 668:3 701:1 710:1 765:1 795:1 809:1 925:1 1023:2 1050:1 1074:1 1079:1 1089:1 1106:1 1131:2 1329:1 1340:1 1352:1 1360:1 1369:1 1394:1 1404:1 1408:2 1439:1 1507:1 1521:1 1564:1 1591:1 1592:1 1607:1 1629:1 1645:1 1691:1 1721:2 1807:1 1813:1 1838:1 1855:1 1861:1 1930:1 1972:1 2025:1 2029:1 2052:1 2053:1 2061:1 2117:1 2190:1 2302:1 2329:1 2330:1 2367:1 2404:1 2412:1 2446:1 2449:1 2464:1 2487:1 2498:1 2613:1 2655:1 2677:1 2693:1 2728:1 2824:1 2849:1 2850:1 2911:1 2933:1 3048:1 3077:1 3118:1 3124:2 3128:1 3176:1 3178:1 3197:1 3200:1 3202:1 3207:1 3208:1 3220:1 3256:1 3285:1 3297:1 3302:1 3314:1 3331:1 3365:1 3505:1 3528:1 3557:1 3586:1 3716:1 3731:1 3737:1 3747:1 3790:1 3865:1 3883:3 3963:2 3978:1 3987:1 4024:1 4089:1 4105:1 4185:1 4188:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4308:1 4334:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:1 4730:1 4745:1 4771:1 4950:1 4979:1 5020:1 5064:1 5083:1 5100:2 5120:1 5182:1 5185:1 5209:1 5337:1 5341:1 5356:1 5442:2 5458:1 5470:2 5509:440 5512:1 5574:1 5579:1 5607:1 5717:1 5816:1 5884:1 5913:1 5953:1 5995:1 6060:1 6160:1 6351:1 6478:1 6560:1 6687:1 6759:2 6833:1 6843:3 6864:1 6865:1 6874:1 6891:1 6935:1 7000:2 7039:2 7110:1 7183:1 7213:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:3 7450:1 7452:6 7456:1 7546:2 7553:1 7599:1 7608:1 7627:1 7684:1 7728:1 7762:1 7815:1 7846:1 7850:1 7984:1 8031:1 8074:1 8160:1 8195:1 8237:1 8303:1 8329:1 8338:1 8346:1 8355:1 8506:1 8538:1 8584:1 8619:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:1 8709:2 8797:1 8807:1 8825:1 8832:1 8833:2 8926:1 9089:1 9275:1 9325:1 9337:1 9397:1 9404:1 9460:1 9492:1 9534:1 9595:2 9644:1 9675:2 9684:1 9710:1 9719:2 9758:1 9823:1 9960:1 10002:1 10006:1 10062:2 10215:1 10249:1 10305:1 10325:1 10366:1 10429:1 10493:1 10544:2 10553:1 10655:1 10724:1 10734:1 10749:1 10829:2 10832:3 10833:1 10849:1 10860:1 10921:6 10936:1 10937:1 10953:1 10961:1 10965:1 10975:1 11028:1 11040:1 11053:1 11077:1 11079:2 11095:1 11112:1 11126:1 11236:1 11251:1 11255:1 11261:1 11518:1 11581:1 11601:1 11636:1 11648:1 11689:1 11698:1 11784:1 11942:1 11991:1 12010:1 12074:1 12086:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12235:2 12254:1 12286:1 12295:1 12322:1 12333:1 12387:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12700:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 12979:3 12985:1 13014:1 13024:1 13123:1 13143:1 13231:3 13266:1 13289:1 13307:1 13381:1 13389:1 13459:1 13488:1 13532:1 13568:1 13617:2 13651:1 13657:1 13677:1 13693:1 13712:1 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 14041:2 14213:1 14304:1 14319:1 14411:1 14501:1 14549:1 14562:1 14716:1 14720:1 14739:1 14790:1 14812:1 14910:1 14926:1 14936:2 14943:1 15017:2 15023:2 15060:1 15080:1 15192:1 15224:1 15281:1 15287:2 15301:1 15339:1 15373:1 15396:1 15412:2 15456:1 15463:1 15521:1 15548:1 15632:1 15714:2 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 15831:1 15850:1 15950:1 15961:1 16004:2 16027:1 16036:2 16101:1 16261:2 16308:1 16349:1 16366:1 16387:1 16471:1 16482:1 16486:1 16581:1 16615:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:1 16917:1 16919:1 16945:1 17036:1 17063:1 17293:1 17339:1 17386:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17758:1 17764:1 17769:1 17770:1 17775:1 17798:1 17811:1 17814:1 17825:1 17845:1 17858:1 17861:1 17865:1 17918:1 17939:1 17980:1 17998:1 18044:1 18144:1 18154:1 18211:1 18257:1 18359:1 18369:1 18393:1 18401:1 18416:1 18417:1 18462:1 18497:1 18505:3 18550:1 18564:1 18617:1 18640:1 18724:3 18760:1 18775:1 18808:1 18838:1 18870:1 18890:1 18999:1 19005:2 19060:2 19061:3 19081:1 19086:1 19136:1 19138:1 19155:1 19180:1 19300:1 19319:1 19359:1 19361:1 19441:1 19475:1 19535:1 19543:1 19545:1 19565:2 19567:1 19608:1 19665:1 19740:1 19804:1 19812:1 19818:1 19831:2 19884:1 19890:1 19970:1 20048:1 20071:1 20073:1 20111:1 20190:1 20225:1 20315:1 20329:1 20351:1 20369:1 20373:1 20385:1 20396:1 20451:1 20460:1 20486:2 20596:1 20632:1 20700:1 20705:3 20715:3 20748:1 12 15:1 75:1 97:1 129:1 141:1 173:1 180:1 265:1 273:1 277:1 356:2 394:1 407:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 627:1 668:3 701:1 710:1 765:1 795:1 809:2 842:1 925:1 1023:2 1050:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1329:1 1340:1 1352:1 1360:1 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1507:1 1521:1 1564:1 1591:1 1592:1 1607:1 1629:1 1645:1 1691:1 1721:2 1807:1 1813:1 1838:1 1855:1 1861:1 1930:1 1972:1 2025:1 2029:1 2052:1 2053:1 2061:1 2117:3 2190:1 2302:1 2329:1 2330:1 2367:1 2404:1 2412:1 2439:1 2446:1 2449:1 2464:1 2487:1 2498:1 2537:1 2613:1 2655:2 2677:1 2693:1 2728:1 2824:1 2849:1 2850:1 2911:1 2933:1 3048:1 3077:1 3118:1 3124:2 3128:1 3176:1 3178:1 3197:1 3200:1 3202:1 3207:1 3208:1 3220:1 3256:1 3285:1 3297:1 3302:1 3314:1 3331:1 3354:1 3365:1 3500:1 3505:1 3528:1 3557:1 3586:1 3716:1 3731:1 3737:1 3747:1 3768:1 3790:1 3865:1 3883:3 3943:1 3963:2 3978:1 3987:1 4024:1 4089:1 4105:2 4148:1 4182:1 4185:1 4188:1 4196:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4308:1 4334:1 4573:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:1 4730:1 4745:1 4771:1 4950:1 4979:1 5020:2 5064:1 5083:1 5100:2 5120:1 5182:1 5185:1 5201:1 5209:1 5243:1 5337:1 5341:1 5356:1 5372:1 5442:2 5458:1 5470:2 5509:478 5512:1 5545:1 5574:1 5579:1 5607:1 5667:1 5717:1 5816:1 5884:1 5913:1 5953:1 5995:1 6060:1 6160:1 6351:1 6396:1 6478:1 6560:1 6687:2 6759:2 6833:1 6838:1 6843:3 6864:1 6865:1 6874:1 6886:1 6891:1 6935:1 7000:2 7039:2 7110:1 7183:1 7213:1 7215:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:4 7450:1 7452:6 7456:1 7546:2 7553:1 7599:1 7608:1 7627:1 7684:1 7728:1 7739:1 7762:1 7777:1 7815:1 7846:1 7850:1 7867:1 7884:1 7984:1 8031:1 8074:1 8160:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:1 8365:1 8478:1 8506:1 8538:1 8584:1 8619:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:2 8709:2 8797:1 8807:1 8825:1 8832:1 8833:2 8926:1 9068:1 9089:2 9275:1 9325:1 9337:2 9397:1 9404:1 9460:1 9492:1 9534:1 9595:3 9644:1 9675:2 9684:1 9710:1 9719:2 9758:1 9823:1 9960:1 9973:1 10002:1 10006:1 10062:2 10215:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:1 10553:1 10575:1 10595:1 10627:1 10655:1 10724:1 10734:1 10749:1 10829:2 10832:3 10833:1 10849:1 10856:1 10860:1 10865:1 10921:6 10936:1 10937:1 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11053:1 11077:1 11079:2 11095:1 11112:1 11126:1 11236:1 11251:1 11255:1 11261:1 11518:1 11554:1 11581:1 11601:1 11636:1 11648:1 11689:1 11698:1 11784:1 11899:1 11942:1 11991:1 12010:1 12074:1 12086:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12235:2 12254:1 12286:1 12295:1 12322:1 12333:2 12387:1 12390:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 12979:3 12985:1 13014:1 13024:1 13123:1 13143:2 13231:3 13252:1 13266:1 13289:1 13307:1 13381:1 13389:1 13459:1 13488:1 13532:1 13568:1 13573:1 13616:1 13617:2 13651:1 13657:1 13677:1 13693:1 13712:1 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14213:1 14247:1 14304:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14658:1 14716:1 14720:1 14739:1 14790:2 14812:1 14910:1 14926:1 14936:2 14943:1 15017:2 15023:2 15060:1 15076:1 15080:1 15160:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15373:1 15396:1 15412:3 15456:1 15463:1 15521:1 15548:1 15577:1 15632:1 15714:2 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 15831:1 15850:1 15872:1 15950:1 15961:1 16004:2 16018:1 16027:1 16036:2 16101:1 16106:1 16187:1 16261:2 16276:1 16308:1 16349:1 16366:1 16387:1 16471:1 16482:1 16486:1 16581:1 16615:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:1 16876:1 16909:1 16917:1 16919:1 16945:1 17036:1 17063:1 17161:1 17293:1 17339:1 17386:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17657:1 17696:1 17758:1 17764:1 17769:1 17770:1 17775:1 17798:1 17811:1 17814:1 17825:1 17845:1 17858:1 17861:1 17865:1 17918:1 17939:1 17980:1 17998:1 18044:1 18097:1 18144:1 18154:1 18211:1 18257:1 18359:1 18369:1 18393:1 18401:1 18416:1 18417:1 18462:1 18497:1 18505:3 18550:1 18564:1 18617:1 18640:1 18675:1 18698:1 18724:3 18736:1 18760:1 18775:1 18808:1 18838:1 18855:1 18870:1 18890:1 18933:1 18999:1 19005:2 19060:2 19061:3 19081:1 19086:2 19130:1 19136:1 19138:1 19155:1 19180:1 19300:1 19319:1 19359:1 19361:1 19389:1 19441:1 19475:1 19514:1 19532:1 19535:1 19543:1 19545:1 19565:2 19567:1 19608:1 19665:1 19740:1 19804:1 19812:1 19818:1 19831:2 19884:1 19890:1 19970:1 20048:1 20071:1 20073:1 20111:1 20190:1 20225:1 20246:1 20315:1 20329:1 20351:1 20369:1 20373:1 20385:1 20396:1 20401:1 20451:1 20460:1 20486:2 20596:1 20632:2 20700:1 20705:3 20715:3 20748:1 12 15:1 75:1 97:1 129:1 141:1 158:1 173:1 180:1 265:1 273:1 277:1 356:2 394:1 407:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 627:1 668:3 672:1 701:1 710:1 765:1 795:1 809:2 842:1 925:1 1023:2 1050:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1269:1 1329:2 1340:1 1352:1 1360:1 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1627:1 1629:1 1645:1 1691:1 1721:2 1807:1 1813:1 1838:2 1855:1 1861:1 1885:1 1930:1 1964:1 1972:1 1989:1 2025:1 2029:1 2052:1 2053:1 2061:1 2117:3 2190:1 2252:1 2302:1 2329:1 2330:1 2367:1 2404:1 2412:1 2439:1 2446:1 2449:1 2464:1 2487:1 2498:1 2537:1 2538:1 2607:1 2613:1 2655:2 2677:1 2693:1 2728:1 2731:1 2748:1 2824:1 2849:1 2850:1 2903:1 2911:1 2933:1 3048:1 3067:1 3077:1 3118:1 3124:2 3128:1 3138:1 3176:1 3178:1 3197:1 3200:1 3202:1 3205:1 3207:1 3208:1 3220:2 3221:1 3233:1 3256:1 3285:1 3297:1 3302:1 3314:1 3331:1 3354:1 3365:1 3500:1 3505:1 3528:1 3557:1 3586:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3790:1 3865:1 3883:3 3943:1 3963:2 3978:1 3987:1 4024:1 4089:1 4105:2 4148:1 4182:1 4185:1 4188:1 4196:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4297:1 4306:1 4308:1 4334:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:2 4730:1 4745:1 4750:1 4771:1 4950:1 4979:1 5020:2 5064:1 5083:1 5100:2 5120:1 5182:1 5185:1 5201:1 5209:1 5243:1 5298:1 5337:1 5341:1 5348:1 5356:1 5372:1 5442:2 5458:1 5470:2 5480:1 5509:517 5512:1 5545:1 5574:1 5579:1 5607:1 5667:1 5717:1 5816:1 5884:1 5913:1 5925:1 5953:1 5995:1 6060:1 6160:1 6175:1 6178:1 6327:1 6351:1 6386:1 6396:1 6438:1 6478:1 6560:1 6687:2 6759:2 6833:1 6838:1 6843:3 6864:1 6865:1 6874:1 6886:1 6891:1 6935:1 7000:2 7039:2 7110:1 7183:1 7205:1 7213:1 7215:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:4 7450:1 7452:6 7456:1 7546:2 7553:1 7599:1 7608:1 7627:1 7684:1 7728:1 7739:1 7762:2 7777:1 7815:1 7846:1 7850:1 7856:1 7867:1 7884:1 7984:1 8010:1 8031:1 8074:1 8160:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:1 8365:1 8478:1 8506:1 8538:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:2 8709:2 8797:1 8803:1 8807:1 8825:1 8832:2 8833:2 8926:1 9068:1 9072:1 9089:2 9275:1 9325:1 9337:2 9397:1 9404:1 9460:1 9492:1 9534:2 9595:3 9644:1 9675:2 9684:1 9691:1 9710:1 9719:2 9758:1 9823:1 9960:1 9973:1 10002:1 10006:1 10062:2 10197:1 10215:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:1 10553:2 10567:1 10575:1 10595:1 10627:1 10655:1 10724:1 10734:1 10749:1 10797:1 10829:3 10832:3 10833:2 10849:1 10856:1 10860:1 10865:1 10921:9 10936:1 10937:1 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11053:1 11077:1 11079:2 11095:1 11112:1 11126:1 11236:1 11251:1 11255:1 11261:1 11404:1 11438:1 11518:1 11554:1 11581:1 11601:1 11636:1 11648:1 11689:1 11698:2 11784:1 11899:1 11909:1 11942:1 11991:1 12010:1 12020:1 12074:1 12086:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12235:2 12254:1 12286:1 12295:1 12322:1 12333:2 12359:1 12387:1 12390:1 12431:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 12979:3 12985:1 13014:1 13024:1 13123:1 13139:1 13143:2 13191:1 13231:3 13252:1 13266:1 13289:1 13307:1 13381:1 13389:1 13431:1 13459:1 13488:2 13532:1 13558:1 13568:1 13573:1 13616:1 13617:3 13651:1 13657:1 13677:1 13693:1 13712:2 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14053:1 14125:1 14175:1 14213:1 14247:1 14304:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14716:2 14720:1 14739:1 14790:2 14812:1 14910:1 14926:1 14936:3 14943:1 14970:1 15017:2 15023:2 15055:1 15060:1 15076:1 15080:1 15160:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15373:1 15396:1 15412:3 15456:1 15463:1 15521:1 15548:1 15577:1 15632:1 15714:2 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 15831:1 15850:1 15872:1 15950:1 15961:1 16004:2 16018:1 16027:1 16036:2 16045:1 16101:1 16106:1 16133:1 16187:1 16261:2 16276:1 16308:1 16349:1 16366:1 16387:1 16456:1 16471:1 16482:1 16486:1 16581:1 16615:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:1 16876:1 16909:1 16917:1 16919:1 16928:1 16945:1 16997:1 17036:1 17063:2 17161:1 17293:1 17339:1 17386:1 17400:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17657:1 17696:1 17758:2 17764:1 17769:1 17770:1 17775:2 17798:1 17811:1 17814:1 17825:1 17845:1 17858:1 17861:1 17865:1 17889:1 17918:1 17939:1 17980:1 17998:1 18044:1 18097:1 18144:1 18154:2 18211:1 18231:1 18257:1 18359:1 18369:1 18389:1 18393:1 18401:1 18416:1 18417:1 18462:1 18497:1 18505:3 18550:1 18564:1 18613:1 18617:1 18640:1 18675:1 18698:1 18724:3 18736:1 18760:1 18775:1 18808:1 18838:1 18855:1 18870:1 18890:1 18933:1 18999:1 19005:3 19060:2 19061:4 19081:1 19086:2 19130:1 19136:1 19138:1 19155:1 19180:1 19300:1 19319:1 19359:1 19361:1 19389:1 19441:1 19475:1 19514:1 19532:1 19535:1 19543:1 19545:1 19565:2 19567:1 19607:1 19608:1 19665:1 19740:1 19768:1 19804:1 19812:1 19818:2 19831:2 19884:1 19890:1 19901:1 19970:1 20048:1 20071:1 20073:1 20077:1 20111:1 20190:1 20225:1 20246:1 20270:1 20315:1 20329:1 20351:1 20369:1 20373:1 20385:1 20396:1 20401:1 20451:1 20460:1 20486:2 20596:1 20632:2 20700:1 20705:3 20709:1 20715:3 20748:1 12 15:1 75:1 97:1 129:1 141:1 158:1 173:1 180:1 265:1 273:1 277:1 356:2 394:1 407:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 627:1 668:3 669:1 672:1 701:1 710:1 765:1 795:1 809:2 842:1 925:1 1023:2 1050:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1142:1 1185:1 1269:1 1329:2 1340:1 1352:1 1360:1 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1627:1 1629:1 1645:1 1691:1 1721:2 1807:1 1813:1 1838:2 1855:1 1861:1 1885:1 1930:1 1964:1 1972:1 1989:1 2025:1 2029:1 2052:1 2053:1 2061:1 2117:3 2190:1 2252:1 2302:1 2329:1 2330:1 2367:1 2404:1 2412:1 2439:1 2446:1 2449:1 2464:1 2487:1 2498:1 2537:1 2538:1 2607:1 2613:1 2655:2 2677:1 2693:1 2728:1 2731:1 2748:1 2824:1 2849:1 2850:1 2903:1 2911:1 2933:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3178:1 3197:1 3200:1 3202:1 3205:1 3207:1 3208:1 3220:2 3221:1 3233:1 3256:1 3285:1 3297:1 3302:1 3314:1 3331:1 3354:1 3365:1 3500:1 3505:1 3528:1 3557:1 3586:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3790:1 3865:1 3883:3 3943:1 3963:2 3978:1 3987:1 4018:1 4024:1 4089:1 4105:2 4148:1 4182:1 4185:1 4188:1 4196:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4297:1 4306:1 4308:1 4334:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:2 4730:1 4745:1 4750:1 4771:1 4926:1 4950:1 4979:1 5020:2 5064:1 5083:1 5100:2 5120:1 5182:1 5185:1 5201:1 5209:1 5243:1 5298:1 5337:1 5341:1 5348:1 5356:1 5372:1 5442:2 5458:1 5470:2 5480:1 5509:574 5512:1 5545:1 5574:1 5579:1 5607:1 5667:1 5717:1 5816:1 5884:1 5913:2 5925:1 5953:1 5995:1 6060:1 6160:1 6175:1 6178:1 6327:1 6351:1 6386:1 6396:1 6438:1 6478:1 6560:1 6687:2 6759:3 6833:1 6838:1 6843:3 6864:1 6865:1 6874:1 6886:1 6891:1 6935:1 7000:2 7039:2 7110:1 7183:1 7205:1 7213:1 7215:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:4 7450:1 7452:6 7456:1 7546:2 7553:1 7599:1 7608:1 7627:1 7684:1 7728:1 7739:1 7762:2 7777:1 7815:1 7846:1 7850:1 7856:1 7867:1 7884:1 7984:1 8010:1 8031:1 8074:1 8160:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:1 8365:1 8478:1 8506:1 8538:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:2 8709:2 8797:1 8803:1 8807:1 8825:1 8832:2 8833:2 8926:2 9068:1 9072:1 9089:2 9275:1 9325:1 9337:2 9397:1 9404:1 9460:1 9492:1 9534:2 9595:3 9644:1 9675:2 9684:1 9691:1 9710:1 9719:2 9758:1 9823:1 9960:1 9973:1 10002:1 10006:1 10062:2 10197:1 10215:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:1 10553:2 10567:1 10575:1 10595:1 10627:1 10655:1 10724:1 10734:1 10749:1 10797:1 10829:3 10832:3 10833:2 10849:1 10856:1 10860:1 10865:1 10921:9 10936:1 10937:1 10939:1 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11053:1 11077:1 11079:2 11095:1 11112:1 11126:1 11236:1 11251:2 11255:1 11261:1 11404:1 11438:1 11518:1 11554:1 11581:1 11601:1 11636:1 11648:1 11689:1 11698:2 11784:1 11899:1 11909:1 11942:1 11991:1 12010:1 12020:1 12074:1 12086:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12235:2 12254:1 12286:1 12295:1 12322:1 12333:2 12359:1 12387:1 12390:1 12431:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 12979:3 12985:1 13014:1 13024:1 13123:1 13139:1 13143:2 13191:1 13231:3 13252:1 13266:1 13289:1 13307:1 13381:1 13389:1 13431:1 13459:1 13488:2 13532:1 13537:1 13558:1 13568:1 13573:1 13616:1 13617:3 13651:1 13657:1 13677:1 13693:1 13712:2 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14053:1 14125:1 14175:1 14213:1 14247:1 14304:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14716:2 14720:1 14739:1 14784:1 14790:2 14812:1 14910:1 14926:1 14936:3 14943:1 14970:1 15017:2 15023:2 15055:1 15060:1 15076:1 15080:1 15160:1 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15373:1 15396:1 15412:3 15456:1 15463:1 15521:1 15548:1 15577:1 15632:1 15714:2 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 15831:1 15850:1 15872:1 15950:1 15961:1 16004:2 16018:1 16027:1 16036:2 16045:1 16101:1 16106:1 16133:1 16187:1 16261:2 16276:1 16308:1 16349:1 16366:1 16387:1 16456:1 16471:1 16482:1 16486:1 16581:1 16615:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:1 16919:1 16928:1 16945:1 16997:1 17036:1 17063:2 17161:1 17293:1 17339:1 17386:1 17400:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17637:1 17657:1 17696:1 17758:2 17764:1 17769:1 17770:1 17775:2 17779:1 17798:1 17811:1 17814:1 17825:1 17845:1 17858:1 17861:1 17865:1 17889:1 17918:1 17939:1 17980:1 17998:1 18044:1 18097:1 18144:1 18154:2 18211:1 18231:1 18257:1 18283:1 18359:1 18369:1 18389:1 18393:1 18401:1 18416:1 18417:1 18462:1 18497:1 18505:3 18550:1 18564:1 18613:1 18617:1 18640:1 18675:1 18698:1 18724:3 18736:1 18760:1 18775:1 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18999:1 19005:3 19060:2 19061:4 19081:1 19086:2 19130:1 19134:1 19136:1 19138:1 19155:1 19180:1 19300:1 19319:1 19359:1 19361:1 19389:1 19441:1 19475:1 19514:1 19532:1 19535:1 19543:1 19545:1 19565:2 19567:1 19607:1 19608:1 19665:1 19740:1 19768:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:1 19901:1 19970:1 20048:1 20071:1 20073:1 20077:1 20111:1 20190:1 20225:1 20246:1 20270:1 20315:1 20329:1 20351:1 20369:1 20373:2 20385:1 20396:1 20401:1 20451:1 20460:1 20486:2 20596:1 20632:2 20700:1 20705:3 20709:1 20715:3 20748:1 12 15:1 75:1 97:1 129:1 141:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 356:2 394:1 407:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 627:2 668:3 669:1 672:1 701:1 710:1 765:1 795:1 809:2 842:1 925:1 926:1 1023:2 1038:1 1050:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1142:1 1185:1 1233:1 1269:1 1329:2 1340:1 1352:1 1360:1 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1627:1 1629:1 1645:1 1691:1 1701:1 1721:2 1807:1 1813:1 1838:2 1855:1 1861:1 1885:1 1930:1 1964:2 1972:1 1989:1 2025:1 2029:1 2052:1 2053:1 2061:1 2117:4 2184:1 2186:1 2190:1 2252:1 2302:1 2329:1 2330:1 2334:1 2367:1 2404:1 2412:1 2439:1 2446:1 2449:1 2459:1 2464:1 2487:1 2498:1 2501:1 2537:1 2538:1 2607:1 2613:1 2655:2 2666:1 2677:1 2693:1 2721:1 2728:1 2731:1 2748:1 2824:1 2849:1 2850:2 2853:1 2903:1 2905:1 2911:1 2933:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3178:1 3191:1 3197:2 3200:2 3202:1 3205:1 3207:1 3208:1 3220:2 3221:1 3233:1 3256:1 3285:1 3297:1 3302:1 3314:2 3331:1 3354:1 3365:1 3379:1 3500:1 3505:1 3528:1 3557:1 3586:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3790:1 3865:1 3883:3 3943:1 3963:2 3978:1 3987:1 4018:1 4024:1 4089:1 4105:2 4136:1 4148:1 4182:1 4185:1 4188:1 4196:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4297:1 4306:1 4308:1 4334:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:2 4730:1 4745:1 4750:1 4771:1 4856:1 4917:1 4926:1 4950:1 4979:1 5020:2 5064:1 5083:1 5100:2 5120:1 5182:1 5185:1 5201:1 5209:1 5243:1 5298:1 5337:1 5341:1 5348:1 5356:1 5372:1 5442:2 5458:1 5470:2 5480:1 5509:622 5512:1 5545:1 5574:1 5579:1 5607:1 5667:1 5685:1 5717:1 5815:2 5816:1 5884:1 5913:2 5925:1 5953:1 5995:1 6060:1 6160:1 6175:1 6178:1 6327:1 6351:1 6386:1 6396:1 6438:1 6478:1 6560:1 6687:4 6735:1 6759:3 6796:1 6833:1 6838:1 6843:3 6864:1 6865:1 6874:1 6886:1 6891:1 6935:1 7000:2 7039:2 7093:1 7110:1 7183:1 7205:1 7213:1 7215:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:4 7450:1 7452:7 7456:1 7546:2 7552:1 7553:1 7599:1 7608:1 7627:1 7684:1 7728:1 7739:1 7762:2 7777:1 7815:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7984:1 8010:1 8031:1 8074:1 8160:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8478:1 8506:1 8538:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:2 8709:2 8797:1 8803:1 8807:1 8825:1 8827:1 8832:2 8833:2 8926:2 9068:1 9072:1 9089:2 9139:1 9210:1 9275:1 9325:1 9337:2 9397:1 9404:1 9441:1 9460:1 9492:1 9534:2 9595:3 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:2 9721:1 9758:1 9823:1 9960:1 9973:1 10002:1 10006:1 10062:2 10197:1 10202:1 10215:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:2 10548:1 10553:2 10567:1 10575:1 10595:1 10627:1 10655:1 10724:1 10734:1 10749:1 10785:1 10797:2 10829:3 10832:3 10833:2 10849:1 10856:1 10860:1 10865:1 10921:11 10936:1 10937:1 10939:1 10948:1 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11053:1 11064:1 11077:1 11079:2 11095:1 11112:1 11126:1 11205:1 11236:1 11251:2 11255:1 11261:1 11331:1 11404:2 11438:1 11518:1 11554:1 11581:1 11601:1 11636:1 11648:1 11689:1 11698:3 11784:1 11899:1 11909:1 11942:1 11991:1 12010:1 12020:1 12074:1 12086:1 12088:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12235:2 12254:1 12286:1 12295:1 12322:1 12333:2 12359:1 12387:1 12390:1 12431:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12899:1 12911:1 12950:1 12968:1 12979:3 12985:1 13014:1 13024:1 13123:1 13139:1 13143:2 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13307:1 13381:1 13389:1 13431:1 13459:1 13474:1 13488:2 13532:1 13537:1 13558:1 13568:1 13573:1 13616:1 13617:3 13651:1 13657:1 13663:1 13677:1 13693:1 13712:2 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14053:1 14125:1 14175:1 14213:1 14247:1 14304:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14716:2 14720:1 14739:1 14756:1 14784:1 14790:3 14812:1 14910:1 14926:1 14936:3 14943:1 14970:1 15017:2 15023:2 15031:1 15055:1 15060:1 15076:1 15080:1 15160:1 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15373:1 15396:1 15412:3 15456:1 15463:1 15521:1 15548:1 15550:1 15577:1 15632:1 15714:3 15733:1 15756:1 15766:1 15792:1 15798:1 15824:1 15831:1 15850:1 15872:1 15949:1 15950:1 15961:1 16004:2 16013:1 16018:1 16020:1 16027:1 16036:2 16045:1 16101:1 16106:1 16133:1 16187:1 16255:1 16261:2 16272:1 16276:1 16281:1 16308:1 16349:1 16366:1 16387:1 16456:1 16471:1 16482:1 16486:1 16581:1 16615:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:1 16919:1 16928:1 16945:1 16997:1 17036:1 17063:2 17161:1 17293:1 17339:1 17386:1 17400:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17637:1 17657:1 17670:1 17696:1 17758:2 17764:1 17769:1 17770:1 17775:2 17779:1 17798:1 17811:1 17814:1 17825:1 17835:1 17845:1 17858:1 17861:1 17865:1 17889:1 17918:1 17939:1 17980:1 17998:1 18044:1 18097:1 18144:1 18154:2 18194:1 18211:1 18231:1 18257:1 18283:1 18359:1 18369:1 18389:1 18393:1 18401:1 18416:1 18417:1 18462:1 18497:1 18505:3 18550:1 18564:1 18613:1 18617:1 18640:1 18675:1 18698:1 18724:3 18736:1 18760:1 18775:1 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18999:1 19005:3 19060:2 19061:4 19081:1 19086:2 19130:1 19134:1 19136:1 19138:1 19155:1 19180:1 19300:1 19319:1 19359:1 19361:1 19389:1 19418:1 19441:1 19475:1 19514:1 19532:1 19535:1 19543:1 19545:1 19565:2 19567:1 19607:1 19608:1 19665:1 19740:1 19768:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:1 19901:1 19970:1 20048:1 20071:1 20073:1 20077:1 20111:1 20184:1 20190:1 20225:1 20246:1 20270:1 20315:1 20329:1 20339:1 20351:1 20369:1 20373:2 20385:1 20396:1 20401:1 20451:1 20460:1 20486:2 20596:1 20632:2 20700:1 20705:3 20709:1 20715:3 20748:1 12 15:1 75:1 97:1 129:1 141:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 356:2 394:1 407:1 473:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 627:2 668:3 669:1 672:1 701:1 710:1 765:1 795:1 809:2 842:1 925:1 926:1 1023:2 1038:1 1050:1 1073:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1142:1 1185:1 1233:1 1269:1 1329:2 1340:1 1352:1 1360:1 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:1 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1807:1 1813:1 1838:2 1855:1 1861:1 1885:1 1930:1 1964:2 1972:1 1989:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:1 2117:4 2184:1 2186:2 2190:1 2252:1 2302:1 2329:1 2330:1 2334:1 2367:1 2404:1 2412:1 2439:1 2446:1 2449:1 2459:1 2464:1 2487:1 2498:1 2501:1 2537:1 2538:2 2607:1 2613:1 2655:2 2666:1 2677:1 2693:1 2721:1 2728:1 2731:1 2748:2 2824:1 2849:1 2850:2 2853:1 2903:1 2905:1 2911:1 2933:1 2998:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3178:1 3191:1 3197:2 3200:2 3202:1 3205:1 3207:1 3208:1 3214:1 3220:2 3221:1 3233:1 3256:1 3285:1 3297:1 3302:1 3314:2 3331:1 3354:1 3365:1 3372:1 3379:1 3500:1 3505:1 3508:1 3528:1 3557:1 3586:2 3668:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3865:1 3883:3 3943:1 3963:2 3978:1 3987:1 3992:1 4018:1 4024:1 4089:1 4105:2 4136:1 4148:2 4182:1 4185:1 4188:1 4196:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4297:1 4306:1 4308:1 4334:1 4371:1 4407:1 4460:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:2 4730:1 4745:1 4750:1 4771:1 4856:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5083:1 5100:3 5120:1 5182:1 5185:1 5201:1 5209:1 5243:1 5253:1 5298:1 5337:1 5341:1 5348:1 5356:1 5372:1 5442:2 5458:1 5470:2 5480:1 5497:1 5509:668 5512:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5717:1 5815:2 5816:1 5884:1 5913:2 5925:1 5953:1 5995:1 6060:1 6160:1 6175:1 6178:1 6327:1 6351:1 6386:1 6396:1 6438:1 6478:1 6560:1 6673:1 6687:4 6735:1 6759:4 6796:1 6833:1 6838:1 6843:3 6864:1 6865:1 6874:1 6886:1 6891:1 6935:1 7000:2 7039:2 7093:1 7110:1 7183:1 7205:1 7213:1 7215:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:5 7450:1 7452:7 7456:1 7546:2 7552:1 7553:1 7599:1 7608:1 7627:1 7637:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7984:1 8010:1 8031:1 8074:1 8160:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8506:1 8538:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:2 8709:2 8797:1 8803:1 8807:1 8825:1 8827:1 8832:2 8833:2 8837:1 8926:2 9068:1 9072:1 9089:2 9139:1 9210:1 9275:1 9325:1 9337:2 9397:1 9404:1 9441:1 9460:1 9492:1 9534:2 9595:3 9614:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:2 9721:1 9758:1 9823:1 9960:1 9973:1 10002:1 10006:1 10057:1 10062:2 10197:1 10202:1 10215:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:2 10548:1 10553:2 10567:1 10575:1 10595:1 10627:1 10655:1 10724:1 10734:1 10749:1 10785:1 10797:2 10829:3 10832:3 10833:2 10839:1 10849:1 10856:1 10860:1 10865:1 10921:11 10936:1 10937:1 10939:1 10948:1 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11053:1 11064:1 11077:1 11079:2 11095:1 11112:1 11126:1 11205:1 11236:1 11251:2 11255:1 11261:1 11331:1 11404:2 11438:1 11518:1 11554:1 11581:1 11601:1 11636:1 11648:1 11689:1 11698:4 11715:1 11721:1 11784:1 11899:1 11909:1 11918:1 11942:1 11991:1 12010:1 12020:1 12074:1 12086:1 12088:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12235:2 12254:1 12286:1 12295:1 12322:1 12333:2 12359:1 12387:1 12390:1 12431:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12875:1 12899:1 12911:1 12950:1 12968:1 12979:3 12985:1 13014:1 13024:1 13045:1 13092:1 13123:1 13139:1 13143:2 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13307:1 13328:1 13381:1 13389:1 13431:1 13459:1 13474:1 13488:2 13532:1 13537:1 13558:1 13564:1 13566:2 13568:1 13573:1 13594:1 13616:1 13617:3 13651:1 13657:1 13663:1 13672:1 13677:1 13693:1 13712:3 13740:1 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14053:1 14125:1 14175:2 14213:1 14232:1 14247:1 14304:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14716:2 14720:1 14739:1 14756:1 14784:1 14790:3 14807:1 14812:1 14833:1 14910:1 14926:1 14936:3 14943:1 14970:1 15017:2 15023:2 15031:1 15055:1 15060:1 15076:1 15080:1 15160:1 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15373:1 15396:1 15412:3 15456:1 15463:1 15521:1 15548:1 15550:1 15577:1 15620:1 15632:1 15714:4 15733:1 15756:1 15766:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15949:1 15950:1 15961:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:1 16101:1 16106:1 16133:1 16147:1 16187:1 16255:1 16261:3 16272:1 16276:1 16281:1 16308:1 16331:1 16349:1 16366:1 16387:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:1 16919:1 16928:1 16945:1 16997:1 17001:1 17036:1 17063:2 17161:1 17164:1 17211:1 17293:1 17339:1 17386:1 17400:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17601:1 17637:1 17657:1 17670:1 17696:1 17758:2 17764:1 17769:1 17770:1 17775:2 17779:1 17795:1 17798:1 17811:1 17812:1 17814:1 17825:1 17835:1 17845:2 17849:1 17858:1 17861:1 17865:1 17881:1 17889:1 17918:1 17939:1 17980:1 17989:1 17998:1 18044:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:1 18257:1 18283:1 18359:1 18369:1 18389:1 18393:1 18401:1 18416:1 18417:1 18462:1 18497:1 18505:3 18514:1 18550:1 18564:1 18608:1 18613:1 18617:1 18640:1 18675:1 18698:1 18724:3 18736:1 18760:1 18775:2 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18999:1 19005:3 19060:2 19061:4 19081:1 19086:2 19130:1 19134:1 19136:1 19138:1 19155:1 19180:1 19300:1 19319:1 19359:1 19361:1 19389:1 19418:1 19441:1 19475:1 19514:1 19532:1 19535:1 19543:1 19545:1 19565:2 19567:1 19607:1 19608:1 19665:1 19740:1 19768:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:1 19901:1 19970:1 20048:1 20071:1 20073:1 20077:1 20111:1 20184:1 20190:1 20225:1 20246:1 20270:1 20315:1 20329:1 20339:1 20351:1 20369:1 20373:2 20385:1 20396:1 20401:1 20436:1 20451:1 20460:1 20486:2 20596:1 20632:2 20700:1 20705:3 20709:1 20715:3 20748:1 12 15:1 75:1 97:1 129:1 141:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 356:2 394:1 407:1 473:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 627:2 667:1 668:3 669:1 672:1 701:1 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 1023:2 1038:1 1050:1 1073:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1142:1 1185:1 1233:1 1265:1 1269:1 1329:2 1340:1 1352:1 1360:2 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:1 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:1 1861:1 1885:1 1889:1 1930:1 1964:2 1972:1 1989:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:1 2117:4 2184:1 2186:2 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2439:1 2446:1 2449:1 2459:1 2464:1 2487:1 2498:1 2501:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2693:1 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2849:1 2850:2 2853:1 2903:1 2905:1 2911:1 2933:1 2998:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3178:1 3189:1 3190:1 3191:1 3197:2 3200:2 3202:1 3205:1 3207:1 3208:1 3214:1 3220:2 3221:1 3233:1 3256:1 3285:1 3297:1 3302:1 3314:2 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:1 3557:1 3586:2 3668:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3865:1 3883:3 3943:1 3963:2 3978:1 3987:1 3992:1 4018:1 4024:1 4089:1 4105:2 4136:2 4148:2 4182:1 4185:1 4188:1 4196:1 4252:1 4254:1 4256:1 4278:1 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4371:1 4407:1 4460:1 4517:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4648:1 4681:2 4703:1 4730:1 4745:1 4750:1 4771:1 4856:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5083:1 5096:1 5100:4 5120:1 5182:1 5185:1 5201:1 5209:1 5243:1 5253:1 5298:1 5337:1 5341:2 5348:1 5356:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:757 5512:1 5516:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5717:1 5815:2 5816:1 5884:1 5913:2 5925:1 5953:1 5995:1 6060:1 6160:1 6175:1 6178:1 6327:1 6351:1 6386:1 6396:1 6410:1 6438:1 6478:1 6560:1 6673:1 6687:4 6735:1 6759:4 6796:1 6833:1 6838:1 6843:4 6864:1 6865:1 6874:1 6885:1 6886:1 6891:1 6935:1 6961:1 7000:2 7039:2 7093:1 7110:1 7183:1 7192:1 7205:1 7213:1 7215:2 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:5 7450:1 7452:7 7456:1 7546:2 7552:1 7553:1 7599:1 7608:1 7627:1 7637:1 7647:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7941:1 7984:1 8010:1 8031:2 8074:1 8160:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8506:1 8538:1 8542:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8675:1 8691:1 8707:2 8709:2 8797:1 8803:1 8807:1 8809:1 8825:1 8827:1 8832:2 8833:3 8837:1 8926:2 9068:1 9072:1 9089:2 9139:1 9143:1 9210:1 9275:1 9325:1 9334:1 9337:2 9375:1 9397:1 9404:1 9417:1 9441:1 9460:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:3 9721:1 9758:1 9823:1 9960:2 9973:1 10002:1 10006:1 10021:1 10024:1 10057:1 10062:2 10197:1 10202:1 10215:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:2 10548:1 10553:2 10567:1 10575:1 10595:1 10627:1 10655:1 10677:1 10724:1 10734:1 10749:1 10785:1 10797:2 10829:3 10832:3 10833:2 10839:1 10849:1 10856:1 10860:1 10865:1 10921:13 10936:1 10937:1 10939:1 10948:2 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11041:2 11053:1 11064:1 11077:1 11079:2 11095:1 11112:1 11126:1 11205:1 11236:1 11251:2 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11518:1 11554:1 11581:1 11601:2 11636:1 11648:1 11689:1 11698:4 11715:1 11721:1 11784:1 11899:1 11909:1 11918:1 11942:1 11991:1 12010:1 12012:1 12020:1 12053:1 12074:1 12086:1 12088:1 12102:1 12142:1 12167:1 12170:1 12190:1 12219:1 12231:1 12235:2 12254:1 12286:1 12295:1 12300:1 12314:1 12322:1 12333:2 12359:1 12387:1 12390:1 12431:1 12548:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12875:1 12899:1 12911:1 12950:1 12952:1 12968:1 12979:3 12985:1 13014:1 13024:1 13045:1 13092:1 13123:1 13139:1 13143:2 13190:1 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13295:1 13307:1 13328:1 13379:1 13381:1 13389:1 13431:1 13459:1 13474:1 13488:2 13532:1 13537:1 13558:1 13564:1 13566:2 13568:1 13573:1 13594:1 13616:1 13617:3 13651:1 13657:1 13663:1 13672:1 13677:1 13693:1 13712:3 13740:1 13763:1 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14044:1 14053:1 14125:1 14175:2 14213:1 14232:1 14247:1 14254:1 14304:1 14314:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14676:1 14716:2 14720:1 14739:1 14756:1 14784:1 14790:3 14807:1 14812:1 14833:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15017:2 15023:2 15031:1 15055:1 15060:1 15076:1 15080:1 15107:1 15160:1 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15521:1 15548:1 15550:1 15577:1 15620:1 15632:1 15714:4 15733:1 15756:1 15766:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:1 16101:1 16106:1 16130:1 16133:1 16147:1 16187:1 16255:1 16261:4 16272:1 16276:1 16281:1 16308:1 16331:1 16349:1 16366:1 16387:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16997:1 17001:1 17036:1 17063:2 17161:1 17164:1 17205:2 17211:1 17281:1 17293:1 17339:1 17386:1 17400:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17601:1 17637:1 17657:1 17670:1 17696:1 17758:2 17764:1 17769:1 17770:1 17775:2 17779:1 17795:1 17798:1 17811:1 17812:1 17814:1 17825:1 17835:1 17845:2 17849:1 17858:1 17861:1 17865:1 17881:1 17889:1 17897:1 17918:1 17939:1 17980:1 17989:1 17998:1 18044:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:1 18257:1 18283:1 18359:1 18369:1 18389:1 18393:1 18401:1 18416:1 18417:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18608:1 18613:1 18617:2 18640:1 18675:1 18698:1 18724:3 18736:1 18760:1 18775:2 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18999:1 19005:3 19060:2 19061:4 19081:1 19086:2 19130:1 19134:1 19136:1 19138:1 19155:1 19180:1 19196:1 19300:1 19319:1 19359:1 19361:1 19389:1 19418:1 19441:1 19475:1 19514:1 19532:1 19535:1 19543:1 19545:1 19565:2 19567:1 19607:1 19608:1 19614:1 19665:1 19740:1 19768:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:1 19901:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20184:1 20190:1 20225:1 20246:1 20270:1 20315:1 20329:1 20339:1 20351:1 20369:1 20373:2 20385:1 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20596:1 20625:1 20632:2 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 12 15:1 18:1 75:1 97:1 120:1 129:1 141:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 356:2 394:1 407:1 473:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 604:1 627:2 667:1 668:3 669:1 672:1 701:1 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 1023:2 1038:1 1050:2 1073:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1142:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1360:2 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1468:1 1485:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:1 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1923:1 1930:1 1964:2 1972:1 1989:1 1998:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:1 2117:4 2178:1 2184:1 2186:3 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2439:2 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2693:1 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2849:1 2850:2 2853:1 2876:1 2903:1 2905:1 2911:1 2933:1 2998:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:1 3191:1 3197:3 3200:2 3202:1 3205:1 3207:1 3208:1 3214:1 3220:3 3221:1 3233:1 3256:1 3285:1 3297:1 3302:1 3314:2 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:1 3557:1 3586:2 3668:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3865:1 3883:3 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4018:1 4024:1 4089:1 4105:2 4136:3 4148:2 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4252:1 4254:1 4256:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4371:1 4407:1 4460:1 4517:1 4547:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:1 4750:1 4771:1 4856:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5083:1 5091:1 5096:1 5100:4 5120:1 5155:1 5182:1 5185:1 5201:1 5209:1 5243:1 5253:1 5298:1 5337:1 5341:2 5348:1 5356:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:822 5512:1 5516:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5717:1 5815:5 5816:1 5819:1 5884:1 5913:2 5925:1 5953:1 5995:1 6060:1 6117:1 6160:1 6175:1 6178:1 6255:1 6327:1 6351:1 6386:1 6396:1 6410:1 6438:1 6478:1 6560:1 6673:1 6687:4 6735:1 6759:4 6796:1 6833:1 6838:1 6843:4 6864:2 6865:1 6874:1 6885:1 6886:1 6891:1 6935:1 6961:1 7000:2 7039:2 7093:1 7110:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7294:1 7303:1 7319:1 7348:1 7360:2 7408:5 7413:1 7450:1 7452:7 7456:1 7546:2 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7941:1 7984:1 8010:1 8031:2 8074:1 8160:1 8165:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:1 8691:1 8707:2 8709:2 8797:1 8803:1 8807:1 8809:1 8825:1 8827:1 8832:2 8833:3 8837:1 8879:1 8926:2 9060:1 9068:1 9072:1 9089:2 9139:1 9143:1 9210:1 9275:1 9325:1 9334:1 9337:2 9341:1 9363:1 9375:1 9397:1 9404:1 9417:1 9441:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:3 9721:1 9758:1 9823:1 9960:2 9973:1 10002:2 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10197:1 10202:1 10215:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:1 10544:2 10546:2 10548:1 10553:2 10567:1 10575:1 10595:1 10627:1 10642:1 10655:1 10668:1 10677:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:4 10832:3 10833:3 10839:1 10849:1 10856:1 10860:1 10865:1 10921:15 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11041:2 11053:1 11064:1 11077:1 11079:2 11095:1 11112:1 11126:1 11205:1 11236:1 11251:2 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:1 11511:1 11518:1 11554:1 11581:3 11601:2 11633:1 11636:1 11648:1 11689:1 11698:4 11715:1 11721:1 11784:1 11899:1 11909:1 11918:1 11942:1 11991:1 11998:1 12010:1 12012:1 12020:1 12053:1 12073:1 12074:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12219:1 12231:1 12235:2 12254:1 12286:1 12295:1 12300:2 12314:1 12322:1 12333:2 12359:1 12379:1 12387:1 12390:1 12431:1 12453:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12875:1 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:1 13045:1 13092:1 13123:1 13139:1 13143:2 13190:1 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13295:1 13307:1 13328:1 13340:1 13379:1 13381:2 13389:1 13431:1 13459:1 13474:1 13488:2 13532:1 13537:1 13558:1 13564:1 13566:2 13568:1 13573:1 13594:1 13616:1 13617:3 13651:1 13657:1 13663:1 13672:1 13677:1 13693:1 13712:3 13740:1 13763:1 13764:1 13787:2 13858:1 13908:1 13949:2 13983:1 13986:1 14019:1 14041:2 14044:1 14053:1 14125:1 14175:2 14213:1 14232:1 14247:1 14254:1 14304:1 14314:1 14319:1 14411:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14676:1 14716:2 14720:2 14739:1 14746:1 14756:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15017:2 15023:2 15031:1 15055:1 15058:1 15060:1 15076:1 15080:1 15107:1 15160:1 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15490:1 15499:1 15521:1 15548:1 15550:1 15577:1 15620:1 15632:1 15714:4 15719:1 15733:1 15756:1 15766:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:1 16101:1 16106:1 16130:1 16133:1 16147:1 16187:1 16255:1 16261:4 16272:1 16276:1 16281:1 16308:1 16331:1 16349:1 16366:1 16387:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16997:1 17001:1 17026:1 17036:1 17063:2 17161:1 17164:1 17205:2 17211:1 17281:1 17293:1 17318:1 17339:1 17386:1 17400:1 17401:1 17410:1 17418:2 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17601:1 17637:1 17657:1 17670:1 17696:1 17758:2 17764:1 17769:2 17770:1 17775:2 17779:1 17795:1 17798:1 17811:1 17812:1 17814:1 17825:1 17835:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:1 17939:1 17980:1 17989:1 17998:2 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:2 18401:1 18416:1 18417:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18698:1 18717:1 18724:5 18736:1 18760:1 18775:2 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18988:1 18999:1 19005:3 19060:2 19061:5 19081:1 19086:2 19130:1 19134:1 19136:1 19138:2 19155:1 19180:1 19196:1 19300:1 19319:1 19359:1 19361:1 19389:1 19418:1 19441:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19565:2 19567:1 19607:1 19608:1 19614:1 19651:2 19655:1 19665:1 19740:1 19768:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20184:1 20190:1 20225:1 20246:1 20270:1 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20369:1 20373:2 20385:1 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20596:1 20598:1 20625:1 20632:2 20638:1 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 12 15:1 18:1 75:1 97:1 120:2 129:1 141:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 322:1 356:2 394:1 407:1 473:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 604:1 627:2 639:1 667:1 668:3 669:1 672:1 701:1 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 1023:2 1038:1 1050:2 1061:1 1073:1 1074:1 1079:1 1089:1 1093:1 1106:1 1131:2 1142:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:2 1369:1 1394:1 1404:1 1408:2 1415:1 1429:1 1439:1 1468:1 1485:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1923:1 1930:1 1964:2 1972:1 1989:1 1998:1 2014:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:1 2117:4 2178:1 2184:1 2186:3 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2693:1 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2849:1 2850:2 2853:1 2876:1 2903:1 2905:1 2911:1 2933:1 2998:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:1 3191:1 3197:3 3200:2 3202:1 3205:1 3207:1 3208:1 3214:1 3220:3 3221:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:2 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:1 3557:1 3586:3 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3865:1 3883:3 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4089:1 4105:2 4136:3 4148:2 4149:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4252:1 4254:1 4256:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4371:1 4384:1 4407:1 4460:1 4517:1 4547:1 4573:1 4576:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:1 4750:1 4771:1 4856:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5083:1 5091:1 5096:1 5100:4 5120:1 5155:1 5182:1 5185:1 5201:1 5209:1 5243:1 5253:1 5298:1 5337:1 5341:2 5348:1 5356:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:879 5512:1 5516:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5699:1 5717:1 5815:5 5816:1 5819:1 5884:1 5913:2 5925:1 5953:1 5995:1 6060:1 6117:1 6160:1 6175:1 6178:1 6255:1 6327:1 6351:1 6386:1 6396:1 6410:1 6438:1 6478:2 6560:1 6673:1 6687:4 6735:1 6759:4 6796:1 6833:1 6838:1 6843:4 6864:2 6865:1 6868:1 6874:1 6885:1 6886:1 6891:1 6935:1 6961:1 7000:2 7039:2 7093:1 7110:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7291:1 7294:1 7303:1 7306:1 7319:1 7348:1 7360:2 7408:5 7413:1 7450:1 7452:7 7456:1 7546:2 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7941:1 7973:1 7984:1 8010:1 8031:2 8064:1 8074:1 8131:1 8160:1 8165:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8502:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:1 8691:1 8707:2 8709:2 8797:1 8799:1 8803:1 8807:1 8809:1 8814:1 8825:1 8827:1 8832:2 8833:5 8837:1 8879:1 8903:1 8926:2 9060:1 9068:1 9072:1 9089:2 9111:1 9139:1 9143:1 9210:1 9275:1 9281:1 9325:1 9334:1 9337:2 9341:1 9363:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9758:1 9823:1 9960:2 9973:1 10002:2 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10144:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10366:1 10429:1 10493:2 10544:2 10546:2 10548:1 10553:2 10567:2 10575:1 10590:1 10595:1 10627:1 10642:1 10655:1 10668:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:5 10832:3 10833:4 10839:1 10849:2 10856:1 10860:1 10865:1 10909:1 10921:15 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 11028:1 11040:2 11041:2 11053:1 11064:1 11077:1 11079:2 11095:1 11112:1 11126:1 11205:1 11236:1 11251:2 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:1 11511:1 11518:1 11554:1 11581:3 11601:2 11633:1 11636:1 11648:1 11689:1 11698:4 11715:1 11721:1 11784:1 11899:1 11909:1 11918:1 11942:1 11991:1 11998:1 12010:1 12012:1 12020:1 12053:1 12073:1 12074:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12219:1 12231:1 12235:2 12254:1 12259:1 12286:1 12295:1 12300:2 12314:1 12322:1 12333:2 12359:1 12379:1 12387:1 12390:1 12431:1 12453:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12759:1 12771:1 12781:1 12811:1 12872:1 12875:1 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:1 13045:1 13092:1 13123:1 13139:1 13143:2 13190:1 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13295:1 13307:1 13308:1 13328:1 13340:1 13379:1 13381:2 13389:1 13431:1 13459:1 13466:1 13474:1 13488:2 13532:1 13537:1 13558:1 13564:1 13566:2 13568:1 13573:1 13594:2 13616:1 13617:5 13651:1 13657:1 13663:1 13672:1 13677:1 13693:1 13712:3 13740:2 13750:1 13763:1 13764:1 13787:2 13858:1 13900:1 13908:1 13949:2 13983:1 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14175:2 14213:1 14232:1 14247:1 14254:1 14304:1 14314:1 14319:1 14411:1 14465:1 14501:1 14536:1 14549:1 14562:2 14607:1 14658:1 14676:1 14716:2 14720:2 14739:1 14746:1 14756:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15013:1 15017:2 15023:2 15031:1 15055:1 15058:1 15060:1 15076:1 15080:1 15107:1 15160:1 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15490:1 15499:1 15521:1 15548:1 15550:1 15577:1 15620:1 15632:1 15712:1 15714:4 15719:1 15733:1 15756:1 15766:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:2 16101:1 16106:1 16130:1 16133:1 16147:1 16187:1 16255:1 16261:4 16272:1 16276:1 16281:1 16308:1 16331:1 16336:1 16349:1 16366:1 16387:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16967:1 16997:1 17001:1 17026:1 17036:1 17063:2 17161:1 17164:1 17205:2 17211:1 17281:1 17293:1 17318:1 17339:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17601:1 17637:1 17656:1 17657:1 17670:1 17696:1 17758:2 17764:1 17769:2 17770:1 17775:2 17779:1 17795:1 17798:1 17811:1 17812:1 17814:1 17825:1 17835:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:1 17931:1 17939:1 17980:1 17989:1 17998:2 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:1 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:2 18401:2 18416:1 18417:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18698:1 18717:1 18724:5 18736:1 18760:1 18775:2 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18988:1 18999:1 19005:4 19060:2 19061:6 19081:1 19086:2 19130:1 19134:1 19136:1 19138:2 19155:1 19180:1 19196:1 19300:1 19319:1 19359:1 19361:1 19389:1 19418:1 19441:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:1 19740:1 19768:1 19783:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20184:1 20190:1 20225:1 20246:1 20270:1 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20369:1 20373:2 20385:1 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20596:1 20598:1 20625:1 20632:2 20638:1 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 12 13:1 15:2 18:1 75:1 97:1 120:2 129:1 141:1 147:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 322:1 356:2 394:1 407:1 473:1 474:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 604:1 627:2 630:1 639:1 667:1 668:3 669:1 672:1 701:2 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 1023:2 1038:1 1050:3 1061:1 1073:1 1074:1 1079:1 1089:2 1093:1 1106:1 1131:2 1142:1 1164:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:2 1369:1 1394:1 1404:1 1408:3 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:1 1964:2 1972:1 1989:1 1998:1 2014:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:1 2117:4 2178:1 2179:1 2184:1 2186:3 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2681:1 2693:1 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:2 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:1 3197:3 3200:2 3202:1 3205:1 3207:1 3208:1 3211:1 3214:1 3220:3 3221:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:3 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3557:1 3586:3 3618:1 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4089:1 4105:2 4136:3 4148:2 4149:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4252:1 4254:1 4256:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4407:1 4460:1 4517:1 4547:1 4573:2 4576:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:1 4750:1 4771:1 4781:1 4856:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5155:1 5182:1 5185:1 5201:1 5209:1 5243:1 5253:1 5261:1 5298:1 5337:1 5341:2 5348:1 5356:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:926 5512:1 5516:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5699:1 5717:1 5815:5 5816:1 5819:2 5884:1 5913:2 5925:1 5953:1 5995:1 6026:1 6060:1 6117:1 6160:1 6175:1 6178:1 6255:1 6327:1 6351:1 6386:1 6396:1 6410:1 6438:1 6478:2 6559:1 6560:1 6673:1 6687:4 6727:1 6735:1 6759:4 6796:1 6833:1 6838:1 6843:4 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:1 6910:1 6935:1 6961:1 7000:2 7039:2 7093:1 7110:1 7117:1 7124:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:2 7303:1 7306:1 7319:1 7348:1 7360:2 7408:5 7413:1 7450:1 7452:7 7456:1 7546:2 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7941:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:1 8074:1 8131:1 8160:1 8165:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:2 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8502:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:1 8691:1 8707:2 8709:2 8797:1 8799:1 8803:1 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:2 8833:5 8837:1 8879:1 8903:1 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9111:1 9139:1 9143:1 9210:1 9271:1 9275:1 9281:1 9325:1 9334:1 9337:2 9341:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9758:1 9797:1 9823:1 9960:2 9964:1 9973:1 10002:3 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10347:1 10366:1 10429:1 10493:2 10544:2 10546:2 10548:1 10553:3 10567:2 10575:1 10590:1 10595:1 10627:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:5 10839:1 10849:2 10856:1 10860:1 10865:1 10909:1 10921:16 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 10997:1 11028:1 11040:2 11041:2 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11205:1 11236:1 11251:2 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:1 11511:1 11518:1 11554:1 11581:3 11601:2 11633:1 11636:1 11648:1 11689:1 11698:4 11715:1 11721:1 11784:1 11899:1 11909:1 11918:1 11942:1 11991:1 11998:1 12010:1 12012:1 12020:1 12053:1 12073:1 12074:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12219:1 12222:1 12231:1 12235:2 12254:1 12259:1 12286:1 12295:1 12300:2 12314:1 12322:1 12333:2 12359:1 12379:1 12387:1 12390:1 12431:1 12453:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12730:1 12759:1 12766:1 12771:1 12781:1 12811:1 12836:1 12872:1 12875:2 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:1 13045:1 13092:1 13094:1 13123:1 13139:1 13143:2 13190:1 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13295:1 13307:1 13308:1 13328:1 13340:1 13379:1 13381:3 13389:1 13431:1 13459:1 13466:1 13474:1 13488:2 13512:1 13532:1 13537:1 13558:1 13564:1 13566:2 13568:1 13573:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:1 13672:1 13677:1 13693:1 13712:3 13740:2 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13900:1 13908:1 13915:1 13949:2 13983:1 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14175:2 14213:1 14232:1 14247:1 14254:1 14304:1 14314:1 14319:1 14411:1 14465:1 14501:1 14521:1 14536:1 14549:1 14562:2 14607:1 14658:1 14662:1 14676:1 14716:2 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15011:1 15013:1 15017:3 15023:2 15031:1 15055:1 15058:1 15060:1 15076:1 15080:1 15107:1 15160:2 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15577:1 15620:1 15632:1 15712:1 15714:4 15719:1 15733:1 15756:1 15766:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15942:1 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:2 16101:1 16106:1 16130:1 16133:1 16147:1 16187:1 16255:1 16261:4 16272:1 16276:1 16281:1 16308:1 16331:1 16336:1 16349:1 16366:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:2 16742:3 16830:1 16852:2 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16967:1 16997:1 17001:1 17026:1 17036:1 17063:2 17120:1 17161:1 17164:1 17205:2 17211:1 17281:1 17293:1 17318:1 17339:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17601:1 17637:1 17656:1 17657:2 17670:1 17696:1 17758:2 17764:1 17769:2 17770:1 17775:2 17779:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:1 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:1 17931:2 17939:1 17980:2 17989:1 17998:2 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:1 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:2 18401:2 18416:1 18417:1 18426:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18698:1 18717:2 18724:5 18736:1 18760:1 18775:2 18808:2 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18941:1 18988:1 18999:1 19005:5 19060:2 19061:7 19064:1 19081:1 19086:2 19130:1 19134:1 19136:1 19138:3 19155:1 19180:1 19196:1 19300:1 19319:1 19359:1 19361:1 19365:1 19389:1 19418:1 19441:1 19458:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:1 19740:1 19768:1 19783:1 19804:1 19812:1 19818:2 19831:2 19848:1 19884:1 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20184:1 20190:2 20225:1 20246:1 20270:1 20296:1 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20369:1 20373:2 20385:1 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20546:1 20596:1 20598:1 20625:1 20632:2 20638:1 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 12 13:1 15:2 18:1 75:1 97:1 120:2 129:1 141:1 147:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 322:1 356:2 394:1 407:1 473:1 474:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 604:2 627:2 630:1 639:1 667:1 668:3 669:1 672:1 701:2 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 1023:3 1038:1 1050:3 1061:1 1073:1 1074:1 1079:1 1089:2 1093:1 1106:1 1131:2 1142:1 1164:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:2 1369:1 1394:1 1404:1 1408:3 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1964:2 1972:1 1989:1 1998:1 2014:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:1 2077:1 2117:4 2178:1 2179:1 2184:1 2186:3 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2681:1 2693:1 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:3 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:1 3197:3 3200:2 3202:1 3205:1 3207:1 3208:1 3211:1 3214:1 3220:3 3221:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:3 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3385:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3545:1 3557:1 3586:3 3618:1 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4089:1 4105:2 4136:3 4148:2 4149:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4407:1 4460:1 4517:1 4547:1 4573:2 4576:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:2 4750:1 4771:1 4781:1 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5155:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:1 5243:1 5253:1 5261:1 5298:1 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:1033 5512:1 5516:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5699:1 5717:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:3 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 6026:1 6060:1 6085:1 6117:1 6160:1 6175:1 6178:1 6255:1 6327:1 6351:1 6386:1 6396:1 6410:1 6438:1 6478:2 6559:1 6560:1 6619:1 6673:1 6687:6 6727:1 6735:1 6759:5 6796:1 6833:1 6838:1 6843:4 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:1 6899:1 6910:1 6935:1 6961:1 7000:2 7039:2 7093:1 7110:1 7117:1 7124:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:2 7303:1 7306:1 7319:1 7348:1 7360:2 7408:5 7413:1 7450:1 7452:7 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7941:1 7961:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:1 8074:1 8131:1 8160:1 8165:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:3 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8502:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8797:1 8799:1 8803:1 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:2 8833:6 8837:1 8879:1 8903:1 8923:1 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9097:1 9111:1 9139:1 9143:1 9210:2 9271:1 9275:1 9281:1 9301:1 9325:1 9334:1 9337:2 9341:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9740:1 9758:1 9797:1 9823:1 9960:2 9964:1 9973:1 10002:3 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10330:1 10347:1 10366:1 10429:1 10469:1 10493:2 10544:2 10546:2 10548:1 10553:3 10559:1 10567:2 10575:1 10590:1 10595:1 10627:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:5 10839:1 10849:2 10856:1 10860:1 10865:1 10909:1 10921:16 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 10997:1 11028:1 11040:2 11041:2 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11205:1 11225:1 11236:1 11251:3 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:1 11511:1 11518:1 11554:1 11581:3 11601:2 11633:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11721:1 11784:1 11812:1 11899:1 11909:1 11918:1 11942:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:1 12053:1 12073:1 12074:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12259:1 12286:1 12295:1 12300:2 12314:1 12322:1 12333:2 12359:1 12379:1 12387:1 12390:1 12431:1 12453:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12656:1 12700:1 12730:1 12759:1 12766:1 12771:1 12781:1 12811:1 12836:1 12872:1 12875:2 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:1 13045:1 13092:1 13094:1 13123:1 13139:1 13143:2 13190:1 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13295:1 13307:1 13308:1 13328:1 13340:1 13379:1 13381:3 13389:1 13431:1 13459:1 13466:1 13474:1 13488:2 13512:1 13532:1 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13594:2 13616:1 13617:6 13651:1 13657:1 13663:1 13664:1 13672:1 13677:1 13693:1 13712:3 13740:2 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13900:1 13908:1 13915:1 13949:2 13983:1 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14132:1 14175:2 14213:1 14232:1 14247:1 14254:1 14267:1 14304:1 14314:1 14319:1 14411:1 14465:1 14501:1 14521:1 14536:1 14549:1 14562:2 14607:1 14658:1 14662:1 14676:1 14716:2 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15011:1 15013:1 15017:3 15023:2 15031:1 15055:1 15058:1 15060:1 15073:1 15076:1 15080:1 15107:1 15160:2 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15577:1 15620:1 15632:1 15712:1 15714:4 15719:1 15728:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15942:1 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:2 16101:1 16106:1 16130:1 16133:1 16147:1 16187:1 16255:1 16261:4 16272:1 16275:1 16276:1 16281:1 16308:1 16331:1 16336:1 16349:1 16366:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:3 16742:3 16830:1 16852:3 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16967:1 16997:1 17001:1 17026:1 17036:1 17063:2 17120:1 17161:1 17164:1 17205:2 17211:1 17281:1 17293:1 17318:1 17320:1 17339:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:1 17594:1 17600:1 17601:1 17637:1 17656:1 17657:2 17670:1 17690:1 17696:1 17758:2 17764:1 17769:2 17770:1 17775:2 17779:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:1 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:1 17931:2 17939:1 17980:2 17989:1 17998:2 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:2 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:2 18401:2 18416:1 18417:1 18426:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18698:1 18717:2 18724:5 18736:1 18760:1 18775:2 18808:3 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18941:1 18956:1 18988:1 18999:1 19005:5 19028:1 19060:3 19061:7 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:3 19155:1 19180:1 19196:1 19300:1 19319:1 19359:1 19361:2 19365:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:1 19740:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19884:1 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20225:1 20246:1 20270:1 20296:1 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20369:1 20373:3 20385:1 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20546:1 20596:1 20598:1 20625:1 20632:2 20638:1 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 12 13:1 15:2 18:1 75:1 97:1 120:2 129:1 141:1 147:1 158:1 173:1 180:1 195:1 265:1 273:1 277:1 322:1 356:2 394:1 407:1 473:1 474:1 496:1 498:1 549:1 560:1 572:1 587:1 588:1 590:2 593:1 595:1 604:2 627:2 630:1 639:1 667:1 668:3 669:1 672:1 701:2 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 1023:3 1038:1 1050:3 1061:1 1073:1 1074:1 1079:1 1089:2 1093:1 1106:1 1131:2 1142:1 1164:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:2 1369:1 1394:1 1404:1 1408:3 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1964:2 1972:1 1989:1 1998:1 2014:1 2025:2 2029:1 2050:1 2052:1 2053:1 2061:2 2077:1 2117:4 2178:1 2179:1 2184:1 2186:3 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2681:2 2693:1 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:3 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:1 3197:3 3200:2 3202:1 3205:1 3207:1 3208:1 3211:1 3214:1 3220:3 3221:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:3 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3385:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3545:1 3557:1 3582:1 3586:3 3618:1 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3820:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4089:1 4105:2 4113:1 4136:3 4148:2 4149:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4407:1 4460:1 4517:1 4547:1 4573:2 4576:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:2 4750:1 4771:1 4781:1 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5155:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:1 5243:1 5253:1 5261:1 5298:1 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:1070 5512:1 5516:1 5545:1 5574:1 5579:1 5607:1 5634:1 5667:1 5685:1 5699:1 5717:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:3 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 6026:2 6060:1 6085:1 6117:1 6160:1 6175:1 6178:1 6248:1 6255:1 6327:1 6351:1 6386:1 6396:1 6410:1 6438:1 6441:1 6478:2 6559:1 6560:1 6619:1 6673:1 6687:6 6727:1 6735:1 6759:5 6796:1 6833:1 6838:1 6843:4 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:1 6899:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:2 7303:1 7306:1 7319:1 7348:1 7360:2 7408:5 7413:1 7450:1 7452:7 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7728:1 7739:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:1 7856:1 7867:1 7884:1 7941:1 7961:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:1 8074:1 8131:1 8160:1 8165:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:3 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8502:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8797:1 8799:1 8803:1 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:2 8833:6 8837:1 8879:1 8903:1 8923:1 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9097:1 9111:1 9139:1 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9325:1 9334:1 9337:2 9341:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9740:1 9758:1 9797:2 9823:1 9960:2 9964:1 9973:1 10002:3 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10330:1 10347:1 10366:1 10429:1 10469:1 10493:2 10544:2 10546:2 10548:1 10553:3 10559:1 10567:2 10575:1 10590:1 10595:1 10627:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:5 10839:1 10849:2 10856:1 10860:1 10865:1 10909:1 10921:17 10926:1 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 10997:1 11028:1 11040:2 11041:2 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11205:1 11225:1 11236:1 11251:3 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:1 11500:1 11511:1 11518:1 11554:1 11581:3 11601:2 11633:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11721:1 11784:1 11812:1 11899:1 11909:1 11918:1 11942:1 11979:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:1 12053:1 12073:1 12074:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12259:1 12286:1 12295:1 12300:2 12314:1 12322:1 12333:2 12357:1 12359:1 12379:1 12387:1 12390:1 12431:1 12453:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12632:1 12656:1 12700:1 12730:2 12759:1 12766:1 12771:1 12781:1 12811:1 12836:1 12872:1 12875:2 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:1 13041:1 13045:1 13092:1 13094:1 13123:1 13139:1 13143:2 13190:1 13191:1 13204:1 13231:3 13252:1 13266:1 13289:1 13295:1 13307:1 13308:1 13328:1 13340:1 13379:1 13381:3 13389:1 13431:1 13459:1 13466:1 13474:1 13488:2 13512:1 13532:1 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13594:2 13616:1 13617:6 13651:1 13657:1 13663:1 13664:1 13672:1 13677:1 13693:1 13712:3 13740:2 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13900:1 13908:1 13915:1 13949:2 13953:1 13983:1 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14132:1 14175:2 14213:1 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14411:1 14465:1 14501:1 14521:1 14536:1 14549:1 14562:2 14607:1 14658:1 14662:1 14676:1 14716:3 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15006:1 15011:1 15013:1 15017:3 15023:2 15031:1 15055:1 15058:1 15060:1 15073:1 15076:1 15080:1 15082:1 15107:1 15160:2 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15577:1 15620:1 15632:2 15712:1 15714:4 15719:1 15728:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16045:2 16101:1 16106:1 16130:1 16133:1 16146:1 16147:1 16187:1 16255:1 16261:4 16270:1 16272:1 16275:1 16276:1 16281:1 16308:1 16331:1 16336:1 16349:1 16366:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:3 16742:3 16777:1 16788:1 16830:1 16852:3 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16967:1 16997:1 17001:1 17026:1 17036:1 17063:2 17120:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17637:1 17656:1 17657:2 17670:1 17690:1 17696:1 17758:2 17764:1 17769:2 17770:1 17775:2 17779:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:1 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:1 17931:2 17939:1 17980:3 17989:1 17998:2 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:2 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:2 18401:2 18416:1 18417:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18698:1 18717:2 18724:5 18736:1 18760:1 18775:2 18808:3 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18941:1 18956:1 18988:1 18999:1 19005:5 19028:1 19060:3 19061:7 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:3 19155:1 19180:1 19196:1 19300:1 19319:1 19359:1 19361:2 19365:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:1 19740:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19884:1 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20369:1 20373:3 20385:1 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20546:1 20596:1 20598:1 20625:1 20630:1 20632:2 20638:1 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 12 13:1 15:2 18:1 75:1 97:1 120:2 129:1 141:1 147:1 158:1 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 356:2 394:1 407:1 473:1 474:1 496:1 498:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 627:2 630:1 639:1 667:1 668:3 669:1 672:1 701:2 710:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 982:1 1023:3 1038:1 1050:3 1061:1 1073:1 1074:1 1079:1 1089:2 1093:1 1106:1 1131:2 1142:1 1164:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:2 1369:1 1394:1 1404:1 1408:3 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:1 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1964:2 1972:1 1989:1 1998:1 2014:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2117:4 2178:1 2179:1 2184:1 2186:3 2190:1 2252:1 2265:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2681:2 2693:2 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:4 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:1 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:3 3221:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3354:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3545:1 3557:1 3582:1 3586:3 3618:1 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3820:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4089:1 4105:2 4113:1 4136:3 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4407:1 4457:1 4460:1 4514:1 4517:1 4547:1 4573:2 4576:1 4591:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:2 4750:1 4771:1 4781:1 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5123:1 5155:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:1 5243:1 5253:1 5261:1 5298:1 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:1110 5512:1 5516:1 5545:1 5574:1 5579:1 5583:1 5607:1 5634:1 5667:1 5685:1 5699:1 5717:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 6026:2 6060:1 6085:1 6117:1 6160:1 6175:1 6178:1 6248:1 6255:1 6327:1 6351:1 6368:1 6386:1 6396:1 6399:1 6410:1 6438:1 6441:1 6478:2 6559:1 6560:1 6619:1 6673:1 6687:6 6727:1 6735:1 6759:6 6796:1 6833:1 6838:1 6843:4 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:2 6899:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:2 7303:1 7306:1 7319:1 7348:1 7360:3 7391:1 7408:5 7413:1 7450:1 7452:7 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7721:1 7728:1 7739:1 7749:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:2 7856:1 7867:1 7884:1 7914:1 7941:1 7961:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:1 8074:1 8131:1 8160:1 8165:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:3 8303:1 8329:1 8331:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8482:1 8502:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:1 8595:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8797:1 8799:1 8803:1 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:2 8833:6 8837:1 8879:1 8903:1 8923:1 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9097:1 9111:1 9139:1 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9325:1 9334:1 9337:2 9341:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9740:1 9758:1 9793:1 9797:2 9823:1 9952:1 9960:3 9964:1 9973:1 10000:1 10002:3 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10065:1 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10330:1 10347:1 10366:1 10429:1 10469:1 10493:2 10515:1 10544:2 10546:3 10548:1 10553:3 10559:1 10567:2 10575:1 10590:1 10595:1 10627:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:5 10839:1 10849:2 10856:1 10860:1 10865:1 10886:1 10909:1 10921:18 10926:1 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 10996:1 10997:1 11028:1 11040:2 11041:2 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11205:1 11225:1 11236:1 11251:4 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:1 11500:1 11511:1 11518:1 11554:2 11581:3 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11721:1 11784:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11979:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:1 12053:1 12073:1 12074:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12259:1 12286:1 12295:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12367:1 12379:1 12387:1 12390:1 12431:1 12453:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:1 12629:1 12632:1 12656:1 12672:1 12700:1 12730:2 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12872:1 12875:2 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:2 13041:1 13045:1 13092:1 13094:1 13123:1 13139:1 13143:2 13190:1 13191:1 13202:1 13204:1 13231:3 13245:1 13252:1 13266:1 13289:1 13295:1 13307:1 13308:1 13320:1 13328:1 13340:1 13379:1 13381:3 13389:1 13431:1 13459:2 13466:1 13474:1 13488:2 13512:1 13532:1 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13594:2 13616:1 13617:6 13651:1 13657:1 13663:1 13664:1 13672:1 13677:1 13693:1 13712:3 13740:3 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13900:1 13908:1 13915:1 13949:2 13953:1 13983:1 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14132:1 14175:2 14213:1 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14411:1 14465:1 14501:1 14521:1 14536:1 14549:1 14562:2 14607:1 14658:2 14662:1 14676:1 14716:3 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14888:1 14910:1 14926:1 14936:5 14943:1 14970:1 15006:1 15011:1 15013:1 15017:3 15023:2 15031:1 15055:1 15058:1 15060:1 15073:1 15076:1 15080:1 15082:1 15107:1 15160:2 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15577:1 15620:1 15632:2 15712:1 15714:4 15719:1 15728:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16101:1 16106:1 16130:2 16133:1 16146:1 16147:1 16187:2 16255:1 16261:4 16270:1 16272:1 16275:1 16276:1 16281:1 16308:1 16331:1 16336:1 16349:1 16354:1 16366:1 16382:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:3 16742:3 16777:1 16788:1 16830:1 16852:4 16876:1 16909:2 16917:2 16919:1 16928:1 16945:1 16967:1 16997:1 17001:1 17017:1 17026:1 17036:1 17063:2 17120:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17348:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17637:1 17656:1 17657:2 17670:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17779:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:2 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:2 17931:2 17939:1 17980:4 17989:1 17998:2 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:2 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:3 18401:2 18416:1 18417:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18698:1 18717:2 18724:5 18736:1 18760:1 18775:2 18808:4 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18941:1 18943:1 18956:1 18988:1 18999:1 19005:5 19028:1 19060:3 19061:7 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:3 19155:1 19180:1 19196:1 19232:1 19300:1 19319:1 19355:1 19359:1 19361:2 19365:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:2 19740:1 19755:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19884:2 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20369:1 20373:4 20385:2 20396:1 20401:1 20436:1 20449:1 20451:1 20460:1 20486:2 20546:1 20568:1 20596:1 20598:1 20625:1 20630:1 20632:2 20638:1 20700:1 20705:3 20709:1 20715:4 20748:1 20765:1 20796:1 12 13:1 15:2 18:1 75:1 97:1 120:2 129:1 141:1 147:1 158:1 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 352:1 356:2 394:1 407:1 422:1 473:1 474:1 496:1 498:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 627:2 630:1 639:1 667:1 668:3 669:1 672:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 982:1 1023:3 1038:1 1050:3 1061:1 1073:1 1074:1 1079:1 1089:2 1093:1 1106:1 1131:2 1142:1 1164:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:2 1369:1 1394:1 1404:1 1408:3 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:1 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1964:2 1972:1 1989:1 1998:1 2014:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2184:1 2186:3 2190:1 2252:1 2265:1 2285:1 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2655:2 2666:1 2677:1 2681:2 2693:2 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:4 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:1 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:3 3221:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3545:1 3557:1 3582:1 3586:3 3618:1 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:1 3820:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4089:1 4105:2 4113:1 4136:3 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4407:1 4457:1 4460:1 4514:1 4517:1 4547:1 4573:2 4576:1 4591:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4745:2 4750:1 4771:1 4781:1 4796:1 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5123:1 5148:1 5155:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:1 5243:1 5253:1 5261:1 5298:1 5322:1 5332:1 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:1176 5512:1 5516:1 5545:1 5574:1 5579:1 5583:1 5607:1 5634:1 5667:1 5685:1 5699:1 5717:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6026:2 6060:1 6085:1 6117:1 6160:1 6175:1 6178:1 6248:1 6255:1 6274:1 6327:1 6351:1 6368:1 6386:1 6396:1 6399:1 6410:1 6438:1 6441:1 6478:2 6497:1 6559:1 6560:1 6619:1 6673:1 6687:6 6727:1 6735:1 6759:6 6796:1 6833:1 6838:1 6843:4 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:2 6899:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7183:1 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:2 7303:1 7306:1 7319:1 7326:1 7348:1 7360:3 7391:1 7408:5 7413:1 7450:1 7452:8 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:1 7637:2 7647:1 7684:1 7721:1 7728:1 7739:1 7749:1 7752:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:2 7856:1 7867:1 7884:1 7914:1 7941:1 7961:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:1 8074:1 8131:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:3 8303:1 8329:1 8331:1 8337:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8482:1 8502:1 8506:1 8507:1 8538:1 8542:1 8546:1 8550:1 8584:2 8595:1 8619:1 8633:1 8642:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8797:1 8799:1 8803:1 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:2 8833:6 8837:1 8879:1 8903:1 8923:1 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9097:1 9111:1 9139:1 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9740:1 9758:1 9793:1 9797:2 9823:1 9952:1 9960:3 9964:1 9973:1 10000:1 10002:3 10006:1 10018:1 10021:1 10024:1 10057:1 10062:2 10065:1 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10330:1 10347:1 10366:1 10429:1 10469:1 10493:2 10515:1 10544:2 10546:3 10548:1 10553:3 10559:1 10567:2 10575:1 10590:1 10595:1 10627:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:5 10839:1 10849:2 10856:1 10860:1 10865:1 10886:1 10909:1 10921:18 10926:1 10936:1 10937:1 10939:1 10948:3 10953:1 10961:2 10965:1 10974:1 10975:1 10996:1 10997:1 11028:1 11040:2 11041:2 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11205:1 11225:1 11236:1 11251:4 11255:1 11261:1 11316:1 11331:1 11404:2 11438:1 11461:2 11500:1 11511:1 11518:1 11554:2 11581:3 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11979:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:1 12053:1 12073:1 12074:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12259:1 12286:1 12295:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12367:1 12379:1 12387:1 12390:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12656:1 12672:1 12700:1 12730:2 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12872:1 12875:2 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:2 13041:1 13045:1 13092:1 13094:1 13123:1 13139:1 13143:2 13190:1 13191:1 13202:1 13204:1 13231:3 13245:1 13252:1 13266:1 13289:1 13291:1 13295:1 13307:1 13308:1 13320:1 13328:1 13340:1 13379:1 13381:3 13389:1 13431:1 13459:2 13466:1 13474:1 13488:2 13512:1 13532:2 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13594:2 13616:1 13617:6 13651:1 13657:1 13663:1 13664:1 13672:1 13677:1 13693:1 13712:3 13740:3 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13900:1 13908:1 13915:1 13949:3 13953:1 13983:1 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14132:1 14175:2 14213:1 14230:1 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14411:1 14465:1 14501:1 14521:1 14536:1 14549:1 14562:2 14607:1 14658:2 14662:1 14667:1 14676:1 14716:3 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14807:1 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14943:1 14970:1 15006:1 15011:1 15013:1 15017:3 15023:2 15031:1 15055:1 15058:1 15060:1 15073:1 15076:1 15080:2 15082:1 15107:1 15160:2 15191:1 15192:1 15224:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15577:1 15620:1 15624:1 15632:2 15712:1 15714:4 15719:1 15728:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:1 15872:2 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16101:1 16106:1 16130:2 16133:1 16146:1 16147:1 16187:2 16255:1 16261:4 16270:1 16272:1 16275:1 16276:1 16281:1 16308:1 16331:1 16336:1 16349:1 16354:1 16366:1 16382:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:3 16742:3 16777:1 16788:1 16830:1 16852:4 16876:1 16887:1 16889:1 16909:2 16917:2 16919:1 16928:1 16945:1 16967:1 16997:1 17001:1 17017:1 17026:1 17036:1 17063:2 17120:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17348:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17637:1 17656:1 17657:2 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:2 17931:2 17939:1 17980:4 17989:1 17998:2 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:1 18213:1 18231:2 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:3 18401:2 18416:1 18417:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:1 18617:2 18630:1 18640:1 18675:1 18681:1 18698:1 18717:2 18724:5 18736:1 18760:1 18775:2 18808:4 18824:1 18838:1 18855:1 18870:1 18890:1 18933:1 18941:1 18943:1 18956:1 18988:1 18999:1 19005:5 19028:1 19060:3 19061:7 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:3 19155:1 19175:1 19180:1 19196:1 19232:1 19300:1 19319:1 19321:1 19355:1 19359:1 19361:2 19365:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:2 19717:1 19740:1 19755:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19884:2 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20385:2 20396:1 20397:1 20401:1 20436:1 20449:1 20451:1 20460:1 20478:1 20486:2 20546:1 20568:1 20596:1 20598:1 20625:1 20630:1 20632:2 20638:1 20700:1 20705:3 20709:1 20711:1 20715:4 20748:1 20765:1 20796:1 20825:1 12 6:1 13:1 15:2 18:1 75:1 97:1 120:2 129:1 141:1 147:2 158:1 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 352:1 356:2 394:1 407:1 422:1 473:1 474:1 496:1 498:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 627:2 630:1 639:1 667:1 668:3 669:1 672:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 898:1 925:1 926:1 975:1 982:1 1023:3 1038:1 1050:3 1061:1 1063:1 1073:1 1074:1 1079:1 1089:2 1093:1 1106:1 1131:3 1142:1 1164:1 1185:1 1233:1 1246:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:3 1369:1 1394:1 1404:1 1408:3 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1709:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2184:1 2186:3 2190:1 2252:1 2265:1 2285:2 2302:1 2329:2 2330:1 2334:1 2367:1 2404:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2666:1 2677:1 2681:2 2693:2 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:4 3124:2 3128:1 3138:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:1 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:4 3221:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:3 3618:1 3654:1 3668:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:2 3820:1 3850:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4077:1 4089:1 4105:2 4113:1 4136:4 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4457:1 4460:1 4514:1 4517:1 4547:1 4573:2 4576:1 4591:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4739:1 4745:2 4750:1 4771:1 4781:1 4796:2 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5123:1 5137:1 5148:2 5155:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:1 5243:1 5253:1 5261:1 5298:1 5322:1 5332:1 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5438:1 5442:2 5458:1 5470:2 5471:1 5480:1 5497:1 5509:1242 5512:1 5516:1 5545:1 5574:1 5579:1 5583:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5807:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6175:1 6178:1 6248:1 6255:1 6274:1 6327:2 6351:1 6355:1 6368:1 6386:2 6396:1 6399:1 6410:1 6438:1 6441:1 6478:3 6481:1 6497:2 6559:1 6560:1 6619:1 6673:1 6687:6 6727:1 6735:1 6746:1 6759:6 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:2 6899:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7183:2 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:2 7303:1 7306:1 7319:1 7326:1 7348:1 7360:3 7391:1 7395:1 7408:5 7413:1 7450:1 7452:8 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:2 7637:2 7647:1 7649:1 7684:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7846:1 7850:2 7856:1 7867:1 7884:1 7914:1 7941:1 7961:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:1 8074:1 8131:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:4 8303:1 8329:1 8331:1 8337:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8538:1 8542:1 8546:1 8550:1 8584:2 8595:1 8619:1 8633:2 8642:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8773:1 8797:1 8799:1 8803:3 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:2 8833:6 8837:1 8879:1 8903:1 8923:1 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9097:1 9111:1 9139:1 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9710:1 9719:5 9721:1 9740:1 9758:1 9793:1 9797:2 9823:1 9887:1 9952:1 9960:3 9964:1 9973:1 10000:1 10002:3 10006:1 10018:1 10021:2 10024:1 10057:1 10062:2 10065:1 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10305:1 10325:2 10330:1 10347:1 10366:1 10429:2 10469:1 10493:2 10515:1 10529:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:1 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:5 10839:1 10849:2 10856:1 10860:1 10865:1 10886:1 10909:1 10921:19 10926:1 10936:1 10937:1 10939:1 10948:4 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11205:1 11225:1 11236:1 11251:4 11255:1 11261:1 11316:1 11331:1 11354:1 11378:2 11404:2 11438:2 11461:2 11500:1 11511:1 11518:1 11554:2 11581:3 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11979:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:1 12053:1 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12286:1 12295:1 12296:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12367:1 12379:1 12387:1 12390:2 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12656:2 12672:1 12700:1 12730:2 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12872:1 12875:2 12881:1 12899:1 12911:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:2 13041:1 13045:1 13092:2 13094:2 13123:1 13139:1 13143:2 13190:1 13191:1 13202:1 13204:1 13231:3 13245:1 13252:1 13266:1 13289:1 13291:1 13295:1 13307:1 13308:1 13320:1 13328:1 13340:1 13379:1 13381:3 13389:1 13431:1 13459:2 13466:1 13474:1 13488:2 13512:1 13532:2 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:1 13664:1 13672:1 13677:1 13693:1 13712:3 13740:3 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13900:1 13908:1 13915:1 13949:3 13951:1 13953:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14132:1 14175:2 14192:1 14213:1 14230:2 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14411:1 14439:1 14465:1 14468:1 14501:1 14521:1 14536:1 14549:2 14562:2 14607:1 14658:2 14662:1 14667:1 14676:2 14716:3 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14793:1 14807:1 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14943:1 14946:1 14970:1 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:1 15160:2 15191:1 15192:1 15224:1 15275:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15568:1 15577:1 15620:1 15624:1 15632:2 15712:1 15714:4 15719:1 15728:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:3 15872:2 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16101:1 16106:1 16128:1 16130:2 16133:1 16146:1 16147:1 16153:1 16187:2 16255:1 16261:4 16270:1 16272:1 16275:1 16276:1 16281:1 16308:1 16331:1 16336:2 16349:1 16354:1 16366:1 16382:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16581:1 16589:1 16615:1 16629:1 16647:1 16680:1 16695:1 16712:3 16742:3 16777:1 16788:1 16821:1 16830:1 16852:4 16876:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:1 16945:1 16967:1 16997:1 17001:1 17017:1 17026:1 17030:1 17036:1 17037:1 17063:2 17120:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17348:1 17359:1 17386:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17637:1 17656:1 17657:2 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:2 17931:2 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:1 18231:2 18254:1 18257:1 18283:1 18353:1 18359:1 18369:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:2 18617:2 18630:1 18640:1 18675:1 18681:1 18698:1 18717:2 18724:5 18736:1 18760:1 18775:2 18808:4 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18956:1 18961:1 18988:1 18999:1 19005:5 19028:1 19060:3 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:3 19155:2 19175:1 19180:1 19196:1 19232:1 19249:1 19300:1 19319:1 19321:1 19341:1 19355:1 19359:1 19361:2 19365:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19514:1 19532:1 19535:2 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:2 19717:1 19740:1 19755:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19953:1 19970:1 20048:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20385:2 20396:1 20397:1 20401:1 20436:1 20449:1 20451:1 20460:1 20478:2 20486:2 20546:1 20568:1 20570:1 20596:1 20598:1 20621:1 20625:1 20630:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20715:4 20748:1 20765:1 20796:1 20821:1 20825:1 12 6:1 13:1 15:2 18:1 75:1 79:1 97:1 120:2 129:1 141:1 147:2 158:1 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 344:1 352:1 356:2 374:1 394:1 407:1 422:1 473:1 474:1 496:1 498:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 627:2 630:1 639:1 667:1 668:3 669:1 672:1 682:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 898:1 925:2 926:1 975:1 982:1 992:1 1023:3 1038:1 1050:3 1061:1 1063:1 1073:1 1074:1 1079:1 1089:3 1093:1 1106:2 1131:3 1142:1 1164:1 1185:1 1233:1 1246:1 1252:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:3 1369:1 1394:1 1404:1 1408:4 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1607:1 1608:1 1627:2 1629:1 1645:1 1672:1 1691:1 1701:1 1709:1 1721:2 1755:1 1807:1 1813:1 1838:2 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2184:1 2186:4 2190:1 2215:1 2252:1 2265:1 2285:3 2302:1 2326:1 2329:2 2330:1 2334:1 2367:1 2404:1 2411:1 2412:1 2432:1 2439:3 2446:1 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2666:1 2677:1 2681:2 2693:2 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:2 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:4 3221:1 3223:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:1 3500:1 3505:1 3508:1 3509:1 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:3 3618:1 3654:1 3668:1 3670:1 3701:1 3716:1 3731:1 3737:1 3740:1 3747:1 3755:1 3768:1 3771:1 3790:2 3820:1 3850:1 3865:1 3883:3 3892:1 3918:1 3943:1 3961:1 3963:2 3978:2 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4105:2 4113:1 4136:4 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4457:1 4460:1 4514:1 4517:1 4547:1 4573:2 4576:1 4591:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4739:1 4745:2 4750:1 4771:1 4781:1 4796:3 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5077:1 5083:1 5091:1 5096:1 5100:4 5120:1 5123:1 5137:1 5148:3 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:1 5243:1 5253:1 5261:1 5298:1 5322:1 5332:2 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5438:1 5442:2 5458:1 5460:1 5470:2 5471:1 5480:1 5497:1 5509:1312 5512:1 5516:1 5545:1 5555:1 5574:1 5579:1 5583:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5807:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6175:1 6178:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6396:1 6399:1 6410:1 6438:1 6441:1 6478:3 6481:1 6497:3 6559:1 6560:1 6619:1 6673:1 6687:6 6688:1 6727:1 6735:1 6746:1 6759:6 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:2 6899:1 6901:1 6905:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7183:2 7192:1 7205:1 7213:1 7215:2 7240:1 7257:1 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:5 7413:1 7450:1 7452:8 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:2 7637:3 7647:1 7649:1 7684:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7856:1 7867:1 7884:1 7914:1 7941:1 7961:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8131:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:1 8355:2 8365:1 8424:1 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8538:1 8542:1 8546:1 8550:1 8584:2 8595:1 8619:1 8633:2 8642:2 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8773:1 8797:1 8799:1 8803:3 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:3 8833:7 8837:1 8879:1 8903:1 8923:2 8926:2 9060:1 9068:1 9072:1 9085:1 9089:2 9097:1 9111:1 9139:2 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:1 9629:1 9637:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9808:1 9823:1 9887:1 9952:1 9960:3 9964:1 9973:1 9978:1 10000:1 10002:3 10006:1 10018:1 10021:2 10024:1 10057:1 10062:2 10065:1 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:1 10249:1 10288:1 10303:1 10305:1 10325:2 10330:1 10347:1 10351:1 10366:1 10429:2 10469:1 10493:2 10515:1 10529:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10856:1 10860:1 10862:1 10865:1 10886:1 10909:1 10921:21 10926:1 10936:1 10937:1 10939:1 10948:4 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11192:1 11205:1 11225:1 11236:1 11251:4 11255:1 11261:1 11316:1 11331:1 11354:1 11378:2 11404:2 11438:2 11461:2 11500:1 11511:1 11518:1 11554:2 11581:3 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:1 12053:1 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12184:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12286:1 12295:1 12296:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12367:1 12379:1 12387:1 12390:2 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12656:2 12672:1 12700:1 12730:2 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12950:1 12952:1 12963:1 12968:1 12979:3 12985:1 13014:1 13024:2 13041:1 13045:1 13092:2 13094:2 13099:1 13104:1 13123:1 13139:1 13143:2 13190:1 13191:1 13202:1 13204:1 13231:3 13245:1 13252:1 13266:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13320:1 13328:1 13340:1 13379:1 13381:4 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:2 13664:1 13672:1 13677:1 13693:1 13712:3 13740:3 13749:1 13750:1 13763:1 13764:1 13779:1 13787:2 13858:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:3 13951:1 13953:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:3 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14411:1 14439:1 14465:1 14468:1 14501:1 14521:1 14536:1 14549:2 14562:2 14607:1 14658:3 14662:1 14667:1 14676:2 14716:4 14720:2 14739:1 14746:1 14756:1 14767:1 14784:1 14790:3 14793:1 14807:1 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14943:1 14946:1 14949:1 14970:1 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:1 15160:2 15191:1 15192:1 15224:1 15275:1 15281:1 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15712:1 15714:4 15719:1 15720:1 15728:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:4 15872:2 15902:1 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16101:1 16106:1 16128:1 16130:2 16133:1 16146:1 16147:1 16153:1 16187:3 16255:1 16261:4 16270:1 16272:1 16275:1 16276:1 16281:1 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16382:1 16387:1 16408:1 16415:1 16456:1 16461:1 16471:1 16482:1 16486:1 16550:1 16572:1 16581:1 16589:1 16615:1 16629:1 16647:1 16658:1 16680:1 16695:1 16712:3 16742:3 16777:1 16788:1 16821:1 16830:1 16852:4 16876:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:1 16945:1 16967:1 16997:1 17001:1 17017:1 17026:1 17030:1 17036:1 17037:1 17063:2 17120:1 17151:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17614:1 17637:1 17656:1 17657:2 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:2 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:2 17931:2 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:1 18216:1 18231:2 18254:1 18257:1 18283:1 18307:1 18353:1 18359:1 18369:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:2 18617:2 18630:1 18640:1 18675:1 18681:1 18698:1 18717:2 18724:6 18736:1 18737:1 18760:1 18775:2 18808:4 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:3 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:4 19155:2 19175:2 19180:1 19196:1 19212:1 19232:1 19249:1 19256:1 19300:1 19319:1 19321:2 19341:1 19355:1 19359:1 19361:2 19365:1 19371:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19503:1 19507:1 19514:1 19532:1 19535:3 19543:1 19545:1 19547:1 19550:1 19565:2 19567:1 19600:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:2 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19970:1 20048:1 20050:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20385:2 20396:1 20397:1 20401:1 20436:1 20449:1 20451:1 20460:1 20478:3 20486:2 20508:1 20546:1 20568:1 20570:1 20587:1 20596:1 20598:1 20610:1 20621:2 20625:1 20630:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20715:4 20748:1 20765:1 20796:1 20801:1 20821:1 20825:1 12 6:1 13:1 15:2 18:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 147:2 158:2 168:1 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 344:1 352:1 356:2 374:1 394:1 407:1 422:1 473:1 474:1 496:1 498:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 608:1 627:2 630:1 639:1 667:1 668:3 669:1 672:2 682:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 898:1 925:2 926:1 975:1 982:1 992:1 1023:3 1038:1 1050:3 1061:1 1063:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1164:1 1185:1 1233:1 1246:1 1252:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1394:1 1404:1 1408:4 1415:1 1429:1 1439:1 1468:2 1474:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1672:1 1687:1 1691:1 1701:1 1709:1 1721:2 1755:1 1778:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2184:1 2186:4 2190:1 2215:1 2221:1 2252:2 2265:1 2285:4 2286:1 2302:1 2326:1 2329:2 2330:1 2332:1 2334:1 2367:1 2404:1 2411:1 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2659:1 2666:1 2677:1 2681:2 2693:2 2721:1 2728:1 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2946:1 2981:1 2998:1 3000:1 3048:1 3067:1 3077:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:2 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:4 3221:1 3223:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:1 3500:1 3505:1 3508:1 3509:2 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3654:1 3668:1 3670:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3865:1 3883:4 3892:1 3918:1 3943:1 3961:1 3963:2 3978:2 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4105:2 4113:1 4136:4 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4457:1 4460:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4739:1 4745:2 4750:2 4771:2 4781:1 4782:1 4796:4 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5064:1 5068:1 5077:1 5083:1 5091:1 5096:1 5100:5 5120:1 5123:1 5137:1 5148:4 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:2 5243:1 5253:1 5261:1 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5438:1 5442:2 5458:1 5460:1 5470:2 5471:1 5480:1 5497:1 5509:1394 5512:1 5516:1 5528:1 5545:1 5555:1 5574:1 5579:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5807:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6175:1 6178:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:6 6688:1 6727:1 6735:1 6746:1 6759:6 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:2 6899:1 6901:1 6905:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:1 7452:8 7456:1 7546:3 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7684:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7762:2 7777:1 7796:1 7797:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7856:1 7867:1 7884:1 7892:1 7914:1 7941:1 7961:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8131:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:1 8348:1 8355:2 8365:1 8424:1 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8619:1 8633:2 8642:2 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8707:2 8709:2 8773:1 8797:1 8799:1 8803:3 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8832:3 8833:7 8837:2 8879:1 8903:1 8923:2 8926:2 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:1 9139:2 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9806:1 9808:1 9818:1 9823:1 9855:1 9887:2 9952:1 9960:3 9964:1 9973:1 9978:1 10000:1 10002:3 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:2 10249:1 10288:1 10303:1 10305:1 10325:2 10330:1 10347:1 10351:1 10366:1 10429:2 10469:1 10491:1 10493:2 10515:1 10529:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10856:1 10860:1 10862:1 10865:1 10886:1 10909:1 10921:21 10926:1 10936:1 10937:1 10939:1 10948:4 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11192:1 11205:1 11225:1 11236:1 11251:4 11255:1 11261:1 11267:1 11316:1 11331:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12010:2 12012:1 12020:2 12053:1 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:1 12142:1 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12286:1 12295:1 12296:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12656:2 12672:1 12700:1 12730:2 12742:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12950:1 12952:1 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13041:1 13045:1 13092:2 13094:2 13099:1 13104:1 13123:1 13139:1 13143:2 13174:1 13190:1 13191:1 13202:1 13204:1 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13340:1 13379:1 13381:4 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:2 13664:1 13672:1 13677:1 13693:1 13712:5 13740:3 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13787:2 13858:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:3 13951:1 13953:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14053:1 14077:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:4 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14411:1 14439:1 14465:1 14468:1 14501:1 14521:1 14536:1 14549:2 14562:2 14607:2 14658:3 14662:1 14667:1 14676:2 14716:4 14720:2 14739:1 14746:1 14756:1 14767:2 14784:1 14790:3 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14943:1 14946:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:2 15160:2 15191:1 15192:1 15224:1 15275:2 15281:2 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:4 15872:2 15902:1 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:2 16133:1 16146:1 16147:1 16153:1 16187:3 16246:1 16255:1 16261:5 16270:1 16272:1 16275:1 16276:1 16281:1 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16550:2 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16712:3 16742:3 16777:1 16788:1 16821:1 16830:1 16848:1 16852:4 16876:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17120:1 17151:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:2 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:3 17849:1 17858:1 17861:1 17865:1 17875:1 17881:1 17889:1 17897:1 17918:2 17931:2 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18034:1 18044:1 18077:1 18097:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:1 18216:1 18231:2 18254:1 18257:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18599:1 18608:1 18613:2 18617:2 18630:1 18640:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18760:1 18775:4 18808:4 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:3 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:4 19155:2 19175:2 19180:1 19196:1 19212:1 19232:1 19249:1 19256:1 19300:1 19319:1 19321:3 19341:2 19345:1 19355:1 19359:1 19361:2 19365:1 19371:1 19389:1 19418:1 19441:1 19456:1 19458:1 19475:1 19503:1 19507:1 19514:1 19532:1 19535:3 19543:1 19545:1 19547:1 19550:1 19565:3 19567:1 19600:1 19606:1 19607:2 19608:1 19614:1 19651:2 19655:1 19665:2 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19970:1 20048:1 20050:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:1 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:1 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:1 20546:1 20568:1 20570:1 20587:1 20596:1 20598:1 20610:1 20621:2 20625:1 20630:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20715:4 20722:1 20748:1 20765:1 20796:1 20801:1 20821:1 20825:1 12 6:1 13:1 15:2 18:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 147:2 158:2 168:2 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 344:1 352:1 356:2 374:1 394:1 407:2 422:1 473:1 474:1 496:1 498:1 509:1 526:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 682:1 687:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 898:1 925:2 926:1 975:1 982:1 992:1 1023:4 1034:1 1038:1 1045:1 1050:3 1053:1 1061:1 1063:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1164:1 1185:1 1233:2 1246:1 1252:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1394:1 1404:1 1408:4 1415:1 1429:1 1433:1 1439:1 1468:2 1474:1 1480:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1667:1 1672:1 1687:1 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2184:1 2186:5 2190:1 2215:1 2221:1 2252:2 2265:1 2285:4 2286:1 2302:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:1 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2659:1 2666:2 2677:1 2681:2 2693:2 2721:1 2728:2 2731:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2946:1 2981:1 2985:1 2998:1 3000:1 3016:1 3048:1 3067:1 3077:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:1 3176:1 3177:1 3178:1 3189:1 3190:2 3191:2 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:1 3500:1 3505:1 3508:1 3509:2 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3654:1 3657:1 3668:1 3670:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3865:1 3883:4 3892:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:2 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4105:2 4113:1 4136:4 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4457:1 4460:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:1 4648:1 4654:1 4681:2 4703:1 4730:1 4739:1 4745:2 4750:2 4771:3 4781:1 4782:1 4796:4 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 5020:2 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:5 5115:1 5120:1 5123:1 5137:1 5148:4 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:2 5243:1 5253:1 5261:1 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5480:1 5497:1 5509:1507 5512:1 5516:1 5528:1 5545:1 5555:1 5574:1 5579:2 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5807:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:6 6688:1 6727:1 6735:2 6746:1 6759:6 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6874:1 6885:2 6886:1 6891:2 6898:1 6899:1 6901:1 6905:1 6910:1 6935:1 6961:1 7000:2 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:1 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7684:1 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7796:1 7797:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7856:1 7867:1 7884:1 7892:1 7914:1 7941:1 7961:1 7964:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8116:1 8131:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:1 8348:1 8355:2 8365:1 8424:1 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8619:1 8633:2 8642:2 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:1 8707:2 8709:2 8773:1 8797:1 8799:1 8803:4 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8828:1 8832:3 8833:7 8837:2 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:1 9139:2 9143:1 9210:2 9271:1 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9806:1 9808:1 9818:1 9823:1 9855:1 9887:2 9952:1 9960:3 9964:1 9973:1 9978:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:2 10249:1 10288:1 10303:1 10305:1 10325:2 10330:1 10347:1 10351:1 10352:1 10366:1 10429:2 10469:1 10491:1 10493:2 10515:1 10529:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10856:1 10860:1 10862:1 10865:1 10886:1 10909:1 10921:23 10926:1 10936:1 10937:1 10939:1 10948:4 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11192:1 11205:1 11225:1 11236:1 11251:4 11255:1 11261:1 11267:1 11316:1 11331:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12020:2 12053:1 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:1 12142:2 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12286:1 12295:1 12296:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12656:2 12672:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12950:1 12952:3 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13041:1 13045:1 13051:1 13071:1 13092:2 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13174:1 13176:1 13190:1 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13340:1 13379:1 13381:4 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:2 13664:1 13672:1 13676:1 13677:1 13693:1 13712:5 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13787:2 13809:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:3 13951:1 13953:1 13965:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14050:1 14053:1 14077:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:4 14232:1 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14501:1 14521:1 14536:1 14549:2 14562:2 14607:2 14658:3 14662:1 14667:1 14676:2 14716:4 14720:2 14739:1 14746:1 14756:1 14767:2 14768:1 14784:1 14790:3 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14943:1 14946:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:2 15160:2 15191:1 15192:1 15224:1 15275:2 15281:3 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:1 15824:1 15831:1 15850:5 15872:2 15902:1 15905:1 15942:2 15949:1 15950:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:2 16133:1 16144:1 16146:1 16147:1 16153:1 16187:4 16207:1 16246:1 16255:1 16261:5 16270:1 16272:1 16275:1 16276:1 16281:1 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16550:2 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16712:4 16742:3 16777:1 16788:1 16805:1 16821:1 16830:1 16848:1 16852:4 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17070:1 17120:1 17151:1 17161:1 17164:1 17205:2 17211:1 17230:1 17281:1 17293:1 17318:1 17320:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:2 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:1 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:3 17849:1 17855:1 17858:1 17861:1 17865:1 17875:1 17876:1 17881:1 17889:1 17897:1 17918:2 17931:2 17936:1 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:1 18216:1 18231:2 18254:1 18257:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18741:1 18760:1 18775:4 18808:4 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:4 19141:1 19155:2 19175:2 19180:1 19196:1 19212:1 19232:1 19249:1 19256:1 19300:1 19319:1 19321:3 19334:1 19341:2 19345:1 19355:1 19359:1 19361:2 19365:1 19371:1 19389:1 19418:2 19435:1 19441:1 19456:1 19458:1 19475:1 19503:1 19507:1 19514:1 19520:1 19532:1 19535:3 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19600:1 19606:1 19607:2 19608:1 19614:1 19645:1 19651:2 19655:1 19665:2 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19970:1 20026:1 20048:1 20050:1 20071:1 20073:1 20077:1 20103:1 20111:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:2 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:2 20546:1 20568:1 20570:1 20587:1 20589:1 20596:1 20598:1 20610:2 20621:2 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20796:1 20801:1 20821:1 20823:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 147:2 158:2 168:2 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 549:2 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:2 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 682:1 687:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 975:1 982:1 992:1 1023:4 1034:1 1038:1 1045:1 1050:3 1053:1 1061:1 1063:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1164:1 1185:1 1233:2 1246:1 1252:1 1265:2 1269:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1394:1 1404:1 1408:4 1415:1 1429:1 1433:1 1439:1 1449:1 1468:2 1474:1 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1667:1 1672:1 1687:1 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2180:1 2184:1 2186:5 2190:1 2196:1 2215:1 2221:1 2252:2 2265:1 2285:4 2286:1 2302:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:1 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2659:1 2666:2 2677:1 2681:2 2693:2 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:2 2853:1 2876:1 2886:1 2903:1 2905:1 2911:1 2933:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3016:1 3048:1 3067:1 3077:1 3113:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3197:3 3200:2 3202:2 3205:1 3207:1 3208:1 3211:1 3214:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3255:1 3256:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:2 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3637:1 3654:1 3657:1 3668:1 3670:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3865:1 3883:4 3892:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:2 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4090:1 4105:2 4113:1 4136:4 4141:1 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4271:1 4278:2 4281:1 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4457:1 4460:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:1 4648:1 4654:1 4678:1 4681:2 4688:1 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4771:3 4781:1 4782:1 4796:4 4839:1 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:5 5115:1 5120:1 5123:1 5137:1 5148:4 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:2 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1591 5512:1 5516:1 5528:1 5545:1 5555:1 5574:1 5579:2 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:7 6688:1 6727:1 6735:2 6746:1 6759:7 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6874:1 6878:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:1 6901:1 6905:1 6910:1 6935:1 6961:1 7000:2 7005:1 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7194:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7684:1 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7796:1 7797:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7961:1 7964:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8116:1 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8424:2 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8619:1 8633:2 8642:2 8644:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:1 8707:2 8709:2 8773:1 8797:1 8799:1 8803:4 8807:1 8809:1 8813:1 8814:1 8825:1 8827:1 8828:1 8832:3 8833:7 8837:2 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:1 9139:2 9143:1 9210:2 9248:1 9271:1 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9806:1 9808:1 9818:1 9823:1 9855:1 9887:2 9952:1 9960:3 9964:1 9973:1 9978:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:1 10171:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:2 10239:1 10249:1 10288:1 10303:1 10305:1 10325:2 10330:1 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10469:1 10476:1 10480:1 10491:1 10493:3 10515:1 10529:1 10534:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10860:1 10862:1 10865:1 10886:1 10909:2 10921:25 10926:1 10936:1 10937:1 10939:1 10948:5 10950:1 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:1 11112:1 11126:1 11180:1 11192:1 11205:2 11225:1 11236:1 11251:5 11255:1 11261:1 11267:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:4 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12020:2 12053:1 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:1 12142:2 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12286:1 12295:1 12296:1 12300:2 12314:1 12322:2 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12656:2 12672:1 12682:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12950:1 12952:3 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13041:1 13045:1 13051:1 13071:1 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:1 13183:1 13190:1 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:1 13340:1 13379:1 13381:5 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:2 13664:1 13672:1 13676:1 13677:1 13693:1 13712:5 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13787:2 13809:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13951:1 13953:1 13965:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14050:1 14053:1 14077:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14501:1 14521:1 14536:1 14549:2 14562:2 14607:2 14658:3 14662:1 14667:1 14676:2 14716:4 14720:2 14739:1 14746:1 14756:1 14767:2 14768:1 14784:1 14790:3 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14943:1 14946:1 14947:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:2 15160:2 15191:1 15192:1 15224:1 15275:2 15279:1 15281:3 15287:2 15301:1 15306:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15557:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:1 15831:1 15850:5 15872:2 15902:1 15905:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:2 16133:1 16144:1 16146:1 16147:1 16153:1 16187:4 16207:1 16246:1 16255:1 16261:5 16270:1 16272:2 16275:1 16276:1 16281:2 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16516:1 16550:2 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16712:4 16742:3 16755:1 16777:1 16788:1 16805:1 16821:1 16830:1 16848:1 16850:1 16852:5 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17070:1 17115:1 17120:1 17151:1 17161:1 17164:2 17205:2 17211:2 17230:1 17281:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:1 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:3 17849:1 17855:1 17858:1 17861:1 17865:1 17875:1 17876:1 17881:1 17889:1 17897:1 17912:1 17918:2 17931:2 17936:1 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:1 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:1 18476:1 18497:1 18505:3 18514:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18741:1 18760:1 18775:4 18808:5 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18953:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:5 19139:1 19141:1 19155:2 19175:2 19180:1 19196:1 19212:1 19227:1 19232:1 19249:1 19256:1 19300:1 19319:1 19321:3 19334:1 19341:2 19345:1 19355:1 19359:1 19361:3 19365:1 19371:1 19389:1 19418:2 19435:1 19441:1 19454:1 19456:1 19458:1 19475:1 19503:1 19507:1 19514:1 19520:1 19532:1 19535:4 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19645:1 19651:2 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19970:1 20011:1 20026:1 20048:1 20050:1 20071:1 20073:2 20077:1 20103:1 20111:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:2 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:2 20546:1 20568:1 20570:1 20587:1 20589:1 20596:1 20598:1 20610:2 20621:2 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20796:1 20801:1 20821:1 20823:2 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 142:1 147:2 158:2 168:2 173:1 180:1 185:1 195:1 265:1 273:1 277:1 322:1 328:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 549:3 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 682:1 687:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 975:1 982:1 992:1 1023:4 1034:1 1038:1 1045:1 1050:3 1053:1 1061:1 1063:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1164:1 1185:1 1220:1 1233:2 1246:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1394:1 1404:1 1408:4 1415:1 1429:1 1433:1 1439:1 1449:1 1468:2 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:1 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1901:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:4 2178:1 2179:1 2180:1 2184:1 2186:5 2190:1 2196:1 2215:1 2221:1 2252:2 2258:1 2265:1 2285:4 2286:2 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:1 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2659:1 2666:2 2677:1 2681:2 2693:2 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:3 2853:1 2876:1 2886:1 2903:2 2905:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3016:1 3048:1 3067:1 3077:1 3113:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3197:4 3200:2 3202:2 3205:1 3207:1 3208:1 3211:2 3214:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3255:1 3256:1 3283:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:3 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3637:1 3654:1 3657:1 3668:1 3670:1 3673:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3865:1 3883:4 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:3 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4136:4 4141:1 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4271:1 4278:2 4281:2 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4457:1 4460:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:1 4648:1 4654:1 4678:1 4681:2 4688:1 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4771:3 4781:1 4782:1 4796:4 4839:1 4856:1 4871:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:2 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1675 5512:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5884:1 5913:4 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:7 6688:1 6727:1 6735:2 6746:1 6759:7 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6874:1 6878:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:1 6901:1 6905:1 6910:1 6935:1 6961:1 7000:2 7005:1 7021:1 7039:2 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7194:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7684:1 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7796:1 7797:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7961:2 7964:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8116:1 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8424:2 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8642:2 8644:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:1 8707:2 8709:2 8773:1 8797:1 8799:1 8803:4 8807:1 8809:1 8813:2 8814:1 8825:1 8827:1 8828:1 8832:3 8833:7 8837:2 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:1 9139:2 9143:1 9210:2 9248:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9887:2 9952:1 9960:3 9964:1 9973:1 9978:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:1 10171:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:2 10239:1 10249:1 10288:1 10303:1 10305:1 10325:2 10330:1 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10448:1 10469:1 10476:1 10480:1 10491:1 10493:3 10515:1 10529:1 10534:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:1 10718:1 10724:2 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10860:1 10862:1 10865:1 10886:1 10909:2 10921:27 10926:1 10936:1 10937:1 10939:1 10948:5 10950:1 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:2 11112:1 11126:1 11180:1 11192:1 11205:2 11225:1 11236:1 11244:1 11251:5 11255:1 11261:1 11267:1 11272:1 11274:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:5 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12020:2 12053:1 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:2 12142:2 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12286:1 12295:1 12296:1 12300:2 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12682:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12950:1 12952:3 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:1 13051:1 13071:1 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:1 13183:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:1 13340:1 13379:1 13381:6 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13552:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:2 13664:1 13672:1 13676:1 13677:1 13693:1 13712:5 13717:1 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13787:2 13809:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13951:1 13953:1 13961:1 13965:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14050:1 14053:1 14077:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14501:1 14521:1 14536:1 14549:2 14562:2 14607:2 14658:3 14662:1 14667:1 14676:2 14716:4 14720:2 14739:2 14746:1 14756:1 14767:2 14768:1 14784:1 14788:1 14790:3 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:5 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:3 15160:2 15191:1 15192:1 15224:1 15275:2 15279:1 15281:3 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15557:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15850:5 15872:2 15902:1 15905:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 16004:2 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:2 16133:1 16144:1 16146:1 16147:1 16153:2 16187:4 16207:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16369:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16516:1 16550:2 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16703:1 16712:4 16742:3 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:5 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17070:1 17115:1 17120:1 17151:1 17161:1 17164:2 17205:2 17211:2 17230:1 17281:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:1 17875:1 17876:1 17881:1 17889:1 17897:1 17912:1 17918:2 17931:2 17936:1 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:1 18476:1 18497:1 18505:3 18514:1 18547:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18741:1 18760:1 18775:4 18808:5 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18953:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:6 19139:1 19141:1 19155:2 19175:2 19180:1 19196:1 19212:1 19227:1 19232:1 19249:1 19256:1 19300:1 19319:1 19321:3 19334:1 19341:2 19345:1 19355:1 19359:1 19361:3 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19475:1 19503:1 19507:1 19514:1 19520:1 19532:1 19535:5 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19645:1 19651:2 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 20011:1 20026:1 20048:1 20050:1 20071:1 20073:2 20077:1 20103:1 20111:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:2 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:2 20546:1 20568:1 20570:1 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:2 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20796:1 20801:1 20821:1 20823:2 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 142:1 147:2 158:2 168:2 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:3 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 682:1 687:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 938:1 975:1 982:1 992:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1061:2 1063:1 1064:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1164:1 1168:1 1185:1 1220:1 1233:2 1246:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1373:1 1394:1 1404:1 1408:4 1415:1 1429:1 1433:1 1439:1 1449:1 1468:2 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:1 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1897:1 1901:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2178:1 2179:1 2180:1 2184:1 2186:5 2190:1 2196:1 2215:1 2221:1 2252:2 2258:1 2265:1 2285:4 2286:2 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2578:1 2607:1 2613:1 2631:1 2655:2 2659:1 2666:2 2677:1 2681:2 2693:2 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:3 2853:1 2876:1 2886:1 2903:2 2905:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3016:1 3048:1 3067:1 3077:1 3113:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3197:4 3198:1 3200:2 3202:2 3205:1 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3255:1 3256:1 3283:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:3 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3637:1 3654:1 3657:1 3668:1 3670:1 3673:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3865:1 3883:4 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:3 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4136:5 4141:1 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4271:1 4278:2 4281:2 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4457:1 4460:1 4487:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:2 4648:1 4654:1 4678:1 4681:2 4688:1 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4771:3 4781:1 4782:1 4796:4 4839:1 4856:1 4871:1 4878:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:2 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1717 5512:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5847:1 5884:1 5913:4 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:7 6688:1 6725:1 6727:1 6735:2 6746:1 6759:7 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:1 6901:1 6905:1 6910:1 6935:1 6961:1 7000:2 7005:1 7021:1 7039:2 7049:1 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7194:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7796:1 7797:1 7807:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7961:2 7964:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8116:1 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8424:2 8478:1 8482:1 8483:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8642:2 8644:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:1 8797:1 8799:1 8803:4 8807:1 8809:1 8813:2 8814:1 8825:1 8827:1 8828:1 8832:3 8833:7 8837:2 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9210:2 9248:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9640:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9887:2 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:2 10171:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:2 10239:1 10249:1 10288:1 10303:1 10305:1 10325:2 10330:1 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10448:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10515:1 10529:1 10534:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:1 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:1 10886:1 10909:2 10921:28 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:1 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:2 11112:1 11126:1 11180:1 11192:1 11205:2 11225:1 11236:1 11244:1 11251:5 11255:1 11261:1 11267:1 11272:1 11274:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:1 11689:1 11698:5 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:2 12142:2 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12682:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12927:1 12950:1 12952:3 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13051:1 13071:2 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:1 13183:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:1 13340:1 13379:1 13381:6 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13552:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13712:5 13717:1 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13787:2 13809:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13951:1 13953:1 13961:1 13965:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14050:1 14053:1 14077:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14607:2 14658:3 14662:1 14667:1 14676:2 14716:4 14720:2 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:6 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:3 15142:1 15160:2 15191:1 15192:1 15224:1 15275:2 15279:1 15281:3 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15557:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15847:1 15850:5 15872:2 15902:1 15905:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16187:4 16207:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16369:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16516:1 16550:2 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16703:1 16712:4 16742:3 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:5 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17070:1 17115:1 17120:1 17151:1 17161:1 17164:2 17205:2 17211:2 17230:1 17281:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:1 17875:1 17876:1 17881:1 17889:1 17897:1 17912:1 17918:2 17931:2 17936:1 17939:1 17955:1 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:1 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18741:2 18760:1 18775:4 18808:5 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18953:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:6 19139:1 19141:1 19155:2 19175:2 19180:1 19196:1 19212:1 19227:1 19232:1 19249:1 19256:1 19300:1 19319:1 19321:3 19334:1 19341:2 19345:1 19355:1 19359:1 19361:3 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:1 19507:1 19514:1 19520:1 19532:1 19535:5 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:1 19651:2 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20103:2 20111:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:2 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:2 20546:1 20568:1 20570:1 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:2 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20796:1 20801:1 20821:1 20823:2 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 142:1 147:3 158:2 168:2 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 682:1 687:1 701:2 710:1 726:1 765:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 938:1 975:1 982:1 992:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1164:1 1168:1 1185:1 1220:1 1233:2 1246:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1373:1 1394:1 1404:1 1408:4 1415:1 1429:1 1433:1 1439:1 1449:1 1468:2 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:1 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1897:2 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2178:1 2179:1 2180:1 2184:1 2186:5 2190:1 2196:1 2215:1 2221:1 2252:2 2258:1 2265:1 2285:4 2286:2 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2567:1 2578:1 2607:1 2613:1 2631:1 2655:2 2659:1 2666:2 2677:1 2681:2 2693:2 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:3 2853:1 2876:1 2886:1 2903:2 2905:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3016:2 3048:1 3067:1 3077:1 3113:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3197:4 3198:1 3200:2 3202:2 3205:1 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:3 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3637:1 3654:1 3657:1 3668:1 3670:1 3673:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3865:1 3883:4 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:3 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4136:5 4141:1 4148:2 4149:1 4177:1 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4297:1 4306:1 4308:1 4325:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4457:1 4460:1 4487:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:2 4648:1 4654:1 4678:1 4681:2 4688:1 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4771:3 4781:1 4782:1 4796:4 4839:1 4856:1 4871:1 4878:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:2 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1725 5512:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5847:1 5884:1 5913:4 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:7 6688:1 6725:1 6727:1 6735:2 6746:1 6759:7 6796:1 6833:1 6838:1 6843:5 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:2 6901:1 6905:1 6910:1 6935:1 6945:2 6961:1 7000:2 7005:1 7021:1 7039:2 7049:1 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7194:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7796:1 7797:1 7807:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7961:2 7964:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8116:2 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8424:2 8478:1 8482:1 8483:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8642:2 8644:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:1 8797:1 8799:1 8803:4 8807:1 8809:1 8813:3 8814:1 8825:1 8827:1 8828:1 8832:3 8833:7 8837:2 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9210:2 9248:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9640:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:5 9721:1 9740:2 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9887:2 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10215:1 10227:1 10230:2 10239:1 10249:1 10288:1 10303:1 10305:1 10325:2 10330:2 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10448:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10515:1 10529:1 10534:1 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:1 10886:1 10909:2 10921:28 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:2 11112:1 11126:1 11180:1 11192:1 11205:2 11225:1 11236:1 11244:1 11251:5 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11721:1 11784:1 11794:1 11812:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:2 12142:2 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12682:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12927:1 12950:1 12952:3 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13051:1 13071:2 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:1 13183:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:1 13340:1 13379:1 13381:6 13389:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13532:2 13537:1 13552:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13712:5 13717:1 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13809:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13983:2 13986:1 14019:1 14037:1 14041:3 14044:1 14050:1 14053:1 14077:1 14125:1 14132:2 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14607:2 14658:3 14662:1 14667:1 14676:3 14716:4 14720:2 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14901:1 14910:1 14926:1 14936:6 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15107:3 15142:1 15160:2 15191:1 15192:1 15224:1 15275:2 15279:1 15281:3 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15548:1 15550:1 15557:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16187:4 16207:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16308:2 16331:1 16336:2 16349:1 16354:1 16366:1 16369:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16516:1 16550:2 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16703:1 16712:4 16742:3 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:5 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17070:1 17115:1 17120:1 17151:1 17161:1 17164:2 17205:2 17211:2 17230:1 17281:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:1 17875:1 17876:1 17881:1 17889:1 17897:1 17912:1 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:1 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18741:2 18760:1 18775:4 18808:5 18824:1 18838:1 18855:1 18870:1 18890:1 18921:1 18933:1 18941:1 18943:1 18953:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:6 19139:1 19141:1 19155:2 19175:2 19180:1 19196:1 19212:1 19227:1 19232:1 19249:2 19256:1 19300:1 19319:1 19321:3 19334:1 19341:2 19345:1 19355:1 19359:1 19361:3 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:1 19507:1 19514:1 19520:1 19532:1 19535:5 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:1 19651:2 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20103:2 20111:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:2 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:2 20546:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:2 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20796:1 20801:1 20811:2 20821:1 20823:2 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 142:1 147:3 158:2 168:3 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 572:1 587:1 588:1 590:2 593:1 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 701:2 710:1 712:1 726:1 765:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 938:1 975:1 982:1 992:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:1 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1373:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:1 1439:1 1449:1 1468:2 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:2 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1897:2 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:1 2184:1 2186:5 2190:1 2196:1 2215:1 2221:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:1 2504:1 2512:1 2537:1 2538:2 2567:1 2573:1 2578:1 2607:1 2613:1 2631:1 2643:1 2655:2 2659:1 2666:2 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:3 2853:1 2876:1 2886:1 2903:2 2905:1 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3016:2 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3197:4 3198:1 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:3 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3637:1 3654:1 3657:1 3668:1 3670:1 3673:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:1 3850:1 3855:1 3865:1 3883:4 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:3 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:2 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4288:1 4297:1 4306:1 4308:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4438:1 4457:1 4460:1 4487:1 4512:1 4514:1 4517:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:2 4648:1 4654:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:5 4781:1 4782:1 4796:4 4839:1 4856:1 4871:1 4878:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5155:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:3 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1777 5512:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5836:1 5847:1 5884:1 5913:4 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:1 6026:2 6036:1 6060:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6219:1 6247:1 6248:1 6255:1 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:7 6688:2 6725:1 6727:1 6735:2 6746:1 6759:7 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:2 6901:1 6905:1 6910:1 6935:1 6945:3 6961:1 7000:2 7005:3 7021:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7194:1 7205:1 7213:1 7215:2 7240:1 7257:2 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7815:1 7816:1 7819:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8116:2 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:5 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8424:2 8476:1 8478:1 8482:1 8483:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8642:2 8644:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:1 8797:1 8799:1 8803:4 8807:1 8809:1 8813:3 8814:1 8825:1 8827:1 8828:1 8831:1 8832:3 8833:9 8837:2 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9181:1 9191:1 9210:2 9248:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9595:3 9614:2 9629:1 9631:1 9637:1 9640:1 9644:1 9675:2 9684:1 9691:1 9703:1 9710:1 9719:6 9721:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9887:2 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:2 10062:2 10065:1 10087:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10215:1 10227:1 10230:2 10239:1 10249:1 10274:1 10288:1 10303:1 10305:1 10325:2 10330:2 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10515:1 10529:1 10534:3 10544:2 10546:3 10548:2 10553:3 10559:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:1 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10886:1 10909:2 10921:29 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:2 11112:1 11126:1 11180:1 11192:1 11205:2 11225:1 11236:1 11244:1 11251:5 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11721:1 11784:1 11794:1 11795:1 11812:1 11841:1 11899:1 11904:1 11909:1 11918:1 11942:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:2 12142:2 12167:1 12168:1 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13071:2 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:1 13381:6 13389:1 13429:1 13431:1 13433:1 13459:2 13466:1 13472:1 13474:1 13488:2 13512:1 13522:1 13532:2 13537:1 13552:1 13558:2 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:5 13717:1 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14575:1 14607:2 14658:3 14662:1 14667:1 14676:3 14716:4 14720:2 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14899:1 14901:1 14910:1 14926:1 14936:6 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:1 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15142:1 15160:2 15191:1 15192:1 15224:1 15275:2 15279:1 15281:4 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:1 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16180:1 16187:4 16207:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:2 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16516:1 16550:2 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16658:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:5 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:2 17070:1 17115:1 17120:1 17151:1 17161:1 17164:2 17205:2 17211:2 17230:1 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17727:1 17758:2 17764:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:1 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:1 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:2 18724:7 18736:1 18737:1 18741:2 18760:1 18775:4 18808:5 18824:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:1 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:6 19139:1 19141:1 19155:2 19175:2 19180:2 19196:1 19212:1 19227:1 19231:1 19232:1 19249:2 19256:1 19300:1 19307:1 19319:1 19321:3 19326:1 19334:1 19341:2 19345:1 19355:1 19359:1 19361:3 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:1 19507:1 19514:1 19520:1 19532:1 19535:5 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:1 19651:2 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:2 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20103:2 20111:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:3 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:2 20546:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:2 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20786:1 20796:1 20801:1 20811:2 20821:1 20823:2 20824:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 129:1 141:1 142:1 147:3 158:2 168:3 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 572:1 587:1 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 938:1 975:1 982:1 992:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:1 1073:1 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:1 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:4 1369:1 1373:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:1 1439:1 1449:1 1468:3 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1623:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:2 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1838:2 1854:1 1855:2 1861:1 1862:1 1870:1 1885:2 1889:1 1891:1 1897:2 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:2 2184:1 2186:5 2190:1 2196:1 2215:1 2218:1 2221:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2512:1 2537:1 2538:2 2567:1 2573:1 2578:1 2607:1 2613:1 2631:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2824:1 2838:1 2849:1 2850:3 2853:1 2876:1 2886:1 2903:2 2905:1 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:1 3016:2 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:4 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3197:4 3198:1 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:1 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:3 3528:1 3533:2 3545:1 3557:1 3575:1 3582:1 3586:4 3618:1 3637:1 3654:1 3657:1 3668:1 3670:1 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:2 3850:1 3855:1 3865:1 3883:4 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:3 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:2 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4288:1 4297:1 4306:1 4308:2 4317:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4407:1 4432:1 4438:1 4457:1 4460:1 4487:1 4512:1 4514:1 4517:1 4518:1 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4643:1 4647:2 4648:1 4654:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:5 4781:1 4782:1 4796:4 4839:2 4856:1 4871:1 4878:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5155:1 5157:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:3 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1868 5512:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5836:1 5844:1 5847:1 5884:1 5913:4 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6219:1 6247:1 6248:1 6255:2 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:1 6673:1 6687:7 6688:2 6725:1 6727:1 6735:2 6746:1 6759:7 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:2 6901:2 6905:1 6910:1 6923:1 6935:1 6945:3 6961:1 7000:2 7005:3 7021:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7192:1 7194:1 7205:1 7213:1 7214:1 7215:2 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:1 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7721:1 7728:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8116:2 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:6 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8424:2 8476:1 8478:1 8482:1 8483:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8640:1 8642:2 8644:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:1 8809:1 8813:3 8814:1 8825:1 8827:1 8828:1 8831:1 8832:3 8833:9 8837:2 8861:1 8879:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9181:1 9191:1 9210:2 9248:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9581:1 9595:3 9614:2 9629:1 9631:1 9637:1 9640:1 9644:1 9675:2 9684:1 9691:1 9697:1 9703:1 9710:1 9719:6 9721:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9887:2 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:4 10062:2 10065:1 10069:1 10087:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10215:1 10227:1 10230:2 10239:1 10249:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:2 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10515:1 10529:1 10534:3 10544:2 10546:3 10548:2 10553:3 10559:1 10565:1 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10886:1 10909:2 10921:29 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:1 11180:1 11192:1 11205:2 11225:1 11236:1 11244:1 11251:5 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:4 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:1 11721:1 11784:1 11794:1 11795:1 11812:1 11841:1 11899:1 11904:1 11909:1 11918:1 11942:1 11953:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12102:2 12142:2 12167:1 12168:2 12170:1 12178:1 12184:1 12187:1 12190:1 12191:1 12192:1 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12562:1 12579:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12968:1 12979:4 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:1 13381:6 13389:1 13429:2 13431:1 13433:1 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13532:2 13537:1 13552:1 13558:3 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:6 13717:1 13740:3 13743:1 13749:1 13750:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13864:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14353:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14716:4 14720:3 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14833:1 14865:1 14873:1 14888:1 14899:1 14901:1 14910:1 14926:1 14936:6 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15275:2 15279:2 15281:4 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:2 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:1 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:1 16187:4 16207:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:2 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:1 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16486:1 16516:1 16550:2 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16641:1 16647:1 16652:1 16658:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:5 16876:1 16884:1 16887:1 16889:1 16909:2 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:1 17161:1 17164:2 17205:2 17211:2 17230:1 17231:1 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17398:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:2 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:2 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:2 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:1 18717:3 18724:8 18736:1 18737:1 18741:2 18760:1 18775:5 18808:5 18824:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:2 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19130:1 19134:2 19136:1 19138:6 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19212:2 19227:1 19231:1 19232:1 19249:2 19256:1 19300:1 19307:1 19319:1 19321:3 19326:1 19334:1 19341:2 19345:1 19355:1 19359:1 19361:3 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:2 19507:1 19514:1 19520:1 19532:1 19535:5 19543:1 19545:1 19547:1 19550:2 19565:3 19567:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19812:1 19818:4 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20103:2 20111:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:1 20356:1 20360:1 20365:1 20369:1 20373:4 20375:1 20385:2 20396:1 20397:1 20401:1 20419:3 20436:1 20449:1 20451:1 20460:1 20478:4 20486:2 20508:3 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20786:1 20796:1 20801:1 20811:2 20821:1 20823:2 20824:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:3 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:1 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 882:1 898:1 925:2 926:1 938:1 975:1 982:1 992:1 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:1 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:5 1369:1 1373:1 1380:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:2 1439:1 1449:1 1468:3 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1623:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:2 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1822:1 1838:2 1854:1 1855:2 1861:1 1862:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:2 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:2 2184:1 2186:5 2190:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:1 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2567:1 2573:1 2578:1 2607:1 2613:1 2631:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2813:1 2824:1 2838:1 2849:1 2850:3 2853:1 2857:1 2876:1 2886:1 2903:2 2905:1 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:1 3016:2 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:5 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:4 3198:1 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:1 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:4 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3442:2 3500:1 3505:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3654:1 3657:1 3664:1 3668:1 3670:1 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:2 3850:1 3855:1 3865:1 3883:4 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:4 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:2 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4288:1 4297:1 4301:1 4306:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4400:1 4407:1 4432:1 4438:1 4457:1 4460:1 4487:1 4512:1 4514:1 4517:1 4518:1 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4654:1 4675:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:6 4781:1 4782:1 4796:4 4839:2 4856:1 4871:1 4878:1 4885:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5172:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:3 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:1971 5512:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6199:1 6219:1 6247:1 6248:1 6255:2 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6438:2 6441:1 6468:1 6478:3 6481:1 6492:1 6497:4 6510:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6687:8 6688:2 6701:1 6715:1 6725:1 6727:1 6735:2 6746:1 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:2 6901:2 6905:1 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:3 7021:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:1 7117:2 7124:1 7135:1 7139:1 7163:1 7183:2 7188:1 7192:1 7194:1 7205:1 7213:1 7214:1 7215:2 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:1 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:2 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:1 8294:6 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8408:1 8424:2 8476:1 8478:1 8482:1 8483:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8640:1 8642:2 8644:1 8651:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:1 8813:3 8814:1 8823:1 8825:1 8827:1 8828:1 8831:1 8832:3 8833:9 8837:2 8861:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 9014:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9575:1 9581:1 9595:3 9614:2 9619:1 9629:1 9631:1 9637:1 9640:1 9644:1 9675:2 9684:1 9691:1 9697:1 9703:1 9710:1 9719:6 9721:1 9726:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9887:2 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:4 10062:2 10065:1 10069:1 10087:1 10095:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10215:1 10227:1 10230:2 10239:1 10249:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:2 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10515:1 10529:1 10534:3 10544:2 10546:3 10548:2 10553:3 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10886:1 10908:1 10909:2 10921:30 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:1 11180:1 11192:1 11205:2 11225:1 11230:1 11236:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11581:5 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:1 11721:1 11784:1 11794:1 11795:1 11812:1 11841:1 11899:1 11904:1 11909:1 11918:1 11942:1 11953:1 11961:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:2 12168:2 12170:1 12178:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:2 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:1 12498:1 12548:1 12550:1 12561:1 12562:1 12579:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12968:1 12979:4 12981:1 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13092:3 13094:3 13099:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:1 13381:7 13389:1 13406:1 13429:2 13431:1 13433:1 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:1 13558:4 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:6 13717:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 14009:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14716:4 14720:3 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14899:1 14901:1 14910:1 14926:1 14936:6 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14989:1 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15246:1 15251:1 15275:2 15279:2 15281:4 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:2 15373:1 15396:1 15412:3 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:1 16187:4 16207:1 16240:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16639:1 16641:1 16646:1 16647:1 16652:1 16658:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17205:2 17211:2 17230:1 17231:1 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17398:1 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17599:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17670:1 17671:1 17690:1 17696:1 17697:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:3 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:2 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:2 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18564:1 18589:1 18598:1 18599:1 18608:1 18613:2 18617:3 18628:1 18630:1 18640:1 18652:1 18671:1 18675:1 18681:1 18698:2 18717:3 18724:9 18736:1 18737:1 18741:2 18760:1 18775:5 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:2 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19053:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19227:1 19231:1 19232:1 19249:2 19256:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19341:2 19345:1 19355:1 19359:1 19361:4 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:2 19507:1 19514:1 19520:1 19532:1 19535:6 19543:1 19545:2 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19818:4 19831:2 19848:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20081:1 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:1 20360:1 20365:1 20369:1 20373:5 20375:1 20385:2 20396:1 20397:1 20401:1 20419:3 20436:1 20449:1 20451:1 20460:1 20461:1 20478:4 20486:2 20508:3 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20681:1 20700:1 20705:3 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:2 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:1 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 882:1 898:1 925:3 926:1 938:1 975:1 982:1 992:1 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:1 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:5 1369:1 1373:1 1380:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:2 1439:1 1449:1 1468:3 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1623:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:3 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:2 1854:1 1855:2 1861:1 1862:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:2 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:3 2184:1 2186:5 2190:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2567:1 2573:2 2578:1 2607:1 2613:1 2631:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2813:1 2824:1 2838:1 2849:1 2850:3 2853:1 2857:1 2876:1 2886:1 2903:2 2905:1 2906:1 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:2 3016:2 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:5 3124:2 3128:1 3138:1 3141:2 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:4 3198:1 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:2 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:5 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3442:2 3500:1 3502:1 3505:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3654:1 3657:1 3664:1 3668:1 3670:1 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:3 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3918:1 3924:1 3943:1 3961:1 3963:2 3978:4 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:2 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4400:1 4407:1 4432:1 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:2 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:1 4654:1 4675:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:6 4781:1 4782:1 4796:4 4839:3 4850:1 4856:1 4871:1 4878:1 4885:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:4 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:2 5456:1 5458:1 5460:1 5470:2 5471:1 5477:1 5480:1 5497:1 5509:2044 5512:1 5513:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:2 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6199:1 6219:2 6247:1 6248:1 6255:2 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:2 6441:1 6468:1 6478:3 6481:1 6492:1 6497:4 6510:1 6557:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6683:1 6687:8 6688:2 6691:1 6701:1 6715:1 6725:1 6727:1 6735:2 6746:1 6758:1 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:2 6901:2 6905:1 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:3 7021:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7135:1 7139:1 7163:1 7183:2 7188:1 7192:1 7194:1 7205:1 7213:1 7214:1 7215:2 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7710:1 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:2 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:2 8294:6 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8408:1 8424:2 8476:1 8478:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8640:1 8642:3 8644:1 8651:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:1 8813:3 8814:1 8823:1 8825:1 8827:1 8828:1 8831:1 8832:3 8833:9 8837:2 8861:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 9014:1 9037:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9575:1 9581:1 9595:3 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9675:2 9682:1 9684:1 9691:1 9697:1 9703:1 9710:1 9719:6 9721:1 9726:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10069:1 10087:1 10095:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10215:2 10227:1 10230:2 10239:1 10249:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:2 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:1 10515:1 10529:1 10534:3 10544:2 10546:4 10548:2 10553:3 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:31 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:2 11225:1 11230:1 11236:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:5 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:2 11721:1 11784:1 11794:1 11795:1 11812:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:1 11942:1 11953:1 11961:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:2 12219:1 12222:1 12231:1 12235:2 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:2 12498:1 12548:1 12550:1 12561:1 12562:1 12579:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12968:1 12979:4 12981:1 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13092:3 13094:3 13099:1 13100:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:1 13381:7 13389:1 13406:1 13429:2 13431:1 13433:1 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:4 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:6 13717:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14716:4 14720:3 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14773:1 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14899:2 14901:1 14910:1 14926:1 14936:6 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14989:1 15006:1 15011:1 15013:1 15014:1 15017:3 15023:2 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15246:1 15251:1 15275:2 15276:1 15279:3 15281:4 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:2 15373:1 15396:1 15400:1 15412:3 15422:1 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16240:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16639:1 16641:1 16646:1 16647:1 16652:1 16658:1 16662:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17205:2 17211:2 17230:1 17231:2 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17398:2 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17599:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:4 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:3 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:3 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18555:1 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:3 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18717:3 18724:10 18736:1 18737:1 18741:2 18760:1 18771:1 18775:5 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:3 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19053:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19227:1 19231:1 19232:1 19249:2 19256:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19341:2 19345:1 19355:1 19359:1 19361:4 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:1 19545:2 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20081:1 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:1 20360:1 20365:1 20369:1 20373:5 20375:1 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20486:2 20508:3 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:1 20631:1 20632:2 20638:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 75:1 79:1 97:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:2 352:1 356:2 374:1 394:1 406:1 407:2 422:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:1 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 698:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 882:1 898:1 925:3 926:1 938:1 975:1 982:1 992:1 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:1 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:5 1369:1 1373:1 1380:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:2 1439:1 1449:1 1468:3 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:1 1623:1 1627:2 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:3 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:2 1854:1 1855:2 1861:1 1862:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:2 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:3 2184:1 2186:5 2190:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2351:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2567:1 2573:2 2578:1 2607:1 2613:1 2631:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:3 2853:1 2857:1 2876:1 2886:1 2903:2 2905:1 2906:2 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:2 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:5 3124:2 3128:1 3138:1 3141:2 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:4 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:3 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:5 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:1 3403:1 3428:1 3440:1 3442:2 3500:1 3502:1 3505:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3654:1 3657:1 3664:1 3668:1 3670:1 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3918:1 3920:1 3924:1 3943:1 3961:1 3963:2 3978:4 3982:1 3987:1 3992:1 3994:1 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:2 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4400:1 4407:1 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:1 4654:1 4675:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:6 4781:1 4782:1 4796:4 4839:3 4850:1 4856:1 4871:1 4878:1 4885:1 4917:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5086:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:4 5243:1 5253:1 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:1 5477:1 5480:1 5497:1 5509:2097 5512:1 5513:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6199:1 6219:2 6247:1 6248:1 6255:2 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:2 6441:1 6468:1 6478:3 6481:1 6492:1 6497:4 6510:1 6522:1 6557:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6683:1 6687:8 6688:2 6691:1 6701:1 6715:1 6725:1 6727:1 6735:2 6746:1 6758:1 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:2 6898:1 6899:2 6901:2 6905:1 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:3 7021:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7135:1 7139:1 7163:1 7183:2 7188:1 7192:1 7194:1 7205:1 7213:1 7214:1 7215:2 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:2 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7546:4 7552:1 7553:1 7599:1 7608:1 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7710:1 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7846:1 7850:2 7852:1 7856:1 7867:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:2 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:2 8294:6 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8408:1 8424:2 8476:1 8478:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8640:1 8642:3 8644:1 8651:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8823:1 8825:1 8827:1 8828:1 8831:1 8832:3 8833:9 8837:2 8861:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 9014:1 9037:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9483:1 9490:1 9492:1 9534:2 9575:1 9581:1 9595:3 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:1 9710:1 9719:6 9721:1 9726:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10069:1 10087:1 10095:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:2 10227:1 10230:2 10239:1 10249:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:2 10347:1 10351:1 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:2 10515:1 10529:1 10534:3 10544:2 10546:4 10548:2 10553:3 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:7 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:32 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:2 11225:1 11230:1 11236:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:5 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:1 11784:1 11794:1 11795:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:2 11942:1 11953:1 11961:1 11976:2 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:2 12219:1 12222:1 12231:1 12235:3 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12363:2 12367:1 12379:1 12387:1 12390:2 12393:1 12431:1 12453:2 12498:1 12548:1 12550:1 12561:1 12562:1 12579:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:1 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12968:1 12979:4 12981:1 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13092:3 13094:3 13099:1 13100:1 13104:1 13123:1 13139:1 13143:2 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:1 13381:7 13389:1 13406:1 13429:2 13431:1 13433:2 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:4 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:6 13717:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14175:2 14192:1 14213:1 14230:4 14232:2 14247:1 14248:1 14254:1 14267:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14714:1 14716:4 14720:3 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14773:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14989:1 15006:1 15011:1 15013:1 15014:2 15017:3 15023:2 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15246:1 15251:1 15275:2 15276:1 15279:3 15281:4 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:2 15373:1 15396:1 15400:1 15412:3 15422:1 15428:1 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15587:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:1 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16240:1 16246:1 16255:1 16261:6 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:1 16572:1 16581:1 16589:1 16615:1 16629:1 16639:1 16641:1 16646:1 16647:1 16652:1 16658:1 16662:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17205:2 17211:2 17218:1 17230:1 17231:2 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17524:1 17526:1 17530:2 17576:2 17594:1 17599:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:4 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:3 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:3 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18555:1 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:3 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18717:3 18724:10 18736:1 18737:1 18741:2 18760:1 18771:1 18775:5 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:3 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19053:1 19060:4 19061:8 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19341:2 19345:1 19355:1 19359:1 19361:4 19365:1 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:1 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:1 19545:2 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20071:1 20073:2 20077:1 20081:1 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:1 20360:1 20365:1 20369:1 20373:5 20375:1 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20486:2 20508:3 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:1 20631:2 20632:2 20638:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 72:1 75:1 79:1 97:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:2 349:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 432:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:2 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 698:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 866:1 882:1 898:1 925:3 926:1 938:1 972:1 975:1 982:1 992:1 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:2 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1261:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:5 1369:1 1373:1 1380:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:2 1439:1 1449:1 1468:3 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:2 1623:1 1627:3 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:3 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1767:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:3 1854:1 1855:2 1858:1 1861:1 1862:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:3 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:3 2184:1 2186:5 2190:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2336:1 2351:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2567:1 2573:2 2578:1 2607:1 2613:1 2631:1 2639:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:3 2853:1 2857:1 2876:1 2886:1 2903:2 2905:1 2906:2 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:3 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:5 3124:2 3128:1 3138:1 3141:2 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:4 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:3 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:5 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:2 3403:1 3428:1 3440:1 3442:2 3450:1 3500:1 3502:1 3505:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3654:1 3657:1 3664:1 3668:1 3670:1 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3790:2 3820:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3918:1 3919:1 3920:1 3924:1 3943:1 3953:1 3961:1 3963:2 3978:4 3982:1 3987:1 3992:1 3994:2 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:3 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:2 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4400:1 4407:1 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4612:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:1 4654:1 4675:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:8 4781:1 4782:1 4796:4 4839:3 4850:1 4856:1 4871:1 4878:1 4885:1 4917:1 4919:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5086:1 5091:1 5094:1 5096:1 5100:6 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:4 5243:1 5253:2 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:1 5477:1 5480:1 5497:1 5509:2201 5512:1 5513:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5580:1 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5774:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6006:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6199:1 6219:2 6247:1 6248:1 6255:2 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:2 6440:1 6441:1 6451:1 6468:1 6478:3 6481:1 6492:1 6497:4 6499:1 6510:1 6522:1 6545:1 6557:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6683:1 6687:10 6688:2 6691:1 6701:1 6715:1 6721:1 6725:1 6727:1 6735:2 6746:1 6758:1 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:3 6898:1 6899:2 6901:2 6905:2 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:3 7019:1 7021:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7135:2 7139:1 7163:1 7178:1 7183:2 7188:1 7192:1 7194:1 7205:1 7213:1 7214:1 7215:2 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:3 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7546:4 7552:1 7553:1 7599:1 7608:2 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7710:1 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7845:1 7846:1 7850:2 7852:1 7856:1 7867:1 7869:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:3 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:2 8294:7 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8408:1 8424:3 8476:1 8478:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8640:1 8642:3 8644:1 8651:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8823:1 8825:1 8827:1 8828:1 8831:1 8832:3 8833:9 8837:2 8861:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 8958:1 9014:1 9037:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9178:2 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9473:1 9483:1 9490:1 9492:1 9534:2 9575:1 9581:1 9595:4 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:1 9710:1 9719:6 9721:1 9726:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10067:1 10069:1 10087:1 10095:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:2 10227:1 10230:2 10239:1 10249:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:2 10347:1 10351:2 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:2 10515:1 10529:1 10534:3 10544:2 10546:4 10548:2 10553:4 10555:1 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:1 10655:1 10668:1 10669:1 10672:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:8 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:32 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:2 11215:1 11225:1 11230:1 11236:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11478:1 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:6 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:1 11784:1 11786:1 11794:1 11795:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:2 11942:1 11953:1 11961:1 11976:3 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:3 12194:1 12219:1 12222:1 12231:1 12235:3 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12360:1 12363:2 12367:1 12376:1 12379:1 12387:1 12390:2 12393:1 12407:1 12431:1 12453:2 12498:1 12548:1 12550:1 12561:1 12562:1 12579:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:2 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12918:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12964:1 12968:1 12979:4 12981:1 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13092:3 13094:3 13099:1 13100:1 13104:1 13123:1 13139:1 13143:2 13156:1 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13289:1 13291:1 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:2 13381:7 13389:1 13406:1 13429:2 13431:1 13433:2 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:4 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:1 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:6 13717:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14150:1 14175:2 14192:1 14213:1 14230:4 14232:2 14235:1 14247:1 14248:1 14254:1 14267:1 14281:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14523:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14678:1 14714:1 14716:4 14720:3 14739:2 14746:1 14755:1 14756:1 14767:2 14768:2 14773:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:1 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14974:1 14989:1 15006:1 15011:1 15013:1 15014:2 15017:3 15023:2 15024:1 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15121:1 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15246:1 15251:1 15275:2 15276:1 15279:3 15281:5 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:2 15373:1 15396:1 15400:1 15412:3 15422:1 15428:2 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15488:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15587:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:2 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16240:2 16246:1 16255:1 16261:6 16269:1 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:2 16451:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:1 16572:1 16581:1 16589:1 16610:1 16615:1 16629:1 16639:1 16641:1 16646:1 16647:1 16652:1 16658:1 16662:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17203:1 17205:2 17211:3 17218:1 17221:1 17230:1 17231:2 17252:1 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17372:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17505:1 17524:1 17526:1 17530:2 17576:2 17594:1 17599:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:4 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:3 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18168:1 18190:1 18194:1 18211:2 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:3 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:3 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18555:2 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:3 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18717:3 18724:10 18736:1 18737:1 18741:2 18760:1 18771:1 18775:5 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:3 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19053:1 19060:4 19061:9 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19336:1 19341:2 19345:1 19346:1 19355:1 19359:1 19361:4 19365:2 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:2 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:1 19545:2 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20053:1 20071:1 20073:2 20077:1 20081:1 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:2 20360:1 20365:1 20369:1 20373:5 20375:1 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20481:1 20486:2 20508:3 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:2 20631:2 20632:2 20638:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20748:1 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 13:1 15:2 18:1 30:1 33:1 56:1 72:1 75:1 79:1 97:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 322:1 328:1 344:2 349:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 432:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:2 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 698:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 866:1 882:1 898:1 925:3 926:1 938:1 972:1 975:1 982:1 992:1 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:2 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1261:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:6 1369:1 1373:1 1380:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:2 1439:1 1449:2 1468:3 1474:2 1480:2 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:2 1623:1 1627:3 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:3 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1767:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:3 1854:1 1855:2 1858:1 1861:1 1862:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:3 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2014:2 2023:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:4 2184:1 2186:5 2190:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2336:1 2351:1 2357:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2567:1 2573:2 2578:1 2607:1 2613:1 2631:1 2639:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:4 2853:1 2857:1 2876:1 2886:1 2903:4 2905:1 2906:2 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:4 3048:1 3067:1 3077:1 3080:1 3113:1 3115:1 3118:5 3124:2 3128:1 3138:1 3141:2 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:5 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:3 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:6 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:2 3403:1 3428:1 3435:1 3440:1 3442:2 3450:1 3500:1 3502:1 3505:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3570:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3645:1 3654:1 3655:1 3657:1 3664:1 3668:1 3670:1 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3747:1 3755:1 3764:1 3768:1 3771:1 3773:1 3790:2 3820:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3918:1 3919:1 3920:1 3924:1 3943:1 3953:1 3961:1 3963:2 3978:4 3982:1 3987:1 3992:1 3994:2 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:3 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:3 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:1 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4400:1 4407:1 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4612:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:1 4654:1 4675:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:8 4781:1 4782:1 4796:4 4839:4 4850:1 4855:1 4856:1 4871:1 4878:1 4885:1 4917:1 4919:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5086:1 5091:1 5094:1 5096:1 5100:7 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:4 5243:1 5253:2 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5409:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:1 5477:1 5480:1 5497:1 5509:2275 5512:1 5513:1 5516:1 5528:1 5545:1 5555:1 5566:1 5574:1 5579:2 5580:1 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5685:1 5699:2 5717:1 5766:1 5774:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6006:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:1 6122:1 6160:1 6174:1 6175:1 6178:1 6199:2 6219:2 6247:1 6248:1 6255:2 6274:2 6300:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:2 6440:1 6441:1 6451:1 6468:1 6478:3 6481:1 6492:1 6497:4 6499:1 6510:1 6522:1 6545:1 6557:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6683:1 6687:10 6688:2 6691:1 6701:1 6715:1 6721:1 6725:1 6727:1 6735:2 6746:1 6758:1 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:3 6898:1 6899:3 6901:2 6905:2 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:3 7019:1 7021:1 7036:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7135:2 7139:1 7163:1 7178:1 7183:2 7188:1 7192:1 7194:1 7205:1 7213:1 7214:1 7215:2 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:3 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7546:4 7552:1 7553:1 7599:1 7608:2 7627:3 7637:3 7647:1 7649:1 7656:1 7684:2 7694:1 7705:1 7710:1 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7766:1 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7845:1 7846:1 7850:2 7852:1 7856:1 7867:1 7869:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:3 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:2 8294:7 8303:1 8329:1 8331:1 8337:1 8338:1 8346:2 8348:1 8355:2 8365:1 8408:1 8424:3 8476:1 8478:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:1 8511:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8633:2 8640:1 8642:3 8644:1 8651:1 8652:1 8653:1 8662:1 8674:1 8675:2 8678:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8823:1 8825:1 8827:1 8828:1 8831:1 8832:4 8833:9 8837:2 8838:1 8861:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 8958:1 9005:1 9014:1 9037:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9111:2 9139:3 9143:1 9178:2 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9323:1 9325:1 9334:1 9337:2 9341:1 9349:1 9363:1 9368:1 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9436:1 9441:1 9455:1 9460:1 9470:1 9473:1 9483:1 9490:1 9492:1 9534:2 9575:1 9581:1 9595:4 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9657:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:1 9710:1 9719:6 9721:1 9726:1 9740:3 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9939:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 9988:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10067:1 10069:1 10074:1 10087:1 10095:1 10144:2 10153:2 10171:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:2 10227:1 10230:2 10239:1 10249:1 10257:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:3 10347:1 10351:2 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:2 10515:1 10529:1 10534:3 10544:2 10546:5 10548:2 10553:4 10555:1 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:2 10655:1 10668:1 10669:1 10672:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:1 10749:1 10762:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:8 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:33 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:2 11215:1 11225:1 11230:1 11236:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:1 11271:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11478:1 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:6 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:2 11784:1 11786:1 11794:1 11795:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:2 11942:1 11953:1 11961:1 11976:3 11979:1 11991:1 11992:1 11998:1 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:3 12194:1 12219:1 12222:1 12231:1 12235:3 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:1 12322:3 12333:2 12357:1 12359:1 12360:1 12363:2 12367:1 12376:1 12377:1 12379:1 12387:1 12390:2 12393:1 12407:1 12431:1 12453:2 12498:1 12548:1 12550:1 12560:1 12561:1 12562:1 12579:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12836:2 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12918:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12964:1 12968:1 12979:4 12981:1 12985:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13090:1 13092:3 13094:3 13099:1 13100:1 13104:1 13123:1 13139:1 13143:2 13156:1 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13283:1 13289:1 13291:2 13295:1 13300:1 13307:1 13308:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:2 13381:7 13389:1 13406:1 13429:2 13431:1 13433:2 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:4 13564:1 13566:2 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:2 13663:3 13664:1 13672:1 13676:1 13677:1 13693:1 13701:1 13712:7 13717:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:1 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14150:1 14175:2 14192:1 14213:1 14230:4 14232:2 14235:1 14247:1 14248:1 14254:1 14267:1 14281:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14523:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14678:1 14714:1 14716:4 14720:3 14739:3 14746:1 14755:1 14756:1 14767:2 14768:2 14773:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:2 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14974:1 14989:1 15006:1 15011:1 15013:1 15014:2 15017:3 15023:2 15024:1 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15121:1 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15230:1 15246:1 15251:1 15275:2 15276:1 15279:4 15281:5 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15362:2 15373:1 15396:1 15400:1 15412:3 15422:1 15428:2 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15488:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15587:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:1 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 15996:2 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16026:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:2 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16240:2 16246:1 16255:1 16261:7 16269:1 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:2 16451:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:1 16572:1 16581:1 16589:1 16610:1 16615:1 16629:1 16639:1 16641:1 16646:1 16647:1 16652:1 16658:1 16662:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17203:1 17205:2 17211:3 17218:1 17221:1 17230:1 17231:2 17252:1 17281:1 17289:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17372:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17471:1 17490:1 17505:1 17524:1 17526:1 17530:3 17576:2 17594:1 17599:1 17600:1 17601:1 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17709:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:5 17837:1 17838:1 17845:3 17849:1 17854:1 17855:1 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:4 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18017:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18168:1 18190:1 18194:1 18211:3 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:1 18374:1 18375:1 18389:2 18393:4 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:4 18476:1 18497:1 18505:3 18514:2 18547:1 18550:1 18555:2 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:4 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18705:2 18717:3 18724:10 18736:1 18737:1 18741:2 18760:1 18771:1 18775:6 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:4 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19053:1 19060:4 19061:9 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19257:2 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19336:1 19341:2 19345:1 19346:1 19355:1 19359:1 19361:4 19365:2 19371:1 19389:1 19418:2 19435:1 19436:1 19441:1 19454:1 19456:2 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:1 19545:2 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19761:2 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:1 19916:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20053:1 20071:1 20073:2 20077:1 20081:1 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:2 20360:1 20365:1 20369:1 20373:5 20375:1 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20481:1 20486:2 20508:3 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:2 20631:2 20632:2 20638:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20723:2 20748:1 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 12:1 13:1 15:2 18:1 30:1 33:1 56:1 72:1 75:1 79:1 97:1 118:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 302:1 322:1 328:1 344:2 349:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 432:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:2 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 698:1 701:2 710:1 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 866:1 882:1 898:1 925:3 926:1 938:1 972:1 975:1 982:1 992:2 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:2 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1261:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:7 1369:1 1373:1 1379:1 1380:1 1394:1 1404:1 1408:4 1415:1 1429:2 1433:2 1439:1 1449:2 1468:3 1474:2 1480:2 1481:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:2 1623:1 1627:3 1629:1 1637:1 1645:1 1665:1 1667:1 1672:1 1687:3 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1767:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:3 1854:1 1855:2 1858:1 1861:1 1862:2 1867:1 1870:1 1885:2 1889:1 1891:1 1897:3 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2008:1 2014:2 2023:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2074:1 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:5 2184:1 2186:7 2190:1 2195:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2336:1 2351:1 2357:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2567:2 2573:2 2578:1 2607:1 2613:1 2631:1 2639:1 2643:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:4 2853:1 2857:1 2876:1 2886:1 2903:4 2905:1 2906:2 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:4 3048:1 3067:1 3077:1 3080:1 3111:1 3113:1 3115:1 3118:5 3124:2 3128:1 3138:1 3141:2 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:5 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:5 3221:1 3223:1 3226:1 3227:1 3233:2 3236:3 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:6 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:2 3403:1 3428:1 3435:1 3440:1 3442:2 3450:1 3462:1 3500:1 3502:1 3505:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3570:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3645:1 3654:1 3655:1 3657:1 3664:1 3668:1 3670:2 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3745:1 3747:1 3755:1 3764:1 3768:1 3771:1 3773:1 3790:2 3820:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3915:1 3918:1 3919:1 3920:1 3924:1 3943:2 3953:1 3961:1 3963:2 3978:4 3982:1 3987:1 3992:1 3994:2 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:3 4182:1 4185:1 4188:1 4196:1 4212:1 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:3 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:2 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:1 4400:1 4407:1 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4612:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:1 4654:1 4675:1 4678:1 4681:2 4688:3 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:8 4772:1 4781:1 4782:1 4796:4 4803:1 4839:5 4850:1 4855:1 4856:1 4871:1 4878:1 4885:1 4917:1 4919:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5086:1 5091:1 5094:1 5096:1 5100:7 5113:1 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5234:4 5243:1 5253:2 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5409:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:2 5477:1 5480:1 5497:1 5509:2379 5512:1 5513:1 5516:1 5528:1 5542:1 5545:1 5555:1 5566:1 5574:1 5579:2 5580:1 5582:1 5583:1 5603:1 5607:1 5634:1 5667:1 5676:1 5685:1 5699:2 5717:1 5766:1 5774:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6006:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:2 6122:1 6160:1 6174:1 6175:1 6178:1 6199:2 6219:2 6247:1 6248:1 6255:2 6274:2 6300:1 6318:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:2 6440:1 6441:1 6451:1 6468:1 6478:3 6481:1 6492:1 6497:4 6499:1 6510:1 6522:1 6545:1 6557:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6683:1 6687:10 6688:3 6691:1 6701:1 6715:1 6721:1 6725:1 6727:1 6735:2 6746:1 6758:1 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:3 6898:1 6899:3 6901:2 6905:2 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:3 7019:1 7021:1 7036:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7131:1 7135:2 7138:1 7139:1 7163:1 7178:1 7183:2 7188:1 7192:1 7194:1 7205:1 7208:1 7213:1 7214:1 7215:2 7218:1 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:3 7348:1 7360:3 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7546:4 7552:1 7553:1 7599:1 7608:2 7627:4 7637:4 7647:1 7649:1 7656:1 7684:2 7694:1 7705:1 7710:1 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7766:1 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7845:1 7846:1 7850:2 7852:1 7856:1 7867:1 7869:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:3 8120:2 8131:1 8155:1 8160:1 8165:1 8166:1 8182:1 8195:1 8205:1 8237:1 8292:2 8294:7 8303:1 8329:1 8331:1 8337:1 8338:1 8344:1 8346:2 8348:1 8355:2 8365:1 8408:1 8424:3 8476:1 8478:1 8481:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:2 8511:1 8537:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8627:1 8633:2 8640:1 8642:4 8644:1 8651:1 8652:1 8653:1 8662:1 8663:1 8674:1 8675:2 8678:1 8685:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8823:1 8825:1 8826:1 8827:1 8828:1 8831:1 8832:5 8833:9 8837:3 8838:1 8861:1 8878:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 8958:1 9005:1 9014:1 9037:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9105:1 9111:2 9139:3 9143:2 9171:1 9178:2 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9307:1 9323:1 9325:1 9334:2 9337:2 9341:1 9349:1 9363:1 9368:2 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9425:1 9436:1 9441:1 9455:1 9460:1 9470:1 9473:1 9483:1 9490:2 9492:1 9534:2 9575:1 9581:1 9595:4 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9657:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:2 9710:1 9719:6 9721:1 9726:1 9740:3 9748:1 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9939:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 9988:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10067:1 10069:1 10074:1 10087:1 10095:1 10144:2 10153:2 10171:1 10179:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:2 10227:1 10230:2 10239:1 10249:1 10257:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:3 10347:1 10351:2 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:2 10513:1 10515:1 10529:1 10534:3 10544:2 10546:5 10548:2 10553:4 10555:1 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:2 10655:1 10668:1 10669:1 10672:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:2 10749:1 10762:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:8 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:33 10926:1 10936:1 10937:1 10939:1 10948:6 10950:1 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:2 11215:1 11225:1 11230:1 11236:1 11238:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:1 11271:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11470:1 11478:1 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:6 11601:2 11633:1 11634:1 11636:1 11648:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:2 11784:1 11786:1 11794:1 11795:1 11797:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:2 11942:1 11946:1 11953:1 11961:1 11976:3 11979:1 11991:1 11992:1 11998:2 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:3 12194:1 12219:1 12222:1 12231:1 12235:3 12236:1 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:2 12322:3 12333:2 12357:1 12359:1 12360:1 12363:2 12367:1 12376:1 12377:1 12379:1 12387:1 12390:3 12393:1 12407:1 12431:1 12453:2 12462:1 12498:1 12548:1 12550:1 12558:1 12560:1 12561:1 12562:1 12579:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12835:1 12836:2 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12918:1 12919:1 12927:1 12950:1 12952:3 12961:1 12963:1 12964:1 12968:1 12979:4 12981:1 12985:1 12997:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13090:1 13092:3 13094:3 13099:1 13100:1 13104:1 13123:1 13139:1 13143:2 13156:1 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13283:1 13289:1 13291:2 13295:1 13300:1 13307:1 13308:1 13311:1 13314:1 13320:1 13328:1 13334:3 13340:1 13379:2 13381:7 13389:1 13406:1 13429:2 13431:1 13433:2 13459:2 13465:1 13466:1 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:5 13564:1 13566:2 13567:1 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:2 13663:3 13664:1 13672:1 13676:2 13677:1 13693:1 13701:1 13712:7 13717:1 13739:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:2 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:1 14015:1 14019:1 14037:1 14041:4 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14150:1 14175:2 14192:1 14213:1 14230:4 14232:2 14235:1 14247:1 14248:1 14254:1 14267:1 14281:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14523:1 14535:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14678:1 14714:1 14716:4 14720:3 14739:3 14746:1 14755:1 14756:1 14767:2 14768:2 14773:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:2 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14894:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14974:1 14989:1 15006:1 15011:1 15013:1 15014:2 15017:3 15023:2 15024:1 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15121:1 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15230:1 15246:1 15251:1 15275:2 15276:1 15279:5 15281:5 15287:2 15301:1 15306:1 15326:1 15339:1 15344:1 15345:1 15362:2 15373:2 15396:1 15400:2 15412:3 15422:1 15428:2 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15488:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15587:1 15616:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:2 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 15996:2 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16026:1 16027:2 16029:1 16036:2 16041:1 16045:2 16075:1 16101:1 16106:1 16128:2 16130:3 16133:1 16144:1 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16240:2 16246:1 16255:1 16261:7 16269:1 16270:1 16272:2 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:2 16451:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:1 16572:1 16581:1 16589:1 16610:1 16615:1 16629:1 16639:1 16641:1 16646:1 16647:1 16652:1 16658:1 16662:1 16678:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17203:1 17205:2 17211:3 17218:1 17221:1 17230:1 17231:2 17252:1 17261:1 17276:1 17281:1 17289:1 17290:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17372:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17470:1 17471:1 17490:2 17505:1 17524:1 17526:1 17530:3 17576:2 17589:1 17594:1 17599:1 17600:1 17601:2 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17709:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:5 17837:1 17838:1 17845:3 17849:1 17854:1 17855:2 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:5 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17995:1 17998:2 17999:1 18017:1 18028:1 18034:1 18044:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18168:1 18190:1 18194:1 18211:3 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:3 18374:1 18375:1 18389:2 18393:4 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18461:1 18462:1 18468:5 18476:1 18497:1 18505:3 18508:1 18514:2 18547:1 18550:1 18555:2 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:4 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18705:2 18717:3 18724:10 18736:1 18737:1 18741:2 18760:1 18771:1 18775:6 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18941:1 18943:1 18953:5 18956:1 18961:1 18988:2 18999:1 19005:5 19028:1 19053:1 19060:4 19061:9 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19257:2 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19336:1 19341:2 19345:1 19346:1 19355:1 19359:1 19361:4 19365:2 19371:1 19389:1 19418:2 19434:1 19435:1 19436:1 19441:1 19454:1 19456:2 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:2 19545:3 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19603:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19740:1 19755:1 19761:2 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:1 19916:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20053:1 20071:1 20073:2 20077:1 20081:2 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:2 20360:1 20365:1 20369:1 20373:5 20375:1 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20481:1 20486:2 20508:4 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:2 20631:2 20632:2 20638:1 20664:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20723:2 20748:1 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 12:1 13:1 15:2 18:1 30:1 33:1 56:1 72:1 75:1 79:1 97:1 118:1 120:2 121:1 129:1 141:1 142:2 147:3 158:2 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 302:1 322:1 328:1 344:2 349:1 352:1 356:2 374:1 394:1 406:1 407:2 422:1 432:1 440:1 473:1 474:1 495:1 496:1 498:1 509:1 526:1 547:1 549:4 560:2 563:1 572:1 587:2 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:2 674:1 682:1 687:1 698:1 701:2 710:2 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 866:1 882:1 889:1 898:1 925:3 926:1 938:1 972:1 975:1 982:1 992:2 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:2 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1261:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:7 1369:1 1373:1 1379:1 1380:1 1394:1 1404:1 1408:4 1415:1 1421:1 1429:2 1433:2 1439:1 1449:2 1468:3 1474:2 1480:2 1481:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1543:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:2 1623:1 1627:3 1629:1 1637:1 1643:1 1644:1 1645:1 1665:1 1667:1 1672:1 1687:4 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1767:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:3 1854:1 1855:2 1858:1 1861:1 1862:2 1867:1 1870:1 1885:2 1889:1 1891:1 1897:3 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2008:1 2014:2 2023:1 2025:3 2029:1 2050:1 2052:1 2053:2 2061:2 2074:1 2077:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:5 2184:1 2186:8 2190:1 2195:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:2 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2336:1 2351:1 2357:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2545:1 2567:2 2573:2 2578:1 2607:1 2613:1 2631:1 2639:1 2643:1 2651:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2723:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:4 2853:1 2857:1 2876:1 2886:1 2903:4 2905:1 2906:2 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:4 3048:1 3067:1 3077:1 3080:1 3111:1 3113:1 3115:1 3118:6 3124:3 3128:1 3138:1 3141:2 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:5 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:6 3221:1 3223:1 3226:1 3227:2 3233:2 3236:3 3255:2 3256:1 3283:1 3285:1 3297:1 3302:1 3314:6 3331:2 3333:1 3334:1 3354:1 3357:1 3365:1 3372:1 3379:1 3385:2 3403:1 3428:1 3435:1 3440:1 3442:2 3450:1 3462:1 3500:1 3502:1 3505:1 3506:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3570:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3645:1 3654:1 3655:1 3657:1 3664:1 3668:1 3670:2 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:2 3745:1 3747:1 3755:1 3764:1 3768:1 3771:1 3773:1 3790:2 3820:1 3822:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3915:1 3918:1 3919:1 3920:1 3924:1 3943:2 3953:1 3961:1 3963:2 3978:4 3980:1 3982:1 3987:1 3992:1 3994:2 4010:1 4018:1 4024:1 4050:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:3 4182:1 4185:1 4188:1 4196:1 4212:2 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:3 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:2 4334:1 4341:1 4361:1 4364:1 4371:1 4384:1 4388:3 4400:2 4407:1 4411:1 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4612:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:2 4654:1 4675:1 4678:1 4681:2 4688:4 4703:1 4730:1 4735:1 4739:1 4745:2 4750:2 4755:1 4771:8 4772:1 4781:1 4782:1 4796:4 4803:1 4839:5 4850:1 4855:1 4856:1 4871:1 4878:1 4885:1 4891:1 4917:1 4919:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5084:1 5086:1 5091:1 5094:1 5096:1 5100:7 5113:1 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5233:1 5234:4 5243:1 5253:2 5261:2 5288:1 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5390:1 5409:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:2 5477:1 5480:1 5497:1 5509:2425 5512:1 5513:1 5516:1 5528:1 5542:1 5545:1 5555:1 5566:1 5574:1 5579:2 5580:1 5582:1 5583:1 5603:1 5607:1 5634:1 5649:1 5667:1 5676:1 5685:1 5699:2 5717:2 5766:1 5774:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5884:1 5913:5 5922:1 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6006:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:2 6122:1 6160:1 6174:1 6175:1 6178:1 6199:2 6219:2 6247:1 6248:1 6251:1 6255:2 6274:2 6300:1 6318:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:2 6440:1 6441:1 6451:1 6468:1 6478:3 6481:1 6492:1 6497:4 6499:1 6510:1 6522:1 6545:1 6557:1 6559:1 6560:1 6613:1 6619:1 6659:2 6673:1 6683:1 6687:11 6688:3 6691:1 6701:2 6707:1 6715:1 6721:1 6725:1 6727:1 6735:2 6746:1 6758:2 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:1 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:3 6898:1 6899:3 6901:2 6905:2 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:4 7019:1 7021:1 7036:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7131:1 7135:2 7138:1 7139:1 7157:1 7163:1 7178:1 7183:2 7188:1 7192:1 7194:1 7205:1 7208:1 7213:1 7214:1 7215:2 7218:1 7240:1 7257:2 7264:1 7274:1 7291:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:3 7348:1 7360:3 7388:1 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7519:1 7546:4 7552:1 7553:1 7599:1 7608:2 7627:4 7637:4 7647:1 7649:1 7656:1 7673:1 7684:2 7694:1 7705:1 7710:2 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7766:1 7771:1 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7845:1 7846:1 7850:2 7852:1 7856:1 7867:1 7869:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:3 8120:2 8131:1 8155:1 8160:1 8165:2 8166:1 8182:1 8195:1 8205:1 8210:1 8237:1 8292:2 8294:7 8303:1 8329:1 8331:1 8337:1 8338:1 8344:1 8346:2 8348:1 8355:2 8365:1 8401:1 8408:1 8424:3 8441:1 8476:1 8478:1 8481:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:2 8509:1 8511:1 8537:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8627:1 8633:3 8640:1 8642:4 8644:2 8651:1 8652:1 8653:1 8662:1 8663:1 8674:1 8675:2 8678:1 8685:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8823:1 8825:1 8826:1 8827:1 8828:1 8831:1 8832:5 8833:10 8837:3 8838:1 8861:1 8878:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:2 8958:1 9005:1 9014:1 9037:1 9060:1 9068:1 9072:2 9085:1 9089:2 9097:1 9105:1 9111:2 9139:3 9143:2 9171:1 9178:2 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9307:1 9323:1 9325:1 9334:2 9337:2 9341:1 9349:1 9363:1 9368:2 9375:1 9391:1 9397:1 9402:1 9403:1 9404:1 9417:1 9425:1 9436:1 9441:1 9455:1 9460:1 9470:1 9473:1 9483:1 9490:2 9492:1 9534:2 9550:1 9575:2 9581:1 9595:4 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9657:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:2 9710:1 9719:7 9721:1 9726:1 9740:3 9748:1 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9829:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9939:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 9988:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10067:1 10069:1 10074:1 10087:1 10095:1 10144:2 10153:2 10171:1 10179:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:2 10227:1 10230:2 10239:1 10249:1 10257:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:3 10347:1 10351:2 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:2 10513:1 10515:1 10529:1 10534:4 10544:2 10546:5 10548:2 10553:4 10555:1 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10627:1 10628:1 10642:2 10655:1 10666:1 10668:1 10669:1 10672:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:2 10749:1 10762:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:8 10832:3 10833:6 10839:1 10849:2 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:35 10926:1 10936:1 10937:1 10939:1 10948:6 10950:2 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:2 11215:1 11225:2 11230:1 11236:1 11238:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:2 11271:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11470:1 11478:1 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:7 11601:2 11633:1 11634:1 11636:1 11648:1 11666:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:2 11784:1 11786:1 11794:1 11795:1 11797:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:2 11942:1 11946:1 11953:1 11961:1 11976:3 11979:1 11991:1 11992:1 11998:2 12001:1 12010:2 12012:1 12016:1 12020:2 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12179:1 12181:1 12184:1 12187:1 12190:1 12191:1 12192:3 12194:1 12219:1 12222:1 12231:1 12235:3 12236:1 12254:1 12257:1 12259:1 12270:1 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:2 12322:3 12333:2 12357:1 12359:1 12360:1 12363:2 12367:1 12376:1 12377:1 12379:1 12387:1 12390:3 12393:1 12407:1 12431:1 12453:2 12457:1 12462:1 12482:1 12498:1 12548:1 12550:1 12558:1 12560:1 12561:1 12562:1 12579:2 12580:1 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12744:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12835:1 12836:2 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12918:1 12919:1 12927:1 12950:1 12952:4 12961:1 12963:1 12964:1 12968:1 12979:4 12981:1 12985:1 12997:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13090:1 13092:3 13094:3 13099:1 13100:1 13104:1 13123:1 13139:1 13143:2 13156:1 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13283:1 13289:1 13291:2 13295:1 13300:1 13307:1 13308:2 13311:1 13314:1 13316:1 13320:1 13328:1 13334:4 13340:1 13379:2 13381:7 13389:1 13406:1 13429:2 13431:1 13433:2 13459:2 13465:1 13466:2 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:5 13564:1 13566:2 13567:1 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:2 13663:3 13664:1 13672:1 13676:2 13677:1 13693:1 13701:1 13712:8 13717:1 13739:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:2 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:2 14015:1 14019:1 14033:1 14037:1 14041:5 14044:1 14050:1 14053:1 14077:1 14082:1 14125:1 14132:3 14150:1 14175:2 14192:1 14213:1 14230:4 14232:2 14235:1 14247:1 14248:1 14254:1 14267:1 14281:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14483:1 14501:1 14521:1 14522:1 14523:1 14535:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:2 14658:3 14662:1 14667:1 14676:3 14678:1 14714:1 14716:4 14720:3 14739:3 14746:1 14755:1 14756:1 14767:2 14768:2 14773:2 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:2 14819:1 14825:1 14833:1 14865:1 14873:1 14888:1 14894:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:2 14974:1 14989:1 15006:1 15011:1 15013:1 15014:2 15017:3 15023:2 15024:1 15031:2 15054:1 15055:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15106:1 15107:3 15121:1 15141:1 15142:1 15160:2 15191:1 15192:1 15224:1 15230:1 15246:1 15251:1 15275:2 15276:1 15279:5 15281:5 15287:2 15301:1 15304:1 15306:1 15326:1 15339:1 15344:1 15345:1 15362:2 15373:2 15396:1 15400:2 15412:3 15422:1 15428:2 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15488:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:1 15575:1 15577:1 15587:1 15616:1 15620:1 15624:1 15630:1 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:5 15872:2 15902:1 15905:2 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 15996:2 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16026:1 16027:2 16029:1 16036:3 16041:1 16045:2 16075:1 16101:1 16106:1 16128:2 16130:3 16133:1 16144:2 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16218:1 16240:2 16246:1 16255:1 16261:7 16269:1 16270:1 16272:2 16274:1 16275:1 16276:1 16281:2 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:2 16451:1 16456:2 16461:1 16471:1 16482:1 16483:1 16486:1 16516:1 16550:2 16556:1 16559:2 16572:1 16581:1 16589:1 16610:1 16615:1 16629:1 16639:1 16641:1 16646:2 16647:1 16652:1 16658:1 16662:2 16678:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:1 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16985:1 16997:2 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:1 17120:1 17151:2 17161:1 17164:2 17203:1 17205:2 17211:3 17218:1 17221:1 17230:1 17231:2 17252:1 17261:1 17276:1 17281:1 17289:1 17290:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17372:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17470:1 17471:1 17487:1 17490:2 17505:1 17524:1 17526:1 17530:3 17576:2 17589:1 17594:1 17599:1 17600:1 17601:2 17602:1 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17709:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17773:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17825:1 17835:5 17837:1 17838:1 17845:3 17849:1 17854:1 17855:2 17858:1 17861:1 17865:2 17875:1 17876:1 17881:1 17889:1 17897:1 17912:5 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17993:1 17995:1 17998:2 17999:1 18017:1 18028:1 18034:1 18044:1 18056:1 18058:1 18077:1 18097:1 18134:1 18144:1 18154:2 18168:1 18190:1 18194:1 18211:3 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18307:1 18353:1 18359:1 18369:3 18374:1 18375:1 18389:2 18393:4 18401:2 18416:1 18417:1 18421:1 18426:1 18432:1 18433:1 18461:1 18462:1 18468:5 18476:1 18497:1 18505:3 18508:1 18514:2 18547:1 18550:1 18555:2 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:4 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18705:2 18717:3 18724:11 18736:1 18737:1 18741:2 18760:1 18771:1 18775:7 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18938:1 18941:1 18943:1 18953:5 18956:1 18961:1 18988:2 18999:1 19005:5 19021:1 19028:1 19053:1 19060:4 19061:9 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19223:1 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19257:2 19276:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19336:1 19341:2 19345:1 19346:1 19355:1 19359:1 19361:4 19365:2 19371:1 19389:1 19418:2 19434:1 19435:1 19436:1 19441:1 19446:1 19454:1 19456:2 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:2 19545:4 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19603:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:1 19665:2 19711:1 19713:1 19717:1 19728:1 19740:1 19755:1 19761:2 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:1 19916:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20053:1 20071:1 20073:2 20077:1 20081:2 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:2 20360:1 20365:1 20369:1 20373:6 20375:2 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20481:1 20486:2 20508:4 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:2 20631:2 20632:2 20638:1 20664:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20723:2 20748:2 20765:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 12:1 13:1 15:2 18:2 30:1 33:1 56:1 72:1 75:1 79:1 97:1 118:1 120:2 121:1 129:1 141:1 142:2 147:3 158:3 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 302:1 322:1 328:1 344:2 349:1 352:1 356:2 374:1 394:1 406:1 407:2 416:1 422:1 432:1 440:1 473:1 474:1 495:1 496:1 498:1 509:2 526:1 547:1 549:4 560:2 563:1 572:1 587:2 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:3 674:1 682:1 687:1 698:1 701:2 710:2 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 866:1 882:1 889:1 898:1 925:3 926:1 938:1 972:1 975:1 982:1 992:2 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:2 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1185:1 1201:1 1220:1 1233:2 1246:1 1250:1 1252:1 1261:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:7 1369:1 1373:1 1379:1 1380:1 1394:1 1404:1 1408:4 1415:1 1421:1 1429:2 1433:2 1439:1 1449:2 1468:3 1474:2 1478:1 1480:2 1481:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1543:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:2 1623:1 1627:3 1629:1 1637:1 1643:1 1644:1 1645:1 1665:1 1667:1 1672:1 1687:5 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1767:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:3 1854:1 1855:2 1858:1 1861:1 1862:2 1864:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:3 1901:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2008:1 2014:2 2023:1 2025:3 2029:2 2050:1 2052:1 2053:2 2061:2 2074:1 2077:1 2081:1 2092:1 2117:5 2157:1 2178:1 2179:1 2180:5 2184:1 2186:8 2190:1 2195:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:3 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2336:1 2351:1 2357:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2545:2 2567:2 2573:2 2578:1 2607:1 2613:1 2631:1 2639:1 2643:1 2651:1 2655:2 2659:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2723:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:4 2853:1 2857:1 2876:1 2886:1 2903:4 2905:1 2906:2 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:4 3048:1 3067:1 3077:1 3080:1 3111:1 3113:1 3115:1 3118:6 3124:3 3128:1 3138:1 3141:3 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:5 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:6 3221:1 3223:1 3226:1 3227:2 3233:2 3236:3 3242:1 3255:2 3256:1 3283:1 3284:1 3285:1 3297:1 3302:1 3314:6 3331:2 3333:1 3334:2 3354:1 3355:1 3357:1 3365:1 3372:1 3379:1 3385:2 3403:1 3428:1 3435:1 3440:1 3442:2 3450:1 3462:1 3486:1 3500:1 3502:1 3505:1 3506:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3570:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3645:1 3654:1 3655:1 3657:1 3664:1 3668:1 3670:2 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:3 3745:1 3747:1 3755:1 3764:1 3768:1 3771:2 3773:1 3790:2 3820:1 3822:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3915:1 3918:1 3919:1 3920:1 3924:1 3943:2 3953:1 3961:1 3963:2 3978:4 3980:1 3982:1 3987:1 3992:1 3994:2 4010:1 4018:1 4024:1 4050:2 4051:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:3 4182:1 4185:1 4188:1 4196:1 4212:3 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:3 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:2 4334:1 4341:2 4361:1 4364:1 4371:1 4384:1 4388:4 4400:3 4407:1 4411:2 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4573:2 4576:1 4591:1 4607:1 4608:1 4612:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:2 4654:1 4675:1 4678:1 4681:2 4688:4 4703:1 4730:1 4735:1 4739:1 4745:2 4750:3 4755:1 4771:8 4772:1 4781:1 4782:1 4796:4 4803:1 4839:5 4850:1 4855:1 4856:1 4869:1 4871:1 4878:1 4885:1 4891:1 4917:1 4919:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5084:1 5086:1 5091:1 5094:1 5096:1 5100:7 5113:1 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:1 5209:1 5233:1 5234:5 5243:1 5253:2 5261:2 5262:1 5288:2 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5377:1 5390:1 5409:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:2 5477:1 5480:1 5497:1 5509:2486 5512:1 5513:1 5516:1 5528:1 5542:1 5545:1 5555:1 5566:1 5574:1 5579:3 5580:1 5582:1 5583:1 5603:1 5607:1 5634:1 5649:1 5654:1 5667:1 5676:1 5685:1 5699:2 5717:2 5729:1 5766:1 5774:1 5776:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5869:1 5884:1 5913:5 5922:2 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5995:1 5997:1 6006:1 6009:2 6026:2 6036:1 6060:1 6070:1 6085:1 6117:2 6122:1 6160:1 6174:1 6175:1 6178:1 6199:2 6219:2 6247:1 6248:1 6251:1 6255:3 6274:2 6300:1 6318:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:3 6440:1 6441:1 6451:1 6468:1 6478:4 6481:1 6492:1 6497:4 6499:1 6510:1 6522:1 6545:1 6557:1 6559:1 6560:1 6613:2 6619:1 6659:2 6673:1 6683:1 6687:12 6688:3 6691:1 6701:3 6707:1 6715:1 6721:1 6725:1 6727:1 6735:2 6746:1 6758:2 6759:8 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:2 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:3 6898:1 6899:3 6901:2 6905:2 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:4 7019:1 7021:1 7036:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:2 7117:2 7120:1 7124:1 7131:1 7135:2 7138:1 7139:1 7157:1 7163:1 7178:1 7183:2 7188:1 7192:1 7194:1 7205:1 7208:1 7213:1 7214:1 7215:2 7218:1 7240:3 7257:2 7264:1 7274:1 7291:1 7293:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:3 7348:1 7360:3 7388:1 7391:1 7395:1 7408:6 7413:1 7450:2 7452:8 7456:2 7519:1 7546:4 7552:1 7553:1 7583:1 7599:2 7608:2 7627:4 7637:4 7647:1 7649:1 7656:1 7673:1 7684:2 7694:1 7705:1 7710:2 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7766:1 7771:1 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7845:1 7846:1 7850:2 7852:2 7856:1 7867:1 7869:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:3 8120:2 8131:1 8155:1 8160:1 8165:2 8166:1 8182:1 8195:1 8205:1 8210:1 8237:1 8292:2 8294:7 8303:1 8329:1 8331:1 8337:1 8338:1 8344:1 8346:2 8348:1 8355:2 8365:2 8401:1 8408:1 8424:3 8441:2 8476:1 8478:1 8481:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:2 8509:1 8511:1 8537:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8627:1 8633:3 8638:1 8640:1 8642:4 8644:3 8651:1 8652:1 8653:1 8662:1 8663:1 8674:1 8675:2 8678:1 8685:1 8691:1 8697:2 8707:2 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8823:1 8825:1 8826:1 8827:1 8828:1 8831:1 8832:5 8833:10 8837:3 8838:1 8861:1 8878:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:3 8958:1 9005:1 9014:1 9037:1 9060:1 9068:1 9072:3 9085:1 9089:2 9097:1 9105:1 9111:2 9135:1 9139:3 9143:2 9171:1 9178:2 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9307:1 9323:2 9325:1 9334:2 9337:2 9341:1 9346:1 9349:1 9363:1 9368:2 9375:1 9391:1 9395:1 9397:1 9402:1 9403:1 9404:1 9417:1 9425:1 9436:1 9441:1 9455:1 9460:1 9470:1 9473:1 9483:1 9490:2 9492:1 9534:2 9550:1 9575:3 9581:1 9595:4 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9657:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:2 9710:1 9719:7 9721:1 9726:1 9740:3 9748:1 9758:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9829:1 9855:1 9871:1 9885:1 9887:2 9916:1 9935:1 9939:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 9988:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10067:1 10069:1 10074:1 10087:1 10095:1 10133:1 10144:2 10153:2 10171:1 10179:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:2 10227:1 10230:3 10239:1 10249:1 10257:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:3 10347:1 10351:2 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:2 10513:1 10514:1 10515:1 10526:1 10529:1 10534:4 10544:2 10546:5 10548:2 10553:4 10555:1 10559:1 10565:2 10567:2 10575:2 10581:1 10590:1 10595:1 10613:1 10627:1 10628:1 10642:2 10655:1 10666:1 10668:1 10669:1 10672:1 10677:2 10718:2 10724:2 10728:1 10731:1 10734:1 10747:1 10748:2 10749:1 10762:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:11 10832:3 10833:8 10839:1 10849:3 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:36 10926:1 10936:1 10937:1 10939:1 10948:6 10950:3 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11205:3 11215:1 11225:2 11230:1 11236:1 11238:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:2 11271:1 11272:1 11274:1 11277:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11470:1 11478:1 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:7 11601:2 11633:1 11634:1 11636:1 11648:1 11666:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:2 11775:1 11784:1 11786:1 11794:1 11795:1 11797:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:2 11942:1 11946:1 11953:1 11961:1 11976:3 11979:1 11991:1 11992:1 11998:2 12001:1 12010:2 12012:1 12016:1 12020:3 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12142:2 12167:3 12168:2 12170:1 12178:1 12179:1 12181:1 12184:2 12187:1 12190:1 12191:1 12192:3 12194:1 12219:1 12222:1 12231:1 12235:3 12236:1 12254:1 12257:1 12259:1 12270:2 12284:1 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:2 12322:3 12333:2 12357:1 12359:1 12360:1 12363:3 12367:1 12376:1 12377:1 12379:1 12387:1 12390:3 12393:1 12407:1 12423:1 12431:1 12453:2 12457:1 12462:1 12482:1 12498:1 12548:1 12550:1 12558:1 12560:1 12561:1 12562:1 12579:2 12580:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12742:1 12744:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12835:1 12836:2 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12918:1 12919:1 12927:1 12950:1 12952:5 12961:1 12963:1 12964:1 12968:1 12976:1 12979:4 12981:1 12985:1 12997:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13090:1 13092:4 13094:3 13099:1 13100:1 13104:1 13123:1 13139:2 13143:2 13156:1 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13245:1 13252:1 13266:1 13276:1 13280:1 13283:1 13289:1 13291:2 13295:1 13300:2 13307:1 13308:2 13311:1 13314:1 13316:1 13320:1 13328:1 13334:4 13340:3 13379:2 13381:7 13389:1 13406:1 13426:1 13429:2 13431:1 13433:2 13452:1 13459:2 13465:1 13466:2 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:5 13564:1 13566:2 13567:1 13568:1 13573:2 13581:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:2 13663:3 13664:1 13672:1 13676:2 13677:1 13693:1 13701:1 13712:8 13717:1 13739:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:2 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13924:1 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:2 14015:1 14019:1 14033:1 14035:1 14037:1 14041:5 14044:1 14050:1 14053:1 14077:2 14082:1 14125:1 14132:3 14150:1 14175:2 14192:1 14213:1 14230:4 14232:2 14234:1 14235:1 14247:1 14248:1 14254:1 14267:1 14281:1 14304:1 14314:1 14319:1 14329:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14475:1 14483:1 14501:1 14521:1 14522:1 14523:1 14535:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:3 14658:3 14662:1 14667:1 14676:3 14678:1 14714:1 14716:4 14720:3 14739:3 14746:1 14755:1 14756:1 14767:2 14768:2 14773:2 14783:1 14784:1 14788:1 14790:4 14791:1 14793:1 14807:2 14812:2 14819:1 14825:1 14833:2 14865:1 14873:1 14888:1 14894:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:3 14974:1 14989:1 15006:1 15011:1 15013:1 15014:2 15017:4 15021:1 15023:2 15024:1 15031:2 15054:1 15055:1 15056:1 15058:1 15060:1 15073:2 15076:1 15080:2 15082:1 15096:1 15106:1 15107:3 15121:1 15141:1 15142:1 15160:2 15178:1 15191:1 15192:1 15224:1 15230:1 15246:1 15251:1 15275:2 15276:2 15279:5 15281:5 15287:2 15301:1 15304:1 15306:1 15326:1 15339:1 15344:1 15345:1 15362:3 15373:2 15396:1 15400:2 15412:3 15422:1 15428:2 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15488:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:2 15575:1 15577:1 15587:1 15616:1 15620:1 15624:1 15630:2 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:1 15841:1 15847:1 15850:6 15872:2 15902:1 15905:2 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 15996:2 16004:2 16008:1 16013:1 16017:1 16018:1 16020:1 16026:1 16027:2 16029:1 16036:3 16041:1 16045:2 16075:1 16101:1 16106:1 16128:2 16130:3 16133:1 16144:3 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16218:1 16240:2 16246:1 16255:1 16261:7 16269:1 16270:1 16272:3 16274:1 16275:1 16276:1 16281:2 16286:1 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:2 16451:1 16456:3 16461:1 16471:1 16482:1 16483:1 16486:1 16496:1 16516:1 16528:1 16550:2 16556:1 16559:2 16572:1 16581:1 16589:1 16610:1 16615:1 16629:1 16639:1 16641:1 16646:2 16647:1 16652:1 16658:2 16662:2 16678:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:2 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16985:1 16997:3 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17115:2 17120:1 17151:2 17161:1 17164:2 17203:1 17205:2 17211:3 17218:1 17221:1 17230:1 17231:2 17252:1 17261:1 17276:1 17281:1 17289:1 17290:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17372:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17470:1 17471:1 17487:1 17490:2 17505:1 17524:1 17526:1 17530:3 17576:2 17589:1 17594:1 17599:1 17600:1 17601:2 17602:2 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17709:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17773:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17815:1 17825:1 17835:5 17837:1 17838:1 17845:3 17849:1 17854:1 17855:2 17858:1 17861:1 17865:2 17875:2 17876:1 17881:1 17889:1 17897:1 17912:5 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17993:1 17995:1 17998:2 17999:1 18017:1 18028:1 18034:1 18044:1 18056:1 18058:1 18077:1 18096:1 18097:1 18134:1 18144:1 18154:2 18168:1 18190:1 18194:1 18211:3 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18298:1 18307:1 18353:1 18359:1 18369:3 18374:1 18375:1 18389:2 18393:4 18401:3 18416:1 18417:1 18421:1 18426:1 18432:1 18433:1 18461:1 18462:1 18468:5 18476:1 18497:1 18505:3 18508:1 18514:2 18547:1 18550:1 18555:2 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:4 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18705:2 18717:3 18724:12 18736:1 18737:1 18741:2 18760:1 18771:1 18775:7 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18938:1 18941:1 18943:1 18953:5 18956:1 18961:1 18988:4 18999:1 19005:5 19021:2 19028:1 19053:1 19060:4 19061:12 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:2 19223:1 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19257:2 19276:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19336:1 19341:2 19345:1 19346:1 19355:1 19359:1 19361:4 19365:2 19371:2 19389:1 19418:2 19434:1 19435:1 19436:1 19441:1 19446:2 19454:1 19456:2 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:2 19545:5 19547:1 19550:2 19565:3 19567:1 19580:1 19581:1 19587:1 19600:1 19603:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:2 19665:2 19711:1 19713:1 19717:1 19728:1 19740:1 19755:1 19761:2 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:2 19912:1 19916:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20053:1 20071:1 20073:2 20077:1 20081:2 20103:2 20111:1 20114:1 20131:1 20140:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:2 20360:1 20365:1 20369:1 20373:6 20375:2 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20449:1 20451:1 20460:1 20461:1 20478:4 20481:1 20486:2 20508:4 20546:1 20565:1 20568:1 20570:2 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:2 20631:2 20632:2 20638:1 20664:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20723:2 20748:3 20765:1 20779:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1 12 6:1 12:1 13:1 15:2 18:2 30:1 33:1 56:1 71:2 72:1 75:1 79:1 97:1 118:1 120:2 121:1 129:1 141:1 142:2 147:3 158:3 168:4 169:1 173:1 180:1 185:1 195:1 211:1 265:1 273:1 277:1 302:1 322:1 328:1 344:2 349:1 352:1 356:2 374:1 394:1 406:1 407:2 416:1 422:1 432:1 440:1 473:1 474:1 495:1 496:1 498:1 509:2 526:1 547:1 549:4 560:2 563:1 572:1 587:2 588:1 590:2 593:2 595:1 604:3 608:1 627:2 629:1 630:1 639:1 667:1 668:3 669:1 672:3 674:1 682:1 687:1 698:1 701:2 710:2 712:1 726:1 765:1 785:1 795:1 809:2 842:1 864:1 866:1 882:1 889:1 898:1 925:3 926:1 938:1 972:1 975:1 982:1 992:2 1022:1 1023:4 1034:1 1037:1 1038:1 1045:1 1050:3 1053:1 1056:1 1061:2 1063:1 1064:2 1073:2 1074:1 1079:1 1089:3 1093:1 1097:1 1106:2 1131:4 1142:1 1161:1 1164:2 1168:1 1174:1 1185:1 1201:1 1220:1 1233:2 1246:2 1250:1 1252:1 1261:1 1265:2 1269:1 1292:1 1329:2 1340:1 1352:1 1357:1 1360:7 1369:1 1373:1 1379:1 1380:1 1394:1 1404:1 1408:4 1415:1 1421:1 1429:2 1433:2 1439:1 1449:2 1468:3 1474:2 1478:2 1480:2 1481:1 1485:1 1500:1 1507:2 1508:1 1515:1 1521:1 1543:1 1550:1 1553:1 1564:1 1576:1 1589:1 1591:1 1592:1 1594:1 1607:1 1608:2 1623:1 1627:4 1629:1 1637:1 1643:1 1644:1 1645:1 1665:1 1667:1 1672:1 1687:5 1691:1 1701:1 1709:1 1721:2 1755:1 1765:1 1767:1 1778:1 1800:1 1807:1 1813:1 1822:1 1831:1 1838:3 1854:1 1855:2 1858:1 1861:1 1862:2 1864:1 1867:1 1870:1 1885:2 1889:1 1891:1 1897:3 1901:1 1909:1 1912:1 1923:1 1930:2 1934:1 1956:1 1964:2 1972:1 1989:1 1993:1 1998:1 2008:1 2014:2 2023:1 2025:3 2029:2 2050:1 2052:1 2053:2 2061:2 2074:1 2077:1 2081:1 2092:1 2117:6 2157:1 2178:1 2179:1 2180:5 2184:1 2186:8 2190:1 2195:1 2196:1 2214:1 2215:1 2218:1 2221:1 2245:1 2252:3 2258:1 2265:1 2285:4 2286:2 2294:1 2302:1 2306:1 2315:1 2320:1 2326:1 2329:2 2330:1 2332:1 2334:1 2336:1 2351:1 2357:1 2367:1 2404:1 2411:2 2412:2 2432:1 2439:3 2446:2 2449:1 2459:4 2464:1 2484:1 2486:2 2487:1 2498:1 2501:2 2504:1 2510:1 2512:1 2537:1 2538:2 2545:2 2558:1 2567:2 2573:2 2578:1 2607:1 2613:1 2631:1 2639:1 2643:1 2651:2 2655:2 2659:1 2661:1 2666:3 2675:1 2677:1 2681:2 2693:2 2704:1 2721:1 2723:1 2728:2 2731:1 2736:1 2748:2 2769:1 2782:1 2813:1 2824:1 2838:1 2849:1 2850:4 2853:1 2857:1 2876:1 2886:1 2903:4 2905:1 2906:3 2910:1 2911:1 2933:1 2942:1 2946:1 2956:1 2981:1 2985:1 2998:1 3000:1 3009:3 3016:4 3048:1 3067:1 3077:1 3080:1 3111:1 3113:1 3115:1 3118:6 3124:3 3128:1 3138:1 3141:3 3157:1 3176:1 3177:1 3178:1 3189:2 3190:2 3191:2 3195:1 3197:5 3198:2 3200:2 3202:2 3205:2 3207:1 3208:1 3211:2 3213:1 3214:1 3219:1 3220:6 3221:1 3223:1 3226:1 3227:2 3233:2 3236:3 3242:1 3255:2 3256:1 3283:1 3284:1 3285:1 3297:1 3302:1 3314:6 3331:2 3333:1 3334:2 3354:1 3355:1 3357:1 3363:1 3365:1 3372:1 3379:1 3385:2 3403:1 3428:1 3435:1 3440:1 3442:2 3450:1 3462:1 3486:1 3500:1 3502:1 3505:1 3506:1 3508:1 3509:3 3528:1 3533:3 3545:1 3557:1 3570:1 3575:2 3582:1 3586:4 3618:1 3627:1 3637:2 3645:1 3654:1 3655:1 3657:1 3664:1 3668:1 3670:2 3673:1 3693:1 3694:1 3701:1 3716:1 3731:1 3737:1 3740:3 3745:1 3747:1 3755:1 3764:1 3768:1 3771:2 3773:1 3790:2 3820:1 3822:1 3849:4 3850:1 3855:1 3865:1 3883:4 3887:1 3892:1 3898:1 3912:2 3915:1 3918:1 3919:1 3920:1 3924:1 3943:2 3953:1 3961:1 3963:2 3967:2 3978:4 3980:1 3982:1 3987:1 3992:1 3994:2 4010:1 4018:1 4024:1 4050:2 4051:1 4060:1 4070:1 4077:1 4089:1 4090:1 4102:1 4105:2 4113:1 4114:1 4136:5 4141:1 4148:2 4149:1 4177:3 4182:1 4185:1 4188:1 4196:1 4212:5 4238:1 4248:1 4250:1 4252:1 4254:1 4256:2 4262:1 4263:1 4271:1 4278:2 4281:3 4282:1 4288:1 4297:1 4301:1 4306:1 4307:1 4308:2 4309:1 4317:1 4325:1 4326:1 4329:1 4330:1 4332:2 4334:1 4341:2 4361:1 4364:1 4371:1 4384:1 4385:1 4388:5 4400:3 4407:1 4411:2 4432:2 4438:1 4457:1 4460:1 4487:1 4488:1 4512:2 4514:1 4517:1 4518:3 4534:1 4547:1 4555:1 4565:1 4573:2 4576:1 4591:1 4607:1 4608:1 4612:1 4613:1 4619:1 4626:1 4643:1 4647:2 4648:1 4653:2 4654:1 4675:1 4678:1 4681:2 4688:4 4703:1 4730:1 4735:1 4739:1 4745:2 4750:3 4755:1 4771:8 4772:1 4781:1 4782:1 4796:4 4803:1 4839:5 4850:1 4855:1 4856:1 4869:1 4871:1 4878:1 4885:1 4887:1 4891:1 4917:1 4919:1 4926:1 4950:1 4979:1 4986:1 4998:1 5020:2 5023:1 5050:1 5060:1 5064:1 5068:1 5077:1 5083:1 5084:1 5086:1 5091:1 5094:1 5096:1 5100:7 5113:1 5115:1 5120:1 5123:1 5137:1 5148:4 5151:1 5154:1 5155:1 5157:1 5161:1 5162:1 5172:1 5176:1 5180:1 5182:1 5185:1 5201:2 5209:1 5233:1 5234:5 5243:1 5253:2 5261:2 5262:1 5288:2 5298:1 5322:1 5332:3 5337:1 5341:2 5348:1 5356:1 5358:1 5372:1 5377:1 5390:1 5409:1 5420:1 5426:1 5438:1 5442:3 5456:1 5458:1 5460:1 5470:3 5471:2 5477:1 5480:1 5497:1 5509:2530 5512:1 5513:1 5516:1 5528:1 5542:1 5545:1 5555:1 5566:1 5574:1 5579:3 5580:1 5582:1 5583:1 5603:1 5607:1 5634:1 5649:1 5654:1 5667:1 5676:1 5685:1 5699:2 5717:2 5729:1 5766:1 5774:1 5776:1 5807:1 5815:5 5816:1 5819:3 5825:1 5836:1 5844:1 5847:1 5869:1 5884:1 5913:5 5922:2 5925:1 5928:1 5947:1 5952:1 5953:1 5963:1 5972:2 5995:1 5997:1 6006:1 6009:2 6026:2 6036:1 6060:1 6070:1 6073:1 6085:1 6117:2 6122:1 6129:1 6160:1 6174:1 6175:1 6178:1 6199:2 6219:2 6247:1 6248:1 6251:1 6255:3 6274:2 6300:1 6318:1 6327:2 6351:1 6355:1 6368:1 6386:2 6387:1 6396:1 6399:1 6410:1 6420:1 6438:3 6440:1 6441:1 6451:1 6468:1 6478:4 6481:1 6492:1 6497:4 6499:1 6510:1 6522:1 6545:1 6557:1 6559:1 6560:1 6613:2 6619:1 6659:2 6673:1 6683:1 6687:12 6688:3 6691:1 6701:3 6707:1 6715:1 6721:1 6725:1 6727:1 6735:2 6746:1 6758:2 6759:8 6760:2 6765:1 6796:1 6833:1 6838:1 6843:6 6864:3 6865:2 6868:1 6872:2 6874:1 6878:1 6880:1 6884:1 6885:2 6886:1 6891:3 6898:1 6899:3 6901:2 6905:2 6910:1 6923:1 6935:1 6945:4 6960:1 6961:1 6989:1 7000:2 7005:4 7019:1 7021:1 7036:1 7038:1 7039:2 7049:1 7070:1 7093:1 7110:3 7117:2 7120:1 7124:1 7131:1 7135:2 7138:1 7139:1 7157:2 7163:1 7178:1 7183:2 7188:1 7192:1 7194:1 7205:1 7208:1 7213:1 7214:1 7215:2 7218:1 7240:3 7257:2 7264:1 7274:1 7291:1 7293:1 7294:3 7302:1 7303:1 7306:1 7319:1 7323:1 7326:2 7343:3 7348:1 7360:3 7388:1 7391:1 7395:1 7408:6 7413:1 7435:1 7450:2 7452:8 7456:2 7519:1 7546:4 7552:1 7553:1 7583:1 7599:2 7608:2 7627:4 7637:4 7647:1 7649:1 7656:1 7673:1 7684:2 7694:1 7705:1 7710:2 7721:1 7728:1 7735:1 7739:1 7747:1 7749:1 7752:1 7758:1 7762:2 7766:1 7771:2 7777:1 7780:1 7793:1 7796:1 7797:1 7807:1 7810:1 7815:1 7816:1 7819:2 7835:1 7842:1 7845:1 7846:1 7850:2 7852:3 7856:1 7867:1 7869:1 7881:1 7884:1 7892:1 7897:1 7914:1 7941:1 7959:1 7961:3 7964:1 7965:1 7966:2 7968:1 7973:1 7974:1 7982:1 7984:1 8010:1 8031:2 8033:1 8064:2 8074:1 8077:1 8115:1 8116:3 8120:2 8131:1 8155:1 8160:1 8165:2 8166:1 8182:1 8195:1 8205:1 8210:1 8237:1 8292:2 8294:8 8303:1 8329:1 8331:1 8337:1 8338:1 8344:1 8346:2 8348:1 8355:2 8357:1 8365:2 8390:1 8401:1 8408:1 8424:3 8441:2 8476:1 8478:1 8481:1 8482:1 8483:1 8491:1 8496:1 8502:1 8506:2 8507:2 8509:1 8511:1 8537:1 8538:1 8542:1 8546:1 8550:1 8557:1 8584:2 8595:1 8606:1 8619:1 8627:1 8633:3 8638:1 8640:1 8642:4 8644:4 8651:1 8652:1 8653:1 8662:1 8663:1 8674:1 8675:2 8678:1 8685:1 8691:1 8697:2 8707:3 8709:2 8773:2 8797:1 8799:1 8803:4 8807:2 8809:2 8813:3 8814:1 8815:1 8823:1 8825:1 8826:1 8827:1 8828:1 8831:1 8832:5 8833:10 8837:3 8838:1 8861:1 8878:1 8879:1 8880:1 8903:1 8917:1 8923:2 8926:3 8958:1 9005:1 9014:1 9037:1 9060:1 9068:1 9072:3 9085:1 9089:2 9097:1 9105:1 9111:2 9135:1 9139:3 9143:2 9171:1 9178:2 9180:1 9181:1 9191:1 9210:2 9248:1 9254:1 9268:1 9271:2 9275:1 9281:1 9294:1 9301:1 9307:1 9323:2 9325:1 9334:2 9337:2 9341:1 9346:1 9349:1 9363:1 9368:2 9375:1 9391:1 9395:1 9397:1 9401:1 9402:1 9403:1 9404:1 9417:1 9425:1 9436:1 9441:1 9455:1 9460:1 9470:1 9473:1 9483:1 9490:2 9492:1 9534:2 9550:1 9575:3 9581:1 9595:4 9614:2 9619:1 9629:1 9631:1 9634:1 9637:1 9640:1 9644:1 9657:1 9675:3 9682:1 9684:1 9691:1 9697:1 9703:2 9710:1 9719:7 9721:1 9726:1 9740:3 9748:1 9758:1 9787:1 9793:1 9797:2 9806:1 9808:1 9810:1 9818:1 9823:1 9829:1 9855:1 9858:1 9871:1 9885:1 9887:2 9916:1 9935:1 9939:1 9952:1 9960:3 9964:1 9973:1 9978:1 9984:1 9988:1 10000:1 10002:3 10003:1 10006:1 10018:1 10021:2 10024:1 10057:6 10062:2 10065:1 10067:1 10069:1 10074:1 10087:1 10095:1 10133:1 10144:2 10153:2 10171:1 10179:1 10188:1 10197:1 10202:1 10211:1 10213:1 10215:3 10227:1 10230:3 10239:1 10249:1 10257:1 10270:1 10274:1 10288:1 10303:2 10305:1 10325:2 10330:3 10347:1 10351:2 10352:1 10366:1 10397:1 10429:2 10443:1 10448:1 10460:1 10469:1 10476:1 10480:1 10491:1 10493:3 10511:1 10512:3 10513:1 10514:1 10515:1 10526:1 10529:1 10534:4 10544:2 10546:5 10548:2 10553:4 10555:1 10559:1 10565:2 10567:3 10570:1 10575:3 10581:1 10590:1 10595:1 10610:1 10613:1 10627:1 10628:1 10642:2 10655:1 10666:1 10668:1 10669:1 10672:1 10677:2 10718:2 10724:2 10728:2 10731:1 10734:1 10747:1 10748:2 10749:1 10762:1 10782:2 10785:1 10787:1 10788:1 10797:2 10829:12 10832:3 10833:8 10839:1 10849:3 10853:1 10856:1 10858:1 10860:1 10862:1 10865:2 10873:1 10886:1 10908:1 10909:2 10921:36 10926:1 10936:1 10937:1 10939:1 10948:6 10950:5 10953:1 10958:2 10961:2 10965:1 10974:1 10975:1 10991:1 10996:1 10997:1 11007:1 11028:1 11040:2 11041:2 11050:1 11053:1 11064:1 11068:1 11069:1 11077:1 11079:2 11095:2 11112:1 11126:1 11170:2 11180:1 11192:1 11201:2 11205:3 11215:1 11225:2 11230:1 11236:1 11238:1 11244:1 11251:6 11255:1 11260:1 11261:1 11267:3 11271:1 11272:1 11274:1 11277:1 11310:1 11316:1 11331:1 11337:1 11354:1 11378:2 11404:2 11438:2 11461:2 11470:1 11478:1 11485:1 11491:1 11500:1 11511:1 11514:1 11518:1 11554:2 11567:1 11581:7 11601:2 11633:1 11634:1 11636:1 11648:1 11666:1 11678:2 11689:1 11698:5 11715:1 11718:1 11720:3 11721:2 11775:1 11784:1 11786:1 11794:1 11795:1 11797:1 11812:1 11837:1 11841:1 11854:1 11899:1 11904:1 11909:1 11918:1 11935:3 11942:1 11946:1 11953:1 11961:1 11976:3 11979:1 11991:1 11992:1 11998:2 12001:1 12010:2 12012:1 12016:1 12020:3 12053:2 12073:1 12074:1 12076:1 12079:1 12086:1 12088:1 12099:1 12102:2 12125:1 12142:2 12167:3 12168:2 12170:1 12176:1 12178:1 12179:1 12181:1 12184:2 12185:1 12187:1 12190:1 12191:1 12192:3 12194:1 12219:1 12222:1 12231:1 12235:3 12236:1 12254:1 12257:1 12259:1 12270:2 12284:2 12286:1 12295:1 12296:1 12300:2 12303:1 12311:1 12314:2 12322:3 12333:2 12357:1 12359:1 12360:1 12363:3 12367:1 12376:1 12377:1 12379:1 12387:1 12390:3 12393:1 12407:1 12423:1 12431:1 12453:2 12457:1 12462:1 12482:1 12498:1 12533:1 12548:1 12550:1 12558:1 12560:1 12561:1 12562:1 12579:2 12580:2 12585:1 12586:1 12608:1 12625:2 12629:1 12632:1 12646:1 12656:2 12672:1 12678:1 12682:1 12684:1 12700:1 12730:2 12741:1 12742:1 12744:1 12748:1 12759:1 12766:1 12771:1 12781:2 12811:1 12835:1 12836:2 12841:1 12844:1 12872:1 12875:2 12876:1 12881:1 12899:1 12911:1 12915:1 12918:1 12919:1 12927:1 12950:1 12952:5 12961:1 12963:1 12964:1 12968:1 12976:1 12979:4 12981:1 12985:1 12997:1 13014:1 13024:2 13026:1 13028:1 13041:1 13045:2 13050:1 13051:1 13066:1 13071:2 13084:1 13090:1 13092:4 13094:3 13099:1 13100:1 13104:1 13123:1 13131:1 13139:2 13143:2 13156:1 13161:1 13163:1 13174:1 13176:1 13177:2 13183:1 13188:1 13190:2 13191:1 13202:1 13204:2 13231:3 13235:2 13245:1 13252:1 13266:1 13276:1 13280:1 13283:1 13289:1 13291:2 13295:1 13300:2 13307:1 13308:2 13311:1 13314:1 13316:1 13320:1 13328:1 13334:4 13340:3 13379:2 13381:7 13389:1 13406:1 13426:1 13429:2 13431:1 13433:2 13452:1 13459:2 13465:1 13466:2 13472:1 13474:1 13488:3 13512:1 13522:1 13530:1 13532:2 13537:1 13552:2 13558:5 13564:1 13566:2 13567:1 13568:1 13573:2 13581:1 13593:1 13594:2 13604:1 13616:1 13617:6 13651:1 13657:2 13663:3 13664:1 13672:1 13676:2 13677:1 13693:1 13701:1 13712:8 13717:1 13739:1 13740:3 13743:1 13749:1 13750:1 13758:1 13761:1 13763:1 13764:1 13779:1 13785:2 13787:2 13807:1 13809:1 13837:1 13858:1 13861:1 13864:1 13865:1 13879:1 13900:1 13908:1 13915:1 13922:1 13924:2 13949:4 13950:1 13951:1 13953:1 13961:1 13965:1 13979:1 13983:3 13986:1 13994:1 14009:2 14015:1 14019:1 14033:1 14035:1 14037:1 14041:5 14044:1 14050:1 14053:1 14077:2 14082:1 14125:1 14132:3 14138:1 14150:1 14175:2 14192:1 14213:1 14230:4 14232:2 14234:1 14235:1 14247:1 14248:1 14254:1 14267:1 14281:1 14304:1 14314:1 14319:1 14329:1 14330:1 14351:1 14353:1 14391:1 14409:1 14411:1 14437:1 14439:1 14465:1 14468:1 14475:1 14483:1 14489:2 14501:1 14521:1 14522:1 14523:1 14535:1 14536:1 14549:2 14562:2 14575:1 14587:1 14607:3 14658:3 14662:1 14667:1 14676:3 14678:1 14692:1 14714:1 14716:4 14720:3 14739:3 14746:1 14755:1 14756:1 14767:2 14768:2 14773:3 14783:1 14784:1 14788:1 14790:5 14791:1 14793:1 14807:2 14812:2 14819:1 14825:1 14833:2 14865:1 14873:1 14888:1 14894:1 14899:2 14901:1 14910:1 14926:1 14936:7 14937:1 14943:1 14946:1 14947:1 14949:1 14970:3 14974:1 14989:1 15006:1 15011:1 15013:1 15014:2 15017:4 15019:1 15021:1 15023:2 15024:1 15031:2 15054:1 15055:1 15056:1 15058:2 15060:1 15073:2 15076:1 15080:2 15082:1 15096:1 15106:1 15107:3 15121:1 15141:1 15142:1 15160:2 15178:1 15191:1 15192:1 15222:1 15224:1 15230:1 15246:1 15251:1 15275:2 15276:3 15279:5 15281:5 15287:2 15301:1 15304:1 15306:1 15326:1 15339:1 15344:1 15345:1 15362:3 15373:2 15396:1 15400:2 15412:3 15422:1 15428:2 15456:1 15461:1 15463:1 15466:1 15472:1 15480:1 15485:1 15488:1 15490:1 15499:1 15521:1 15522:1 15548:1 15550:1 15557:1 15560:1 15562:1 15568:2 15575:1 15577:1 15587:2 15616:1 15620:1 15624:1 15630:2 15632:2 15689:1 15696:1 15710:1 15712:1 15714:4 15719:1 15720:2 15728:1 15731:1 15733:1 15756:1 15766:1 15785:1 15792:1 15798:1 15802:2 15824:2 15831:2 15841:1 15847:1 15850:6 15872:2 15902:1 15905:2 15919:1 15942:2 15949:1 15950:1 15960:1 15961:1 15975:1 15990:1 15996:2 16004:2 16008:1 16013:1 16017:1 16018:2 16020:1 16025:1 16026:1 16027:2 16029:1 16036:3 16041:1 16045:2 16075:1 16101:1 16106:1 16128:2 16130:3 16133:1 16144:3 16146:1 16147:1 16153:2 16159:1 16180:2 16187:4 16207:1 16218:1 16240:2 16246:1 16255:1 16261:7 16269:1 16270:1 16272:3 16274:1 16275:1 16276:1 16281:2 16286:1 16295:1 16308:3 16331:1 16336:2 16349:1 16354:2 16366:1 16369:1 16382:1 16387:2 16397:1 16403:1 16408:1 16415:2 16430:1 16451:1 16456:3 16461:1 16471:1 16482:1 16483:1 16486:1 16496:1 16516:1 16528:1 16550:2 16556:1 16559:2 16572:1 16581:1 16589:1 16610:1 16615:1 16629:1 16639:1 16641:1 16646:2 16647:1 16652:1 16658:2 16662:2 16678:1 16680:1 16695:1 16703:1 16712:4 16730:1 16742:3 16751:1 16755:1 16777:1 16788:1 16805:1 16813:1 16821:1 16830:1 16848:1 16850:2 16852:6 16876:1 16884:1 16887:1 16889:1 16909:3 16917:2 16919:2 16928:2 16931:1 16936:2 16945:1 16967:1 16970:1 16985:1 16997:3 17001:1 17017:1 17020:1 17026:1 17030:2 17036:1 17037:1 17063:4 17070:1 17093:2 17115:3 17120:1 17151:2 17161:1 17164:2 17203:1 17205:2 17211:3 17218:1 17221:1 17226:1 17230:1 17231:2 17235:1 17252:1 17261:1 17276:1 17281:1 17289:1 17290:1 17293:1 17318:1 17320:1 17324:1 17339:1 17348:1 17359:1 17372:1 17386:1 17395:1 17398:3 17400:1 17401:1 17405:1 17410:1 17411:1 17418:2 17443:1 17447:1 17470:1 17471:1 17487:1 17490:2 17505:1 17524:1 17526:1 17530:3 17576:2 17589:1 17594:1 17599:1 17600:1 17601:2 17602:2 17614:1 17637:1 17656:1 17657:3 17668:1 17669:1 17670:1 17671:1 17690:1 17696:1 17697:1 17709:1 17727:1 17758:2 17764:1 17766:1 17769:2 17770:1 17773:1 17775:2 17777:1 17779:1 17782:1 17785:1 17786:1 17795:2 17798:1 17811:1 17812:1 17814:2 17815:1 17825:1 17835:5 17837:1 17838:1 17845:3 17849:1 17854:1 17855:2 17858:1 17861:1 17865:2 17875:2 17876:1 17881:1 17889:1 17897:1 17912:5 17918:2 17931:2 17936:1 17939:1 17955:2 17980:4 17989:1 17993:1 17995:1 17998:2 17999:1 18017:1 18028:1 18034:1 18044:1 18056:1 18058:1 18077:1 18096:1 18097:1 18134:1 18144:1 18154:2 18168:1 18190:1 18194:1 18211:3 18213:2 18216:1 18231:2 18254:1 18257:1 18275:1 18283:1 18298:1 18307:1 18353:1 18359:1 18369:3 18374:1 18375:1 18389:2 18393:4 18401:3 18416:1 18417:1 18421:1 18426:1 18432:1 18433:1 18461:1 18462:1 18468:5 18476:1 18497:1 18505:3 18508:1 18514:2 18547:1 18550:1 18555:2 18564:1 18589:1 18591:1 18598:1 18599:1 18608:1 18613:2 18617:4 18628:1 18630:1 18640:1 18652:1 18656:1 18671:1 18675:1 18681:1 18698:2 18705:2 18717:3 18724:14 18736:1 18737:1 18741:2 18760:1 18771:1 18775:7 18781:1 18808:6 18824:1 18825:1 18838:1 18855:1 18870:1 18890:1 18897:1 18921:1 18933:1 18938:1 18941:1 18943:1 18953:5 18956:1 18961:1 18988:4 18999:1 19005:5 19021:2 19028:1 19053:1 19060:4 19061:13 19064:1 19071:1 19081:1 19086:2 19123:1 19130:1 19134:2 19136:1 19138:7 19139:1 19140:1 19141:1 19155:2 19175:2 19180:2 19196:1 19209:1 19212:3 19223:1 19227:1 19231:1 19232:1 19249:2 19252:1 19256:1 19257:2 19276:1 19300:1 19307:1 19319:1 19321:3 19326:2 19334:1 19336:1 19341:2 19345:1 19346:1 19355:1 19359:1 19361:4 19365:2 19371:2 19389:1 19418:2 19434:1 19435:1 19436:1 19441:1 19446:2 19454:1 19456:2 19458:1 19460:1 19475:1 19503:2 19506:1 19507:1 19514:1 19520:1 19532:1 19535:6 19543:2 19545:5 19547:1 19550:2 19565:3 19567:1 19580:1 19581:2 19587:1 19600:1 19603:1 19606:1 19607:2 19608:1 19614:1 19630:1 19645:2 19651:2 19654:1 19655:2 19665:2 19680:1 19711:1 19713:1 19717:1 19728:1 19740:1 19755:1 19761:2 19764:1 19768:1 19783:1 19804:2 19805:1 19812:1 19815:1 19818:4 19831:2 19848:1 19856:1 19866:1 19884:2 19890:2 19901:1 19905:2 19912:1 19916:1 19940:1 19953:1 19959:1 19970:1 19992:1 20011:1 20026:2 20048:1 20050:1 20053:1 20071:1 20073:2 20077:1 20081:2 20103:2 20111:1 20114:1 20131:1 20140:1 20149:1 20180:1 20181:1 20184:1 20190:2 20207:1 20213:1 20225:1 20226:1 20246:1 20270:1 20292:1 20296:2 20299:1 20315:1 20329:1 20339:2 20351:2 20356:2 20360:1 20365:1 20369:1 20373:6 20375:2 20385:2 20396:1 20397:1 20401:1 20419:4 20436:2 20437:1 20442:2 20449:1 20451:1 20460:1 20461:1 20478:4 20481:1 20486:2 20508:4 20546:1 20565:1 20568:1 20570:2 20577:1 20587:1 20589:1 20596:1 20598:1 20603:1 20610:2 20621:3 20625:1 20630:2 20631:2 20632:2 20638:1 20664:1 20673:1 20681:1 20700:1 20705:4 20709:1 20711:1 20714:1 20715:4 20722:1 20723:2 20748:3 20765:1 20779:1 20786:1 20796:1 20801:1 20811:3 20821:1 20823:2 20824:1 20825:1
0a87ae7e95a8e5682585196330d5a6a5881d0acf
449d555969bfd7befe906877abab098c6e63a0e8
/3754/CH35/EX35.1/35_1.sce
8b50ba6f9b213de937f56da8eee67380d48f3a96
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
336
sce
35_1.sce
clear// //Variables Adm = 200000.0 //Differential gain Acm = 6.33 //Common mode gain //Calculation CMRR = 20 * log10(Adm / Acm) //Common-mode rejection ratio (in Decibels) //Result printf("\n The common-mode rejection ratio is %0.0f dB.",CMRR)
3254a388197511a0ad200146689a2a8b2b052f82
449d555969bfd7befe906877abab098c6e63a0e8
/75/CH3/EX3.1/ex_1.sce
ec4bd7a4a74bb03156103581b689cfb3fe04786e
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
67
sce
ex_1.sce
// PG (134) X = [0, -1, 1] Y = [1, 2, 3] lagrange(X,Y)
3f58607e4a0b060aea01cb80a13300c92e422f93
449d555969bfd7befe906877abab098c6e63a0e8
/2444/CH1/EX1.18/ex1_18.sce
a61bcdfd5113ad89bd9f88e886ad3584077f5d74
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
383
sce
ex1_18.sce
// Exa 1.18 clc; clear; close; format('v',7) // Given data E_CminusE_F = 0.24;// in eV T = 300;// in K T1 = 350;// in K // E_CminusE_F = K*T*log(n_c/N_D) (i) // E_CminusE_F1 =K*T1*log(n_C/N_D) (ii) // From eq(i) and (ii) E_CminusE_F1 = E_CminusE_F*(T1/T);// in eV disp("The new position of the Fermi level lies "+string(E_CminusE_F1)+" eV below the conduction band")
98bf6699e46dda2e7de985dd7c67caa3d0d9d47c
449d555969bfd7befe906877abab098c6e63a0e8
/2198/CH1/EX1.9.2/Ex1_9_2.sce
38cecbb4d2aecb6f8c7f79ffafe874d7b1575f3d
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
174
sce
Ex1_9_2.sce
//Ex 1.9.2 clc;clear;close; format('v',9); //Given : l=6*10^-2;//m V=12;//Volt v=73;//m/s E=V/l;//V/m mu=v/E;//m^2/V-s disp(mu,"Electron mobility(m^2/V-s) : ");
e492521722fad8e88dccf7dee8fbbab8014c4346
a7ca28bb2fdd3ab401386571d8a374a81e4244d0
/Lab-3.sce
e54a63326bb9ed684eb5e8693e8881b3c203cd09
[]
no_license
ChuyOleg/Scilab_DiscrStructures
2bd144381fe9b795f7e8bdc9626e75599d4b7847
f9dde5f4f9d3d0f4100969dd505ddee3e4a71192
refs/heads/master
2022-07-16T04:45:42.240260
2020-05-01T17:56:08
2020-05-01T17:56:08
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
8,620
sce
Lab-3.sce
plot2d([0;100], [0;100], 0); function[MATRIX] = createMatrix(n) rand('seed',9527); T = rand(n, n)+rand(n, n); A = floor((1.0 - 2*0.005 - 7*0.005 - 0.27) * T); //B = A'; //C = bool2s(A + B); MATRIX = A; endfunction function[Coordinates] = findCoordinates(n) Coordinates = [50, 50]; counter = 2; step = 360 / (n - 1); for corner = 0:step:360 extra = 180 / corner; x = 30 * cos(%pi / extra); if (corner < 180) y = sqrt(900 - x^2); else y = -sqrt(900 - x^2); end Coordinates(counter, 1) = x + 50; Coordinates(counter, 2) = y + 50; Coordinates(counter, 3) = corner; counter = counter + 1; end endfunction function buildCircles(matrix, n) for count = 1:1:n x = matrix(count, 1); y = matrix(count, 2); xarc(x - 3,y + 3, 6, 6, 0, 360*64); xnumb(x - 2, y - 2, count); end endfunction function [x, y] = find_X_Y(radius, corner) extra = 180 / corner; angle = %pi / extra; x = radius * cos(angle); if (angle > 0 && angle < %pi); y = sqrt(radius^2 - x^2); else y = -sqrt(radius^2 - x^2); end endfunction function drawLoop(ip) [x, y] = find_X_Y(5, ip(i, 3)); [x1, y1] = find_X_Y(3.1, ip(i, 3)); [x2, y2] = find_X_Y(3, ip(i, 3)); xarc(ip(i,1)+x-2,ip(i,2)+y+2, 4, 4, 0, 360*64); xarrows([ip(i,1)+x1,ip(i,1)+x2],[ip(i,2)+y1,ip(i,2)+y2],25,6); endfunction function drawLinesFromCenter(ip) [x, y] = find_X_Y(3, ip(j, 3)); xarrows([ip(i,1)+x,ip(j,1)-x],[ip(i,2)+y,ip(j,2)-y],25, 6); endfunction function drawLinesToCenter(ip) [x, y] = find_X_Y(3, ip(i, 3)); xarrows([ip(i,1)-x,ip(j,1)+x],[ip(i,2)-y,ip(j,2)+y],25, 6); endfunction function drawLines(ip, Output, Input) [x1, y1] = find_X_Y(3, Output); [x2, y2] = find_X_Y(3, Input); xarrows([ip(i,1)+x1,ip(j,1)+x2],[ip(i,2)+y1,ip(j,2)+y2],25, 6); endfunction function buildLines(Matrix, n, ip) mainExtraCorner = 180 / (n - 3); extraCorner1 = 0; extraCorner2 = 0; degrees = zeros(n, 3); count1 = 1; count2 = 1; for i = 1:n cornerOutput = 90 + extraCorner1 - 2*mainExtraCorner - 14 cornerInput = -90 + extraCorner1 - 2*mainExtraCorner - 14 cornerOutput2 = -90 + extraCorner2 + mainExtraCorner; cornerInput2 = 90 + extraCorner2 - mainExtraCorner - 10; degrees(i, 1) = i; degr1 = 0; for j = 1:n degr2 = 0; if (Matrix(i, j) == 1) degr1 = degr1 + 1; degr2 = degr2 - 1; if (i == j) drawLoop(ip); elseif (i == 1) drawLinesFromCenter(ip); elseif (j == 1) drawLinesToCenter(ip); elseif (j > i) drawLines(ip, cornerOutput, cornerInput); elseif (i > j); drawLines(ip, cornerOutput2, cornerInput2); end end cornerOutput = cornerOutput + mainExtraCorner; cornerInput = cornerInput + mainExtraCorner; cornerOutput2 = cornerOutput2 + mainExtraCorner; cornerInput2 = cornerInput2 + mainExtraCorner; degrees(j, 3) = degrees(j, 3) + degr2; end extraCorner1 = extraCorner1 + 10; extraCorner2 = extraCorner2 + 10; degrees(i, 2) = degrees(i, 2) + degr1; end disp(degrees, 'Напівстепені вершин напрямленого графа'); endfunction // ФУНКЦІЯ, ДЛЯ СТВОРЕННЯ МАТРИЦІ ПЕВНОГО СТЕПЕНЯ function Matrix = degreeMatrix(n, Degree) m = createMatrix(n); Matrix = m^Degree; endfunction; // ПОШУК УСІХ ШЛЯХІВ ДОВЖИНОЮ 2 function roads = findRoadsLength2(n) A = degreeMatrix(n, 1); B = degreeMatrix(n, 2); roads = []; count = 1; for i = 1:n for j= 1:n if (B(i,j) > 0) for k = 1:n if (A(k,j) == 1 && A(i,k) == 1) if (i == j && i == k && j == k) continue end roads(count,1) = i; roads(count,2) = k; roads(count,3) = j; count = count + 1; end end end end end disp(roads); endfunction // ПОШУК УСІХ ШЛЯХІВ ДОВЖИНОЮ 3 function roads = findRoadsLength3(n) A = degreeMatrix(n, 1); B = degreeMatrix(n, 2); C = degreeMatrix(n, 3); roads = []; count = 1; for i = 1:n for j= 1:n if (C(i,j) > 0) for k = 1:n if (A(k,j) > 0 && B(i,k) > 0) for q = 1:n if (A(q,k) == 1 && A(i,q) == 1) if (((i == q || j == q) && (i == k || j == k) && q == k) || (i == k && q == j)); continue end roads(count,1) = i; roads(count,2) = q; roads(count,3) = k; roads(count,4) = j; count = count + 1; end end end end end end end disp(roads); endfunction // СТВОРЕННЯ МАТРИЦІ ДОСЯЖНОСТІ function Matrix = reachAbilityMatrix(n) res = eye(n, n); for x = 1:n-1; extra = degreeMatrix(n, x); res = res + extra; end for i = 1:n for j = 1:n if (res(i,j) > 1) res(i,j) = 1 end end end Matrix = res; endfunction // СТВОРЕННЯ МАТРИЦІ СИЛЬНОЇ ЗВЯЗНОСТІ function Matrix = strongLinkMatrix(n) matr = reachAbilityMatrix(n); matr2 = matr'; Matrix = matr .* matr2; endfunction // ПОШУК КОМПОНЕНТІВ СИЛЬНОЇ ЗВЯЗНОСТІ function components = findStrongComponents(n) components = list(); rubbish = []; num = 1; count = 1; matr = strongLinkMatrix(n); for q = 1:n vect = []; point = 3; row1 = matr(q,:); for i = (q+1):n row2 = matr(i,:); if (row1 == row2 && (find(rubbish==i) == [])) if (vect == []) vect(1,:) = [q,i] rubbish(1,num) = q; rubbish(1,(num + 1)) = i; else vect(1,point) = i; point = point + 1; rubbish(1,num) = i; num = num + 1; end end end if (vect(1,1) >= 1) components(count) = vect; count = count + 1; elseif (find(rubbish==q) == []) components(count) = q; count = count + 1; rubbish(1,num) = q; num = num + 1; end end endfunction // Допоміжна функція, шукає до якої компоненти належить задане число, ця функція використовується в findMatrixCondensat function number = findNumInComponent(component, num) number = 100; for i = 1:size(component) if (find(component(i)==num)) number = i; end end endfunction function matrixCondensat = findMatrixCondensat(n) basicM = createMatrix(n) components = findStrongComponents(n); sizeCondensat = size(components); matrixCondensat = zeros(sizeCondensat,sizeCondensat); for i = 1:sizeCondensat for j = 1:n parts = components(i); sizeParts = size(parts)(2); while(sizeParts > 0) if (basicM(parts(sizeParts),j) == 1 ) newNumForPoint=findNumInComponent(components, j); if (i ~= newNumForPoint) matrixCondensat(i,newNumForPoint) = 1; end end sizeParts = sizeParts - 1; end end end endfunction function main(n) Matrix = createMatrix(n); coordinates = findCoordinates(n); buildCircles(coordinates, n); buildLines(Matrix, n, coordinates); endfunction disp(createMatrix(12), 'Початкова матриця') main(12); xstring(10, 95, 'ПОЧАТКОВИЙ ГРАФ'); components = findStrongComponents(12); matrixCondensat = findMatrixCondensat(12); disp(matrixCondensat, 'матриця конденсації'); halt('close graphic window and press enter to watch graph condensat') plot2d([0;100], [0;100], 0); xstring(10, 95, 'ГРАФ КОНДЕНСАЦІЇ'); coordinates = findCoordinates(10); buildCircles(coordinates,10); buildLines(matrixCondensat, 10, coordinates); disp(components, 'Компоненти сильної звязності'); disp(strongLinkMatrix(12), 'Матриця сильної звязності'); disp(reachAbilityMatrix(12), 'Матриця досяжності'); A2 = degreeMatrix(12, 2); A3 = degreeMatrix(12, 3); disp(A2, 'Матриця 2 степеня'); disp('Шляхи довжини 2'); findRoadsLength2(12); disp(A3, 'Матриця 3 степеня'); disp('Шляхи довжини 3'); findRoadsLength3(12);
ee2408256224f3c51461b6ee5ef7ed99052f7bf8
704a8e9047b24c6e005fdc6206aacf6b3ea623bb
/UE/S1/bin/ANALYSE/inverse.sci
548aa9638c920fa9f311aa15a2a264a7836875a4
[]
no_license
GuangYueCHEN/ENSIIE
e84ffd6be1718b958bc72cef791a77dc49fa057f
f2014c0cf5b1adda3f327d5dd1d39217e703871b
refs/heads/master
2021-06-30T21:50:49.946086
2019-06-18T09:53:36
2019-06-18T09:53:36
114,696,410
0
0
null
null
null
null
UTF-8
Scilab
false
false
861
sci
inverse.sci
function B=inverse(A) n=size(A,1) B=eye(n,n) for k=1:n-1, for i=k+1:n, c=A(i,k)/A(k,k) A(i,k)=0 for j=k+1:n, A(i,j)=A(i,j)-c*A(k,j) end for j=1:n, B(i,j)=B(i,j)-c*B(k,j) end end end for k=n:-1:2, for i=k-1:-1:1, c=A(i,k)/A(k,k) A(i,k)=0 for j=k-1:-1:1, A(i,j)=A(i,j)-c*A(k,j) end for j=n:-1:1, B(i,j)=B(i,j)-c*B(k,j) end end end for k=1:n, c=A(k,k) for j=1:n, B(k,j)=B(k,j)/c end end endfunction
a6302994f53a2692337e98fd8d278d97dfad52d3
449d555969bfd7befe906877abab098c6e63a0e8
/689/CH8/EX8.8/8.sce
17f6321110c8e14b67badfe333d6aaf71dd2e4b0
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
292
sce
8.sce
clc; funcprot(0); //Example 8.8 Polar Curves // Initialisation of variables W = 3000; S = 350; V = 90; rho = 0.002378; // Calculations Cl = 2*W/(S*V^2); Cd = 0.0561; //From figure 8.18 HP = Cd*rho*S*V^3/(2*550); //Results disp(HP,"Horse power required by wing (hp) : ");
effcdb409dc1d9bbb0ba36b2a3c817630e95e93e
449d555969bfd7befe906877abab098c6e63a0e8
/2534/CH13/EX13.4/Ex13_4.sce
c12910cc75dbb40489b80b5f47cdde3b4c2a6d2b
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
499
sce
Ex13_4.sce
//Ex13_4 clc C1 = 1*10^-9//capacitance of capacitor 1 C2 = 10*10^-9//capacitance of capacitor 2 L = 110*10^-6//inductance of inductor beta = C1/C2//feedback factor f0 = ((C1+C2)/(C1*C2*L))^.5/(2*%pi)//operating frequency disp("C1 = "+string(C1)+"F") disp("C2 = "+string(C2)+"F") disp("L = "+string(L)+"H") disp("beta = "+string(beta)) disp("f0 = ((C1+C2)/(C1*C2*L))^.5/(2*pi) = "+string(f0)+"Hz") //note : unit given for inductance "L" is wrong in the textook for the above question.
3c3e5309543ce3538157ee658af34b7b76d53651
449d555969bfd7befe906877abab098c6e63a0e8
/3760/CH4/EX4.43/Ex4_43.sce
f5e08494a72d99f4c0ad261a42b0ab392b6720b1
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
971
sce
Ex4_43.sce
clc; v=230; // rated voltage of dc shunt motor n1=900; // speed at which motor is running ia1=2; // armature current at n=900 rpm ra=0.5; // armature resistance ia2=20; // armature current at rated load and rated voltage Ea=v-ia1*ra; // counter EMF at no load k=(Ea*60)/(2*%pi*n1); // constant term used for calculating back EMF disp('case a'); rs=2; // resistance in series with armature rp=3; // resistace in parallel with series combination of rs and ra A=rp/(rp+rs); wmo=(1/k)*(A*v-ia1*(A*rs+ra)); // no-load speed wml=(1/k)*(A*v-ia2*(A*rs+ra)); // full-load speed sr=((wmo-wml)/wml)*100; // percent speed regulation printf('Speed regulation for first case is %f percent\n',sr); disp('case b'); rs=3; // resistance in series with armature wmo=(1/k)*(v-ia1*(rs+ra)); // no-load speed wml=(1/k)*(v-ia2*(rs+ra)); // full-load speed sr=((wmo-wml)/wml)*100; // percent speed regulation printf('Speed regulation for second case is %f percent\n',sr);
0395b8c90cde0033a5ae0ac09847136fff1efb4b
f436d22dcc19613aa9e2d9ab13c35fa85c23ae0a
/Scilab/Wolfe_Skel.sci
95793304a27870dcb0a6af68fb1e2ed68f1d4647
[]
no_license
emilemathieu/ConvexOptim
dbb2c4de795a8a3da5cb1399d1e376a37af5231b
8096f2b6d352919c9984c3e326e52c38c4f89f86
refs/heads/master
2021-05-29T19:11:53.679957
2015-03-30T16:54:16
2015-03-30T16:54:16
null
0
0
null
null
null
null
UTF-8
Scilab
false
false
3,428
sci
Wolfe_Skel.sci
function [alphan,ok]=Wolfe(alpha,x,D,Oracle) ////////////////////////////////////////////////////////////// // // // RECHERCHE LINEAIRE SUIVANT LES CONDITIONS DE WOLFE // // // // // // Arguments en entree // // ------------------- // // alpha : valeur initiale du pas // // x : valeur initiale des variables // // D : direction de descente // // Oracle : nom de la fonction Oracle // // // // Arguments en sortie // // ------------------- // // alphan : valeur du pas apres recherche lineaire // // ok : indicateur de reussite de la recherche // // = 1 : conditions de Wolfe verifiees // // = 2 : indistinguabilite des iteres // // // // // // omega1 : coefficient pour la 1-ere condition de Wolfe // // omega2 : coefficient pour la 2-eme condition de Wolfe // // // ////////////////////////////////////////////////////////////// // ------------------------------------- // Coefficients de la recherche lineaire // ------------------------------------- omega1 = 0.1; omega2 = 0.9; alphamin = 0.0; alphamax = %inf; ok = 0; dltx = 0.00000001; itermax = 1000000; iter = 0; // --------------------------------- // Algorithme de Fletcher-Lemarechal // --------------------------------- // Appel de l'oracle au point initial ind = 4; [F,G] = Oracle(x,ind); // Initialisation de l'algorithme alphan = alpha; xn = x; // Boucle de calcul du pas // // xn represente le point pour la valeur courante du pas, // xp represente le point pour la valeur precedente du pas. //disp('-----------------------------------------------------------------') while ok == 0 xp = xn; xn = x + (alphan*D); [Fp,Gp] = Oracle(xp,ind); [Fn,Gn] = Oracle(xn,ind); // Calcul des conditions de Wolfe //printf('iter is %i\n',iter) if Fn>(F+omega1*alphan*G'*D) then //disp('first Wolf condition NOT verified') alphamax = alphan; alphan = 0.5*(alphamin+alphamax); elseif Gn'*D<omega2*G'*D then //disp('second Wolf condition NOT verified') alphamin = alphan; if alphamax == %inf then alphan = 2*alphamin; else alphan = 0.5*(alphamin+alphamax); end else //disp('BOTH Wolf condition verified') ok = 1; end // Test d'indistinguabilite if norm(xn-xp) < dltx then ok = 2; end // Test nombre d'itérations iter = iter + 1; if iter >= itermax then ok = 3; end //printf('alphan: %f\n',alphan) //printf('alphamin: %f\n',alphamin) //printf('alphamax: %f\n',alphamax) end endfunction
277d2f6e3aef72ae06a28932ede192bcd6a435d0
a224e73b03e44940d761ce34b72d5b3cee86880b
/exemplo910.sce
bef4286511fd5fd30645679e1668259a45ec8a05
[]
no_license
DericsonPablo/controledesistemas
5092eab41134fe752add986b457278776a1bad90
74d4263c4819fa7e4e7b689b38e083dd87440777
refs/heads/master
2020-07-31T05:33:17.109455
2019-09-24T03:10:19
2019-09-24T03:10:19
210,500,755
0
0
null
null
null
null
UTF-8
Scilab
false
false
306
sce
exemplo910.sce
// EXEMPLO 9.10 // controlador por avanço de fase s = %s x = poly(0,'x') Gc = (s+4)/(s+20.09) // Vout / Vin = (s+1/R1C) / (s+(1/R1C)+(1/R2C)) // 1/R1C = 4 // 1/R1C + 1/R2C = 20.09 // 3 variaveis e 2 eq // chutar capacitor C = 1uF C = 1*10^-6 R1 = 1/(4*C) // sistema pra segunda eq // R2 = 62.2Kohm
5d6b2de77956eea5cf4e7f519a8647089459a9ef
449d555969bfd7befe906877abab098c6e63a0e8
/2762/CH3/EX3.2.1/3_2_1.sce
89c3c9e1ecb4834a5f5935a461c874b3a64f045f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,063
sce
3_2_1.sce
//Transport Processes and Seperation Process Principles //Chapter 3 //Example 3.2-1 //Principles of Momentum Transfer and Applications //given data rho=1.043;//density of air at 328.5K in kg/m3 v=23;//velocity of air in m/s D=0.6;//diameter of a cylinder mu=2.03/100000;//viscosity of air Pa.s delh=0.205;// 0.205m of water pitot tube reading rhow=1000;//density of water delP=delh*(rhow-rho)*9.80665;//pressure diff and g=9.80655 m/s2 patm=101325;//atm pressure in pascals p1=patm+0.02008*100000;//absolute pressure+ pressure diff rhoc=(p1/patm)*1.043;//corrected air density delH=10.7/1000;//manometer reading, m of water Cp=0.98; delP=delH*(rhow-rhoc)*9.80655;//pressure diff in Pa v=Cp*((2*delP)/rhoc)^0.5;//max vel at center Re=D*v*rhoc/mu;//Reynolds Number vr=0.85;//from the given graph the ratio of avg vel/max vel is 0.85 vavg=vr*v;//the average velcity in m/s mprintf(" average velcity = %f m/s",vavg) A=(3.14/4)*(D*D);//cross sec area in m2 V=A*vavg;//volumetric flow rate in m3/s mprintf("volumetric flow rate = %f m3/s",V)
2997a2c69c504c3b0aab8785b649f8fcccc3fc01
449d555969bfd7befe906877abab098c6e63a0e8
/3492/CH3/EX3.10/Ex3_10.sce
9a63e513a5e732075085cadfc32e0412f5e5e408
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
520
sce
Ex3_10.sce
clc //Chapter3 //Ex_10 //Given h_bar=1.054*10^-34 // in J s m=9.1*10^-31 //in Kg e=1.6*10^-19 // in coulombs Vo=10 //in ev Vo=Vo*e //in J E=7 // in eV E=E*e // in J a=5*10^-9 // in m alpha=sqrt(2*m*(Vo-E)/h_bar^2) To=16*E*(Vo-E)/Vo^2 T=To*exp(-2*alpha*a) disp(T,"Transmission coefficient of condution electrons in copper is") a=1*10^-9 // in m T=To*exp(-2*alpha*a) disp(T,"Transmission coefficient if the oxide barrier is 1 nm is") // slight change in the answer due to approximations in alpha value
20514ccf0b35eb9cd40fb788021c851b1e0ce21a
449d555969bfd7befe906877abab098c6e63a0e8
/3257/CH8/EX8.4/Ex8_4.sce
08ab679e36ea3207bc67ce2cc3bacf277709d392
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
637
sce
Ex8_4.sce
// Material removal rate and cutting force in turning clc D_o = 10 // diameter in mm N = 360 // spindle rpm D_i = 9 // machined diameter in mm x = 1.75 // axial speed in mm/min l = 125 // length in mm rate = 4 // specific energy in W-s/mm^3 printf("\n Example 8.4") V_o = %pi*D_o*1e-3*N V_i =%pi*D_i*1e-3*N d = (D_o-D_i)/2 f = x*100/N mrr = %pi*(D_o-d)*d*f*N t = l/(d*N) power = rate*mrr/60 T = power/(2*%pi*N/60) // torque F_c = T/((D_o-d)/(2*1000)) printf("\n Material removal rate is %.2f mm^3/min.",mrr) // Answer in book is 2610.08 mm^3/min printf("\n Cutting force is %d N.", F_c) // Answer in book is 994N
59bef7117c5ad41751a990997eeccd3d67187104
449d555969bfd7befe906877abab098c6e63a0e8
/52/CH3/EX3.11/Example3_11.sce
d70d6fd6599764e818d7cc4c8a52c1c57275b193
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
364
sce
Example3_11.sce
//Example 3.11 //Program to Compute the 8-point DFT of the following sequences //x1[n]=[1,0,0,0,0,1,1,1] //x2[n]=[0,0,1,1,1,1,0,0] clear; clc ; close ; x1=[1,0,0,0,0,1,1,1]; x2=[0,0,1,1,1,1,0,0]; //DFT Computation X1 = fft (x1 , -1); X2 = fft (x2 , -1); //Display sequences X1[k] and X2[k] in command window disp(X1,"X1[k]="); disp(X2,"X2[k]=");
e7222d4b2220b6c43a92a3bcba8e1cfb1accf800
449d555969bfd7befe906877abab098c6e63a0e8
/2223/CH18/EX18.26/Ex18_26.sce
559dbb57ebef5a254cc38693ebeecd16b348c5ab
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,090
sce
Ex18_26.sce
// scilab Code Exa 18.24 Calculation on an axial compressor cascade R=0.5906; // Degree of reaction beta1=66; beta2=22; alpha2=61; p_R=0.865; // pitch-chord ratio(s/l) for rotor p_S=0.963; // pitch-chord ratio(s/l) for stator alpha_3=beta2; // air angle at rotor and stator exit u=100; // test section velocity of air in m/s Y_D=0.077; // profile loss coefficient for stator blade row Y_R=0.08; // loss coefficient for rotor blade row beta_m=atand(0.5*(tand(beta1)+tand(beta2))); C_D_R=p_R*Y_R*(cosd(beta_m)^3)/(cosd(beta1)^2); C_L_R=(2*p_R*(tand(beta1)-tand(beta2))*cosd(beta_m))-(C_D_R*tand(beta_m)); n_R=1-(2*C_D_R/(C_L_R*sind(2*beta_m))); disp("%",n_R*1e2,"the value of rotor cascade efficiency is") alpham=atand(0.5*(tand(alpha2)+tand(alpha_3))); C_D_S=p_S*Y_D*(cosd(alpham)^3)/(cosd(alpha2)^2); C_L_S=(2*p_S*(tand(alpha2)-tand(alpha_3))*cosd(alpham))-(C_D_S*tand(alpham)); n_D=1-(2*C_D_S/(C_L_S*sind(2*alpham))); disp("%",n_D*1e2,"the value of diffuser cascade efficiency is") n_st=R*n_R+(1-R)*n_D; disp("%",n_st*1e2,"the value of stage efficiency is")
eb83a92588a37d2de6e8e2bf2027dcdb64b91762
449d555969bfd7befe906877abab098c6e63a0e8
/3830/CH7/EX7.12/Ex7_12.sce
fdeb3d0da3dc87805ad6ede23a10d15667075d23
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
453
sce
Ex7_12.sce
// Exa 7.12 clc; clear; // Given // A variable inductive transducer L1 = 2.5; // inductance in mH N1 = 50; // No of effective turns at L1 N2 = 52; // No of effective turns at L2 // Solution printf(' Since L directly proportional to N^2 \n'); printf(' L1/N1^2 = L2/N2^2 \n '); printf(' Therefore, L2 i.e, \n '); L2 = L1* (N2/N1)^2; printf(' The inductance of coil when the effective turns of the coil are 52 = %.2f mH \n',L2);
eaa31538be25cc7051e527f9d6c84b2be2f628be
449d555969bfd7befe906877abab098c6e63a0e8
/1670/CH2/EX2.13/2_13.sce
802b08f2e85f35ddca030731ed31d63075d0f5be
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
479
sce
2_13.sce
//Example 2.13 //Iteration Formula //Page no. 28 clc;clear;close; deff('x=f(x)','x=(log10(x)+7)/2') printf('n\txn\t\t\f(xn)\t\tXn+1\t\tError\n') printf('---------------------------------------------------------------------------\n') x0=3.8;e=0.00001 for i=1:6 x1=f(x0) e1=abs(x0-x1) printf(' %i\t%.10f\t%.10f\t%.10f\t%.10f\n',i-1,x0,f(x0),x1,e1) x0=x1; if abs(x0)<e then break; end end printf('\n\nTherefore, the root is %.6f',x0)
df54826f3fbab1b34be146af273e3d4365ed4d93
449d555969bfd7befe906877abab098c6e63a0e8
/1299/CH4/EX4.6.b/examplesec4_6b.sce
3b3addccf94a3390131e9a0cfe0f1e7b40d43a2c
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
420
sce
examplesec4_6b.sce
//Example sec 4.6b //example of canonical form clear;clc; xdel(winsid()); A=[1 2 1;0 1 3;1 1 1]; B=[1;0;1]; C=[1 1 0]; V=[C;C*A;C*A^2] D=eye(3,3) s=%s E=s*D-A det(E) //the characteristic equation i.e. det(E)=s^3-3*s^2-s-3=0 is of the form of //s^3+a2*S^2+a1*s+a0=0. therefore comparing two equation. a2=-3 a1=-1 a0=-3 M=[a1 a2 1;a2 1 0;1 0 0] F=M*V Q=inv(F) A1=inv(Q)*A*Q B1=inv(Q)*B C1=C*Q
732c24a93d7a51a4729baa4b4568251d5a9a26f6
449d555969bfd7befe906877abab098c6e63a0e8
/680/CH12/EX12.08/12_08.sce
1959672536adcf0c3b2dd89991f1f615a88f53f3
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
856
sce
12_08.sce
//Problem 12.08: //initializing the variables: ZC2 = 0.25; ZC4 = 0.15; Zy = 0.6; p = 120; // in psia a = 4; T = 40; // in degF //calculation: //Write the componential split equation: //Exi = E{zi/[L + Ki(1-L)]} = 1.0 //Set L and V. The bottoms to boilup ratio is 4/1. Therefore, L = 0.80 V = 1-L //Obtain K for ethane (E) and n-butane (B) at 120 psia and 40 degF: Ke = 2.60 Kb = 0.18 //Calculate xe and xb by employing above Equation: //xi = zi/[L + Ki*V] //Substituting xe = 0.19 xb = 0.18 //Set Y as the unknown component (see Table 12.6), and then calculate Xy. Xy = 1 - xe-xb //Calculate KY by applying Equation (12.4) to component Y Ky = (Zy/Xy -L)/V printf("\n\nResult\n\n") printf("\n the chemical name of the unknown componentcorresponding to KY (120 psia and 408F) with a value of %.2f appears to be propane",Ky)
e1daa835a0a34d1d385e79f32410e8cc7b901299
449d555969bfd7befe906877abab098c6e63a0e8
/839/CH24/EX24.1/Example_24_1.sce
e6d398080796e8d2204803e4fb5bd9dd30065775
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
961
sce
Example_24_1.sce
//clear// clear; clc; //Example 24.1 //Given Twb = 80; //[F] Tdb = 120; //[F] v = 3.5; //[ft/s] rho = 120; //[lb/ft^3] Xe = 0; Xc = 0.09; lambda = 1049; //[Btu/lb] M = 29; B = 24; //[in.] D = 2; //[in.] Dc = 2; //[ft] //Solution //(a) //mass velocity G = v*M*492*3600/(359*(460+120)); //[lb/ft^2-h] //the coefficent, by Eq.(24.13), in fps units, is h = 0.01*G^0.2/2^0.2; //[Btu/ft^2-h-F] //Substituting in Eq.(21.15) gives Rc = 1.94*(Tdb-Twb)/(lambda); //[lb/ft^2-h] disp('lb/ft^2-h',Rc,'Drying rate during the constant period is') //(b) //Since drying is from both faces, area A = Dc*(B/12)^2; //[ft^2] //The rate of drying mvdot = Rc*A; //[lb/h] //Volume of the cake Vc = (B/12)^2*D/12; //[ft^3] //mass of the bone-dry solid is mdot_bd = rho*Vc; //[lb] //The quantity of moisture to be vaporized is X2 = 0.20; X1 = 0.10; Q = mdot_bd*(X2-X1); //[lb] //Drying time tT = Q/mvdot; //[h] disp('h',tT,'drying time')
ff0408afe443ef60d270fd724c8a828d011fa4ee
4058f38b392324aa5099819881f3c7d7219a174f
/Flip flops/JK Flipflop/JK Master Slave FF negative edge triggered/JK Master Slave.sce
a90988eb1837ca2ce9faa3bd320ce07df861430b
[]
no_license
anupma-s/Scilab-Xcos-Arduino-Digital-Circuits
612a033422bf14e2e58bcdce371f15cafb30224f
2b4bf8e8f155d20a5eda2feb31c5523a51569d73
refs/heads/master
2021-01-20T17:20:13.073180
2016-07-04T15:25:07
2016-07-04T15:25:07
62,569,455
0
0
null
null
null
null
UTF-8
Scilab
false
false
2,689
sce
JK Master Slave.sce
ok=open_serial(1,2,115200); if ok~=0 then error('Unable to open serial port, please check'); end J=0; K=0; S=0; R=1;//since we assume initially Qbar=1 pinstate=0; lastpinstate=0; Q=0; Qbar=1; //we assume initially Q=0 & Qbar=1 pre=0; clr=0; temp=0; JPin=5; KPin=6; QPin=9; QbarPin=10; prePin=3; //Preset clrPin=4; //Clear //Preset and clear are active low inputs, thus both should be ihgh for normal functining of flipflop clockPin=2; for i=1:500 if(Q==0) cmd_digital_out(1,QPin,0) cmd_digital_out(1,QbarPin,1) sleep(100) end if(Q==1) cmd_digital_out(1,QPin,1) cmd_digital_out(1,QbarPin,0) sleep(100) end pre=cmd_digital_in(1,prePin) clr=cmd_digital_in(1,clrPin) if(pre==0 & clr==1) //preset is active Q=1; end if (pre==1 & clr==0) //clear is active Q=0; end if (pre==1 & clr==1) //both preset and clear are inactive pinstate=cmd_digital_in(1,clockPin) if(pinstate~=lastpinstate) if(pinstate==1) //master ff is active during positive level. It stores the inputs //JK FF code J=cmd_digital_in(1,JPin) K=cmd_digital_in(1,KPin) if(J==0 &K==1) S=0 R=1 end if(J==1 & K==0) S=1 R=0 end if(J==1 & K==1) temp=S S=R R=temp end end if(pinstate==0) //slave FF is active, it shows the output //JK FF code only for state 01 and 10 if(S==0 & R==1) Q=0; end if(S==1 & R==0) Q=1; end end sleep(50) end lastpinstate=pinstate; end end close_serial(1)
7a0883b384d3380e0a4ab5b9c9bd1aff280cc3b5
449d555969bfd7befe906877abab098c6e63a0e8
/821/CH8/EX8.21/8_21.sce
170f4762e075c8b3797a170f1a934326adc94fe8
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
532
sce
8_21.sce
R=1.987;//universal gas constant// printf('From the graph slope=(-0.92/0.30)=(-E/(2.303*R))\nGraphical evaluation of A requires the determination of the intercept on the y axis corresponding to 1/T=0\nOne can also calculate A from k=A*exp(-E/(R*T))'); E=(0.92*R*2.303)/(0.30*10^3); printf('\nEnergy of activation=E=%f=14.04Kcal per mol',E); k=2.31*10^-2; T=273;//temperature in kelvin// printf('\nwe can find the value of A using log10(k)=log10(A)-(E/(2.303*R*T))\nUpon solving we get A=4.015*10^9litre per mol per second');
9c55165d7fc4c663e42531c3645bca735cd270aa
449d555969bfd7befe906877abab098c6e63a0e8
/911/CH4/EX4.2/ex_4_2.sce
76ba5754a21c10f280d67cd6e0542d5a56460dd2
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
757
sce
ex_4_2.sce
//example 4.2// //How many NAND gate inputs can be driven from the output of a NAND gate of this type// clc //clears the variables// clear //clears the screen// //given// a=0.4 //I(oh)max in mA// b=2.7 //V(oh) min in V// c=2 //V(ih) min in V// d=.8 //V(il)max in V// e=.4 //V(ol) max in V// f=8 //I(ol)max in mA// g=.4 //I(il)max in mA// h=20 //I(ih) max in micro amp// i=1.6 //I(cch)max in mA// j=4.4 //I(ccl)max in mA// t=15 //t(pLH)=t(pHL) in ns// disp('This figure is given by the worst-case fan-out specification of the device') s=a*1000/h; disp(s,'the HIGH-state fan-out=') u=f/g; disp(u,'LOW-state fan-out=') z=min(s,u); disp('Therefore, the number of inputs that can be driven from a single output =') disp('V',z)
0510b6a39f66839ee7d2d107711af8753934aee9
449d555969bfd7befe906877abab098c6e63a0e8
/213/CH14/EX14.9/14_9.sce
b1dbfa8c5012748a5886fdc530db84668b775ce4
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,219
sce
14_9.sce
//To find maximum acceleration during pitching clc //Given: m=2000 //kg N=3000 //rpm k=0.5, R=100 //m v=16.1*1855/3600 //m/s //Solution: //Calculating the angular speed of the rotor omega=2*%pi*N/60 //rad/s //Gyroscopic couple: //Calculating the mass moment of inertia of the rotor I=m*k^2 //kg-m^2 //Calculating the angular velocity of precession omegaP=v/R //rad/s //Calculating the gyroscopic couple C=I*omega*omegaP/1000 //kN-m //Torque during pitching: tp=50 //s phi=12/2*%pi/180 //rad //Calculating the angular velocity of simple harmonic motion omega1=2*%pi/tp //rad/s //Calculating the maximum angular velocity of precession omegaPmax=phi*omega1 //rad/s //Calculating the maximum gyroscopic couple during pitching Cmax=I*omega*omegaPmax //N-m //Calculating the maximum acceleration during pitching alphamax=phi*omega1^2 //rad/s^2 //Results: printf("\n\n When the rotor rotates clockwise when looking from a stern the ship steers to the right, the effect of the reactive gyroscopic couple is to raise the stern and lower the bow.\n\n") printf(" Torque during pitching, Cmax = %d N-m.\n\n",Cmax) printf(" Maximum acceleration during pitching, alphamax = %.5f rad/s^2.\n\n",alphamax)
96ca14dac8a4cb92f8f40e1aa0546676eb383e5e
1a50fe78c1413f8559b28861ace1767322e787bd
/macros/slr_comments_to_xml.sci
8100281e81111515720b94116f3f05a9a46ac96e
[]
no_license
pivui/slr
105b6b4035974bd4e4b17283c98fa287627f5618
d10c2f46ee7563d0bd05bfea74408ba30aaf856b
refs/heads/master
2019-07-11T14:06:45.762247
2018-02-27T16:29:08
2018-02-27T16:29:08
91,713,612
0
0
null
null
null
null
UTF-8
Scilab
false
false
18,200
sci
slr_comments_to_xml.sci
function help_xml = slr_comments_to_xml(src, target) // // Generates the xml files of help from the head comments of a .sci file or a directory. // // Syntax // help_xml = slr_comments_to_xml(src) // help_xml = slr_comments_to_xml(src, help_dir) // // Parameters // src (string) : source file or directory to be processed. // target (string) : directory in which the help file(s) will be placed // // Description // This routines generates .xml help files based on the head comments of .sci // files. Note that the head comments can either be made with single line comments // or with block comments. // // In order for this routine to format the .xml file properly, the head comments // should comply with some simple formatting rules. // // In particular, the head comments should be divided in different sections // which content is then specifically formatted. The predefined sections are: // 'Syntax', 'Parameters', 'Description', 'Examples', 'See also', 'Used functions', // 'Authors' and 'Bibliography'. // To be recognised, these headlines should be alone on a line. // // The content of each section must also comply with some rules to be formatted // adequately: // * a one-line description of the function should be located between the // declaration of the function and the first section. // * __Syntax__: shows examples of call to the routine. There should be one // example of call per line. // * __Parameters__: contains the list of input and output parameters with a // short description. // The name of the parameter is separated from its description by a // ":" and the type of the parameter can be put in parenthesis just after // its name. // Note that the description of the parameter can extends on several lines. // * __Description__: this section enables to describe more in-depth the // behaviour of the routine. // To ease the formatting of the text, some markdown-like features are // supported (see below). // * __Examples__: contains full use cases of the routine. The formatting is // similar to the description section and the code snippet become executable. // * __See also__: enables to provide links to similar functions. Each name must // be on a new line or be separated by a comma. // * __Bibliography__: contains references to the litterature. Each entry must // be separated from the other by a newline or a comma. // * __Authors__: contains a list of the authors. Each author must appear on a // different line. // //# Markdown-like support // A basic markdown support is implemented for the sections description, // examples, and any user defined section. // // It supports: // * __bold expressions__ are delimited with \*\* or \_\_ // * _italic expression_ are delimited with \* or \_ // * `literal expressions` are delimited with \` // * unordered lists are obtained using \* at the start of the line. Indentation // is then exploited to determine nested lists. // Paragraph in lists are obtained with a single newline. Note that they // must end with a point to be parsed correctly. // * code blocks are delimited with \~\~\~ // * inline latex equations are delimited with \$ // // Examples // Here is an example of the results this function can produce // // ~~~ // target = './'; // where the xml file will be created // xml_str = slr_comments_to_xml([], target); // with an empty source, it will apply to itself // my_title = 'slr_comments_to_xml_demo'; // xmltojar(target, my_title) // generate a jar file from the xml // ok = add_help_chapter(my_title,target); // adding the help chapter // help(); // ~~~ // // See also // help // sci_to_demo // // Authors // Pierre Vuillemin // Defining some constants EXT = '.sci' SEP = filesep() tmp = ver() SCI_VER = tmp(1,2) TAG = 'slr_comments_to_xml' // -------------------------------------------------------------------------- // Handling inputs //--------------------------------------------------------------------------- nargin = argn(2) if nargin < 2 then target = [] end if nargin == 0 | isempty(src) then // No input is provided: in that case, the content of 'slr_comments_to_xml' is // copied to the TMP directory and used as a demo file. prog = macr2tree(slr_comments_to_xml) prog.name = prog.name + '_demo' txt = tree2code(prog, %T) src = TMPDIR + SEP + prog.name + EXT; mputl(txt, src); if (isdef("editor") | (funptr("editor") <> 0)) // editor(src) end end if isdir(src) then // If the src is a directory, then the routine is called for each *.sci file in the directory printf(gettext("%s: Reading from directory %s\n"), TAG, src); help_xml = list() files = findfiles(src, '*.sci'); // read *.sci files from the src directory for i = 1:size(files,1) src_file = src + SEP + files(i) help_xml($+1) = slr_comments_to_xml(src_file, target) printf(gettext('%s: Processing of file: %s \n'), TAG, src_file) end printf(gettext('%s: processed %i files.\n'), TAG, i) return end // At this point the variable 'src' is a file if isempty(strindex(src, EXT)) then src = src + EXT; end if isempty(fileinfo(src)) then error(sprintf(gettext('%s: The file %s does not exist.\n'), TAG, src)); end // -------------------------------------------------------------------------- // Actual processing of the file // -------------------------------------------------------------------------- // // 1. Name of the file is extracted from the src file and the xml header is created // function_name = basename(src) help_xml = get_xml_header(function_name) // // 2. Head comments are extracted from the src file and are processed // comments = get_head_comments(src) // until head_comments is repaired if isempty(comments) then help_xml = '' return end // To avoid a specific treatement for the one-line description of the function, // a fictious header section is created and added at the beginning of the comments comments = ' \n header \n ' + comments // Default sections are completed with user-defined sections and sorted default_sec = ['header', 'syntax', 'parameters', 'description', 'examples', 'see also', .. 'authors', 'bibliography', 'used functions'] sections = find_and_sort_sections(comments, default_sec) // The comments are then parsed to extract the content of each section. // The content of each section is stored in the corresponding field in the // structure 'sections_content'. sections_content = find_sections_content(comments, sections) if isfield(sections_content, 'header') then // the name of the function is required for the header. Hence this field is // completed with the name of the function separated with ':' sections_content.header = function_name + ':' + sections_content.header end // // 3. Formatted help text is built from the extracted sections // for section = sections if isfield(sections_content, section) // If the section has been found, then it is processed and added to the // help text section_content = sections_content(section) section_xml = section_txt_to_xml(section, section_content) help_xml = [help_xml;'';section_xml] section_xml = '' end end help_xml = [help_xml;'</refentry>'] // Writting to the target file if ~isempty(target) then target = target + filesep() + function_name + '.xml' fd = mopen(target,'wt') for i = 1:size(help_xml,1) mfprintf(fd, '%s\n',help_xml(i)) end mclose(fd) end endfunction // //============================================================================== // FORMATTING SECTIONS //============================================================================== // function section_xml = section_txt_to_xml(section, content) // Formats the content of a section with xml tags. SECTION_TAG = 'refsection' TITLE_TAG = 'title' CONTENT_TAG = '' inner_opt = []; SECTION_TITLE = capital_first_letter(section) content_as_mat = %T as_matrix = %T switch section case 'header' // ............................................................ SECTION_TAG = 'refnamediv' CONTENT_TAG = 'refpurpose' TITLE_TAG = 'refname' [function_name, content] = chop(content, ':') SECTION_TITLE = stripblanks(function_name) content = stripblanks(get_rid_of_newlines(content)) case 'syntax' // ............................................................ SECTION_TAG = 'refsynopsisdiv' CONTENT_TAG = 'synopsis' content = stripblanks(sprintf(content)) case 'parameters' // ........................................................ // Pre-processing content idx = 1 RE = '/\\n(.*?)(?=:)/'; content = '\n '+content start = regexp(content, RE) start($+1) = length(content) + 1 params = list() descs = list() for i = 1:length(start)-1 line = part(content, start(i):start(i+1)-1) line = get_rid_of_newlines(line) [param, desc] = slr_chop(line,':') params($+1) = stripblanks(param) descs($+1) = stripblanks(desc) end // the section is directly formatted by slr_xml content = slr_xml('variablelist', params, descs, %T) content_as_mat = %T case 'authors' // ........................................................... content = sprintf(content) authors = list() for i = 1:size(content, 1) line = stripblanks(content(i)) if ~isempty(line) authors($+1) = line end end content = slr_xml('simplelist',authors) case 'see also' // .......................................................... content = content + '\n' content = strsubst(content,',','\n') [start,final,ma] = regexp(content,'/\\n/') start = [start,length(content)] final = [0, final] fun_list = list() for i = 1:length(start)-1 fun_name = part(content,final(i)+1:start(i)-1) if ~isempty(fun_name) fun_name = stripblanks(fun_name) fun_list($+1) = slr_xml('link',fun_name) end end opt = struct('type','inline') content = slr_xml('simplelist', fun_list, opt) case 'description' // Other case, one parse the content with a markdown-like support content = slr_md_to_xml(content) content_as_mat = %T else content = slr_md_to_xml(content) content_as_mat = %T end inner_xml = [slr_xml_wrap(SECTION_TITLE, TITLE_TAG);... slr_xml_wrap(content, CONTENT_TAG, content_as_mat)] // section_xml = slr_xml_wrap(inner_xml, SECTION_TAG, as_matrix) endfunction // function [head, tail] = chop(str, tok) i = regexp(str, "/" + tok + "/", "o"); if isempty(i) then head = str; tail = []; else head = part(str, 1:i - 1); tail = part(str, i + 1:length(str)); end endfunction // function Str = capital_first_letter(str) // Capitalizes the first letter of a string. Str = convstr(part(str,1),'u') + part(str,2:$) endfunction // function str = get_rid_of_newlines(str) // Suppress the symbols \n in a string. str = get_rid_of(str, '\\n{1,}\h*') endfunction // function str = get_rid_of(str, re) str = strsubst(str,'/'+re+'/','','r') endfunction // //============================================================================== // SPLITTING HEAD COMMENTS //============================================================================== // function sorted_sections = find_and_sort_sections(txt, sections) // Find additional section delimited by '#' at the beginning of the line [start, final] = regexp(txt, '/\\n{1,}\h*\#/') for i = 1:length(final) sub_txt = part(txt, final(i): length(txt)) // [tmp,tmp,match]= regexp(sub_txt,'/(?<=\#).*?(?=\\n)/') // see: http://stackoverflow.com/questions/6109882/regex-match-all-characters-between-two-strings [tmp,tmp,tmp,match] = regexp(sub_txt,'/(\\n){0,}\h*\#\h((?:(?!\\n).)*)/') sections($+1) = stripblanks(match(2)) end // Sort all the sections ns = size(sections,2) pos = zeros(ns,1) for i = 1:ns s = sections(i) p = regexp(txt, '/(?:^|\\n{1,}\h*\#{0,1}\h*)'+s+'\h*\\n{1,}/i')//'(?:$|\h*\\n{1,})/i') if isempty(p) p = %inf // affecting %inf as position for absent sections end pos(i) = p end [tmp, idx] = gsort(pos, 'g', 'i') sorted_sections = [] for i = 1:sum(pos~=%inf) // discarding absent sections sorted_sections(1,$+1) = sections(idx(i)) end endfunction // function stxt = find_sections_content(txt, sections) stxt = struct() for section_name = sections s_content = extract_section_content(txt, section_name, sections); if ~isempty(s_content) stxt(section_name) = s_content; end end endfunction // function content = extract_section_content(txt, s, sections) // at this point the sections are already ordered content = []; [tmp, final,match] = regexp(txt, '/(\\n){1,}\h*\#{0,1}\h*'+s+'\h*\\n{1,}/i') id = final + 1 // see https://superuser.com/questions/903168/how-should-i-write-a-regex-to-match-a-specific-word [tmp, sec_pos] = intersect(sections, s) if sec_pos == size(sections,2) then content = slr_strip_blanks(part(txt, id:length(txt))) else next_section = sections(sec_pos + 1) start = regexp(txt, '/(\\n){1,}\h*\#{0,1}\h*'+next_section+'\h*\\n{1,}/i') content = slr_strip_blanks(part(txt,id:start-1)) end endfunction // //============================================================================== // EXTRACTING HEAD COMMENTS //============================================================================== // function hc = get_head_comments(file_name) // Extracts the head comments from the first function in a file. BLANK = ' '; file_d = mopen(file_name, "rt"); // Get the first line after function definition line = " "; while isempty(strindex(line, "function ")) & ~meof(file_d) line = mgetl(file_d, 1); end line = mgetl(file_d,1); hc = '\n'; if line_begin_with(line, '//') then // If the comments are made with //, then the stopping condition is met when // a line does not start with function out = stop_condition(line) out = ~line_begin_with(line, '//'); endfunction function out = post_treat(str) // out = strsubst(str, '/\\n{1,}\h*\/{2}/','','r') // not working atm due to a bug in strsubst [start, final, match] = regexp(str, '/\\n{1,}\h*\/{2}/') match = unique(match) for i = 1:size(match,1) str = strsubst(str, match(i),'\n') end out = str endfunction elseif line_begin_with(line, '/*') then // if the comments are made with /* ...*/ then the stopping condition is met // when the line contains */ function out = stop_condition(line) out = ~isempty(strindex(line, '*/')) endfunction function out = post_treat(str) dummy = strsubst(str, '/*', '') out = strsubst(dummy, '*/', '') endfunction else hc = []; return end while ~meof(file_d) & ~stop_condition(line) hc = hc + line + '\n' line = mgetl(file_d, 1) end mclose(file_d) hc = replace_tab_by_space(hc) hc = post_treat(hc + BLANK) // adding a blank at the end so that the split works fine // Remove white spaces in empty lines (for some reason, the same method that the one used above segfault) hc = hc + '\n\n' [start,final,match] = regexp(hc, '/(\\n)\h*(\\n)/') // Replace with strsubst when it is not longer buged tmp = part(hc, 1: start(1)-1) start($+1) = length(hc) for i = 1:length(final)-1 tmp = tmp + '\n\n' + part(hc,final(i)+1:start(i+1)-1) end hc= tmp endfunction // function out = line_begin_with(line, symbol) // Tests whether a given line begins with some symbol (excluding blanks) out = strindex(stripblanks(line), symbol)(1) == 1; endfunction // function strOut = replace_tab_by_space(strIn) strOut = strsubst(strIn, ascii(9), part(" ",1:4)); endfunction // function txt = get_xml_header(function_name) txt = [ "<?xml version=""1.0"" encoding=""UTF-8""?>" "" "<refentry version=""5.0-subset Scilab"" xml:id="""+function_name+""" xml:lang=""en""" " xmlns=""http://docbook.org/ns/docbook""" " xmlns:xlink=""http://www.w3.org/1999/xlink""" " xmlns:svg=""http://www.w3.org/2000/svg""" " xmlns:ns3=""http://www.w3.org/1999/xhtml""" " xmlns:mml=""http://www.w3.org/1998/Math/MathML""" " xmlns:scilab=""http://www.scilab.org""" " xmlns:db=""http://docbook.org/ns/docbook"">" "" ]; endfunction
8ef089fcd5eaf38fe73f77fbff7ce1cebc57108c
089894a36ef33cb3d0f697541716c9b6cd8dcc43
/NLP_Project/test/blog/bow/bow.13_3.tst
d7de6fbe467705e57ccd01bdc71e678227f51430
[]
no_license
mandar15/NLP_Project
3142cda82d49ba0ea30b580c46bdd0e0348fe3ec
1dcb70a199a0f7ab8c72825bfd5b8146e75b7ec2
refs/heads/master
2020-05-20T13:36:05.842840
2013-07-31T06:53:59
2013-07-31T06:53:59
6,534,406
0
1
null
null
null
null
UTF-8
Scilab
false
false
4,901
tst
bow.13_3.tst
13 4:0.3333333333333333 20:1.0 133:0.5 500:1.0 1288:1.0 1614:1.0 13 98:0.3333333333333333 133:0.5 192:0.3333333333333333 451:0.5 13 5:0.3333333333333333 13:0.25 24:1.0 58:0.16666666666666666 85:0.09090909090909091 177:0.2857142857142857 214:0.5 346:0.5 358:1.0 501:1.0 622:1.0 632:1.0 1059:1.0 1086:1.0 1251:1.0 13 4:0.3333333333333333 5:0.3333333333333333 29:0.2 53:1.0 108:0.16666666666666666 133:0.5 143:1.0 749:1.0 13 1210:1.0 13 14:0.021739130434782608 41:0.5 145:0.14285714285714285 207:1.0 270:1.0 469:0.5 13 8:0.3333333333333333 13:0.25 14:0.021739130434782608 17:0.1 20:1.0 41:0.5 78:0.3333333333333333 85:0.09090909090909091 91:1.0 156:0.06666666666666667 160:1.0 299:1.0 366:1.0 512:1.0 601:1.0 682:1.0 788:0.25 1105:1.0 13 14:0.021739130434782608 17:0.1 43:0.125 71:1.0 154:1.0 208:0.3333333333333333 501:1.0 527:1.0 542:1.0 566:1.0 13 32:0.25 35:1.0 154:1.0 13 4:0.6666666666666666 13:0.25 14:0.021739130434782608 17:0.05 29:0.2 89:1.0 96:0.5 125:1.0 133:0.5 145:0.14285714285714285 501:1.0 603:1.0 13 13:0.25 14:0.021739130434782608 32:0.25 78:0.3333333333333333 85:0.09090909090909091 119:1.0 124:1.0 301:1.0 423:1.0 472:1.0 1674:1.0 13 5:0.6666666666666666 14:0.021739130434782608 17:0.15 29:0.2 43:0.25 47:0.5 70:0.6666666666666666 76:1.0 156:0.06666666666666667 192:0.3333333333333333 194:0.5 204:1.0 245:1.0 666:1.0 1289:1.0 13 4:0.3333333333333333 13:0.25 70:0.3333333333333333 89:1.0 98:0.3333333333333333 133:0.5 192:0.3333333333333333 13 4:0.3333333333333333 5:0.3333333333333333 13:0.25 14:0.043478260869565216 17:0.2 25:1.0 43:0.125 70:0.3333333333333333 128:1.0 160:1.0 204:1.0 208:0.3333333333333333 212:1.0 289:0.3333333333333333 454:0.5 473:1.0 527:1.0 603:1.0 793:1.0 854:1.0 977:1.0 1210:1.0 1355:1.0 13 4:0.6666666666666666 13:0.25 14:0.043478260869565216 17:0.05 70:0.3333333333333333 89:1.0 119:1.0 156:0.06666666666666667 160:1.0 390:1.0 473:1.0 746:1.0 847:1.0 1330:1.0 1359:1.0 1415:1.0 13 4:0.3333333333333333 5:0.3333333333333333 11:1.0 17:0.05 41:0.5 58:0.08333333333333333 119:1.0 207:1.0 307:0.5 335:0.5 472:1.0 667:1.0 989:1.0 1065:1.0 1080:1.0 1158:1.0 13 5:1.0 13:0.75 17:0.05 35:1.0 43:0.125 97:0.5 156:0.26666666666666666 208:0.3333333333333333 451:0.5 788:0.25 1034:1.0 1241:0.5 1390:1.0 13 3:2.0 5:0.3333333333333333 79:0.09090909090909091 85:0.09090909090909091 119:2.0 154:1.0 156:0.06666666666666667 175:1.0 307:0.5 350:1.0 1163:1.0 13 4:0.3333333333333333 17:0.05 43:0.125 156:0.06666666666666667 160:1.0 1330:1.0 13 4:0.3333333333333333 14:0.043478260869565216 16:0.3333333333333333 53:1.0 119:1.0 451:0.5 674:1.0 793:1.0 847:1.0 1291:0.5 1313:0.3333333333333333 1614:1.0 13 5:0.3333333333333333 11:1.0 13:0.5 14:0.043478260869565216 17:0.05 20:3.0 29:0.2 32:0.25 78:0.3333333333333333 84:1.0 97:0.5 106:0.5 154:1.0 156:0.06666666666666667 160:1.0 175:1.0 219:1.0 283:1.0 289:0.3333333333333333 580:1.0 666:1.0 709:1.0 761:1.0 777:1.0 827:1.0 983:1.0 1076:1.0 1158:1.0 1358:1.0 1366:1.0 1377:1.0 1439:1.0 1440:1.0 13 5:1.0 20:1.0 24:1.0 156:0.06666666666666667 451:0.5 919:1.0 1163:1.0 1607:1.0 13 1:0.3333333333333333 20:1.0 41:0.5 97:0.5 242:1.0 1327:1.0 1552:1.0 13 4:0.3333333333333333 13:0.5 14:0.043478260869565216 31:1.0 50:1.0 54:1.0 55:0.5 70:0.3333333333333333 78:0.3333333333333333 79:0.09090909090909091 85:0.09090909090909091 94:1.0 133:0.5 154:1.0 156:0.06666666666666667 160:1.0 214:0.5 230:0.3333333333333333 245:1.0 344:1.0 346:0.5 369:1.0 469:0.5 913:1.0 13 14:0.021739130434782608 32:0.25 13 14:0.021739130434782608 26:1.0 85:0.09090909090909091 963:1.0 1059:1.0 13 14:0.021739130434782608 13 14:0.021739130434782608 127:1.0 156:0.06666666666666667 245:1.0 738:1.0 1415:1.0 13 14:0.043478260869565216 24:1.0 54:1.0 108:0.16666666666666666 157:1.0 190:1.0 538:1.0 13 3:1.0 5:0.3333333333333333 14:0.043478260869565216 20:1.0 35:2.0 54:1.0 58:0.08333333333333333 64:0.14285714285714285 85:0.09090909090909091 89:1.0 97:0.5 108:0.16666666666666666 125:1.0 135:0.3333333333333333 160:1.0 214:0.5 228:1.0 1361:1.0 1461:1.0 13 32:0.25 50:1.0 55:0.5 156:0.06666666666666667 289:0.3333333333333333 1401:1.0 13 4:0.3333333333333333 8:0.3333333333333333 133:0.5 145:0.14285714285714285 154:1.0 428:1.0 1175:1.0 13 154:1.0 13 4:0.3333333333333333 5:0.3333333333333333 13:0.25 15:1.0 88:1.0 104:1.0 108:0.16666666666666666 119:1.0 123:1.0 154:1.0 156:0.06666666666666667 219:1.0 487:1.0 1449:1.0 1469:1.0 1476:1.0 13 16:0.3333333333333333 32:0.5 39:1.0 514:0.2 1476:1.0 13 154:1.0 156:0.06666666666666667 514:0.2 1637:1.0 13 514:0.2 13 4:0.3333333333333333 5:0.3333333333333333 17:0.05 35:1.0 79:0.09090909090909091 169:1.0 170:1.0 1055:1.0 13 5:0.3333333333333333 13:0.25 16:0.3333333333333333 17:0.05 48:1.0 58:0.08333333333333333 70:0.3333333333333333 108:0.3333333333333333 119:1.0 127:1.0 177:0.14285714285714285 189:0.3333333333333333 245:1.0 289:0.3333333333333333 291:1.0 335:0.5 346:0.5 501:1.0 1076:1.0 1105:1.0 1143:1.0 1144:1.0
cd06270a1eef0ad19817fc95472f49298340e7f5
449d555969bfd7befe906877abab098c6e63a0e8
/1202/CH6/EX6.2/6_2.sce
5a8d59dbed10c2725729a10e2d4cb2f915fd0226
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
490
sce
6_2.sce
clear clc //Example 6.2 disp('Example 6.2') deltaw=5;//kg/min deltaT=20;//deg C K=deltaT/deltaw tau=5//min T=140+0.632*20;//152.6 deg C s=%s; G=4/(5*s+1); //G=T'(s)/W'(s) mprintf('\n T(s)/W(s)=%s','') disp(G) t=0:0.01:25; n=length(t); w=5*ones(1,n); yt=csim(w,t,G)+140; wt=w+120; subplot(2,1,2); plot2d(t,yt,rect=[0,130,25,160]); xtitle("","Time(min)","$T(^0C)$") xgrid(); subplot(2,1,1); plot2d(t,wt,rect=[0,120,25,126],style=2) xtitle("Fig 6.4","Time(min)","$w\ (kg/min)$") xgrid();
59e375b9ea3006f3918eebf5bcbf69c2f78ec4c8
449d555969bfd7befe906877abab098c6e63a0e8
/2510/CH19/EX19.7/Ex19_7.sce
4cc7b8abd32bce8c86080bd07e9b6188e69c0315
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
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,517
sce
Ex19_7.sce
//Variable declaration: D2 = 0.5/10**3 //External diameter of needle (m) h3 = 12 //Heat transfer coefficient (W/m^2.K) L = 1 //Insulation thickness (m) T1 = 95 //Reactant temperature ( C) T3 = 20 //Ambient air temperature ( C) k1 = 16 //Thermal conductivity of needle (W/m.K) k3 = 0.0242 //Thermal conductivity of air (W/m.K) D3 = 2/10**3 //Diameter of rubber tube (m) //Calculation: r2 = D2/2 //External radius of needle (m) r3 = D3/2 //Radius of rubber tube (m) Rt1 = 1/(h3*(2*%pi*r2*L)) //Thermal resistance ( C/W) Q1 = (T1-T3)/Rt1 //Rate of heat flow in the absence of insulation (W) Bi = h3*D2/k1 //Biot number Nu = h3*D2/k3 //Nusselt number R2 = log(r3/r2) //Thermal resistance of needle ( C/W) R3 = 1/(h3*(2*%pi*r3*L)) //Thermal resistance of rubber tube ( C/W) Rt2 = R2+R3 //Total thermal resistance ( C/W) Q2 = (T1-T3)/Rt2 //Rate of heat loss (W) //Result: printf("1. The rate of the heat loss from the hypodermic needle with the rubber insulation is : %.2f W .",Q1) printf(" The rate of the heat loss from the hypodermic needle without the rubber insulation is : %.2f W .",Q2) printf("2. The Biot number is : %f",Bi) printf(" The nusselt number is : %.3f ",Nu)
5a50fbfa1b101f38992f04f000ef5c1ef51116f7
151e9d9a47b8c4098e67f5ecc974b3a811d91a95
/controler/quantizer.sci
6d2f40e6cf84e3e0fc93e5adc1ffd2db461b7384
[]
no_license
AliaksandrSiarohin/AppliedRobotics
a81c568be77962723b6b17394d1a42a4e76d8a69
5d79e537dd6926738ffc59eff18a78fd42c44417
refs/heads/master
2021-01-13T00:49:45.571990
2016-01-26T22:22:40
2016-01-26T22:22:40
45,112,715
2
3
null
null
null
null
UTF-8
Scilab
false
false
293
sci
quantizer.sci
//Round power to nearest integer, because we can set only integer power on brick. function out = Quantizer(in) // Inputs Power = in(1); // Quantization Quanta = 1; Power = round(Power/Quanta)*Quanta; // Output out = Power; endfunction
a1e6c3cd9f5fbbb08c1803a6718da75d92f361f0
449d555969bfd7befe906877abab098c6e63a0e8
/3532/CH2/EX2.3.4/Ex2_6.sce
c58b1adb146f30f10cdd3b79e15091eb1099d58f
[]
no_license
FOSSEE/Scilab-TBC-Uploads
948e5d1126d46bdd2f89a44c54ba62b0f0a1f5e1
7bc77cb1ed33745c720952c92b3b2747c5cbf2df
refs/heads/master
2020-04-09T02:43:26.499817
2018-02-03T05:31:52
2018-02-03T05:31:52
37,975,407
3
12
null
null
null
null
UTF-8
Scilab
false
false
771
sce
Ex2_6.sce
clc clear mprintf('Mechanical vibrations by G.K.Grover\n Example 2.3.4\n') //given data M=35//mass of flywheel in Kgs r=0.3/2 //distance of centre of mass from pivot in m T=1.22 //time period of oscillation in sec g=9.81//accelaration due to gravity in m/(sec^2) //concept is as follows //Jo=mass moment of inertia about pivot, Wn=natural freqency //thetadd=theta double dot(double differentiation) //Jo*thetadd=-M*g*r*theta ....sum of moments is = to zero //Jo*thetadd +(M*g*r*theta)=0 //Wn=sqrt((M*g*r*)/Jo)=2*pi/T //calculations Jo=M*g*r/((2*%pi/T)^2) Jg=Jo-M*r^2 //mass moment of inertia about geometric axis //output mprintf('Mass moment of inertia about pivot is %4.4f Kg-m^2\n Mass moment of inertia about geometric axis is %4.4f Kg-m^2',Jo,Jg)