start moving beyond PMModelItemInfo
[pspp] / notes
1 Files start with 15 bytes:
2     01 00 i3 01 (i0 or i1) (00 or 01) i15
3
4      36 00000000  01 00 03 00 00 00 01 00  00 00 01 15 00 00 00   (most TableData.bin)
5       9 00000000  01 00 03 00 00 00 01 00  00 00 00 15 00 00 00   (*NotesData.bin, *WarningData.bin)
6       1 00000000  01 00 03 00 00 00 01 01  00 00 01 15 00 00 00   (one TableData)
7 Next groups of 4 bytes:
8
9      15 0000000f  32 00 00 00  i50
10      10 0000000f  42 00 00 00  i66
11       9 0000000f  27 00 00 00  i39
12       8 0000000f  a2 00 00 00  i162
13       3 0000000f  31 00 00 00  i49
14       1 0000000f  68 01 00 00  i360
15
16      18 00000013  48 00 00 00  i72
17      10 00000013  60 00 00 00  i96
18       9 00000013  43 00 00 00  i67
19       8 00000013  a2 00 00 00  i162
20       1 00000013  68 01 00 00  i360
21
22 or all 8 bytes together:
23
24       3 0000000f  31 00 00 00 48 00 00 00  i49   i72   (some williams Tables)
25      15 0000000f  32 00 00 00 48 00 00 00  i50   i72   (rest of williams Tables)
26      10 0000000f  42 00 00 00 60 00 00 00  i66   i96   (smekens Tables)
27       9 0000000f  27 00 00 00 43 00 00 00  i39   i67   (germano Tables)
28       8 0000000f  a2 00 00 00 a2 00 00 00  i162 i162   (all Notes)
29       1 0000000f  68 01 00 00 68 01 00 00  i360 i360   (germano Warning)
30
31 Next 8 bytes:
32
33      21 00000017  24 00 00 00 78 00 00 00  i36 i120    (all williams)
34      13 00000017  1c 00 00 00 0a 01 00 00  i28 i266    (all germano)
35      12 00000017  30 00 00 00 a0 00 00 00  i48 i160    (all smekens)
36
37 All 16 bytes starting at offset 15:
38
39      15 0000000f  32 00 00 00 48 00 00 00  24 00 00 00 78 00 00 00  i50  i72  i36 i120
40      10 0000000f  42 00 00 00 60 00 00 00  30 00 00 00 a0 00 00 00  i66  i96  i48 i160
41       9 0000000f  27 00 00 00 43 00 00 00  1c 00 00 00 0a 01 00 00  i39  i67  i28 i266
42       3 0000000f  a2 00 00 00 a2 00 00 00  24 00 00 00 78 00 00 00  i162 i162 i36 i120
43       3 0000000f  a2 00 00 00 a2 00 00 00  1c 00 00 00 0a 01 00 00  i162 i162 i28 i266
44       3 0000000f  31 00 00 00 48 00 00 00  24 00 00 00 78 00 00 00  i49  i72  i36 i120
45       2 0000000f  a2 00 00 00 a2 00 00 00  30 00 00 00 a0 00 00 00  i162 i162 i48 i160 (./smekens/default/00000000011_lightNotesData.bin and ./smekens/modified/00000000011_lightNotesData.bin)
46       1 0000000f  68 01 00 00 68 01 00 00  1c 00 00 00 0a 01 00 00  i360 i360 i28 i266 (./germano/Crosstabs/00000000012_lightWarningData.bin)
47
48 2 bytes at offset 31 appears to be a sequence number within a
49 procedure's output; it begins with 1 with the first .bin file for a
50 procedure and increases, sometimes apparently skipping a number:
51
52       8 0000001f  03 00                                             |..|
53       8 0000001f  01 00                                             |..|
54       7 0000001f  04 00                                             |..|
55       6 0000001f  05 00                                             |..|
56       5 0000001f  07 00                                             |..|
57       5 0000001f  06 00                                             |..|
58       3 0000001f  08 00                                             |..|
59       2 0000001f  09 00                                             |..|
60       1 0000001f  0a 00                                             |..|
61       1 0000001f  02 00                                             |..|
62
63 2 bytes at offset 33 appear to identify a procedure, e.g.: smekens has only one procedure and all the same value:
64      12 00000021  20 73                                             | s|
65 williams has three procedures and increments by 0x10 between them (it looks like a procedure was deleted before output was saved):
66       9 00000021  a0 97                                             |..|
67       4 00000021  b0 97                                             |..|
68       8 00000021  d0 97                                             |..|
69 germano has a similar pattern across the three separate output files:
70       3 00000021  c0 38                                             |.8|
71       2 00000021  e0 38                                             |.8|
72       8 00000021  f0 38                                             |.8|
73
74 Sorting on bytes 33-35 then on 31-32 we get a sorted list of tables:
75
76 Byte 33 is always x0, for any digit x, across the corpus.
77
78
79 blp@sigabrt:~/pspp/spv(0)$ for d in `find -name \*.bin |grep -v chart`; do { hd -s 0x1f -n 6 $d | head -1; printf "%-60s" "$d"; } | sed 'N; s/\n//;' ; echo; done|sort -k 4,4 -k 5,5 -k 2,2|cut -b 1-128
80 0000001f  01 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000011_lightNotesData.bin            
81 0000001f  01 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000011_lightNotesData.bin           
82 0000001f  03 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000013_lightTableData.bin            
83 0000001f  03 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000013_lightTableData.bin           
84 0000001f  04 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000014_lightTableData.bin            
85 0000001f  04 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000014_lightTableData.bin           
86 0000001f  05 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000016_lightTableData.bin            
87 0000001f  05 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000016_lightTableData.bin           
88 0000001f  06 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000017_lightTableData.bin            
89 0000001f  06 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000017_lightTableData.bin           
90 0000001f  07 00 20 73 bf 46                                 |.. s.F|./smekens/default/00000000018_lightTableData.bin            
91 0000001f  07 00 20 73 bf 46                                 |.. s.F|./smekens/modified/00000000018_lightTableData.bin           
92 0000001f  01 00 a0 97 72 67                                 |....rg|./williams/00000000011_lightNotesData.bin                   
93 0000001f  03 00 a0 97 72 67                                 |....rg|./williams/00000000012_lightTableData.bin                   
94 0000001f  04 00 a0 97 72 67                                 |....rg|./williams/000000000131_lightTableData.bin                  
95 0000001f  05 00 a0 97 72 67                                 |....rg|./williams/000000000132_lightTableData.bin                  
96 0000001f  06 00 a0 97 72 67                                 |....rg|./williams/000000000133_lightTableData.bin                  
97 0000001f  07 00 a0 97 72 67                                 |....rg|./williams/000000000134_lightTableData.bin                  
98 0000001f  08 00 a0 97 72 67                                 |....rg|./williams/000000000135_lightTableData.bin                  
99 0000001f  09 00 a0 97 72 67                                 |....rg|./williams/000000000136_lightTableData.bin                  
100 0000001f  0a 00 a0 97 72 67                                 |....rg|./williams/000000000137_lightTableData.bin                  
101 0000001f  01 00 b0 97 72 67                                 |....rg|./williams/00000000031_lightNotesData.bin                   
102 0000001f  03 00 b0 97 72 67                                 |....rg|./williams/00000000032_lightTableData.bin                   
103 0000001f  04 00 b0 97 72 67                                 |....rg|./williams/00000000033_lightTableData.bin                   
104 0000001f  05 00 b0 97 72 67                                 |....rg|./williams/00000000034_lightTableData.bin                   
105 0000001f  01 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000011_lightNotesData.bin        
106 0000001f  03 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000012_lightTableData.bin        
107 0000001f  04 00 c0 38 3d e1                                 |...8=.|./germano/Frequencies/00000000013_lightTableData.bin        
108 0000001f  01 00 d0 97 72 67                                 |....rg|./williams/00000000051_lightNotesData.bin                   
109 0000001f  03 00 d0 97 72 67                                 |....rg|./williams/00000000052_lightTableData.bin                   
110 0000001f  04 00 d0 97 72 67                                 |....rg|./williams/00000000053_lightTableData.bin                   
111 0000001f  05 00 d0 97 72 67                                 |....rg|./williams/00000000054_lightTableData.bin                   
112 0000001f  06 00 d0 97 72 67                                 |....rg|./williams/00000000055_lightTableData.bin                   
113 0000001f  07 00 d0 97 72 67                                 |....rg|./williams/00000000056_lightTableData.bin                   
114 0000001f  08 00 d0 97 72 67                                 |....rg|./williams/00000000057_lightTableData.bin                   
115 0000001f  09 00 d0 97 72 67                                 |....rg|./williams/00000000058_lightTableData.bin                   
116 0000001f  01 00 e0 38 3d e1                                 |...8=.|./germano/Descriptives/00000000001_lightNotesData.bin       
117 0000001f  03 00 e0 38 3d e1                                 |...8=.|./germano/Descriptives/00000000002_lightTableData.bin       
118 0000001f  01 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000011_lightNotesData.bin          
119 0000001f  02 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000012_lightWarningData.bin        
120 0000001f  03 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000013_lightTableData.bin          
121 0000001f  04 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000014_lightTableData.bin          
122 0000001f  05 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000015_lightTableData.bin          
123 0000001f  06 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000016_lightTableData.bin          
124 0000001f  07 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000017_lightTableData.bin          
125 0000001f  08 00 f0 38 3d e1                                 |...8=.|./germano/Crosstabs/00000000018_lightTableData.bin          
126 blp@sigabrt:~/pspp/spv(0)$ 
127
128 Offsets 0x25 and 0x26 are always 5d c6.
129
130
131 Title and Caption
132 -----------------
133
134 starting at 0x27
135
136 tdump19 (title "Descriptive Statistics"):
137   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
138   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
139   31 
140   03 "Descriptive Statistics" 58 "" "Descriptive Statistics" 01
141   58
142
143   58
144
145   i0
146
147 tdump32 (title "Communalities", caption "Extraction Method: Principal Axis Factoring."):
148   03 "Communalities" 58 "" "Communalities" 01
149   03 "Communalities" 58 "" "Communalities" 01
150   31
151   03 "Communalities" 58 "" "Communalities" 01
152   58
153
154   31
155   03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 01
156
157   i0
158
159 [[]] below shows extra for footnote:
160
161 tdump29 (title "Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.", footnote (a) "4 factors extracted. 9 iterations required."):
162   03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" 00 "Factor Matrix" 01
163   03 "Factor Matrix" 58 "" "Factor Matrix" 01
164   31
165   03 "Factor Matrix" [31 01 00 i0 i0 i6: [i0 58 58]] "" "Factor Matrix" 01
166   58
167
168   31
169   03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 00 01
170
171   i0
172
173   58 "^1 factors extracted. ^2 iterations required." i2 i0 
174       01 58 F40.0(4) i0
175       01 58 F40.0(9)
176   58 i1
177
178 tdump30 (title "Rotated Factor Matrix(a)", caption "Extraction Method: Principal Axis Factoring.\nRotation Method: Varimax with Kaiser Normalization.", footnote (a) "Rotation converged in 5 iterations.")
179   03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01
180   03 "Rotated Factor Matrix" 58 "" "Rotated Factor Matrix" 01
181   31
182   03 "Rotated Factor Matrix" [[31 01 00 i0 i0 i6 i0 58]] 58 "" "Rotated Factor Matrix" 01
183   58
184
185   31 00
186   58 "^1 \n ^2" i2 i0
187     03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." i0 00
188     03 "Rotation Method: Varimax with Kaiser Normalization." 58 "" "Rotation Method: Varimax with Kaiser Normalization." 00 01
189
190   i0
191
192   58 "Rotation converged in ^1 iterations." 01 i0
193       01 58 F40.0(5)
194   58 i1
195
196 tdump10 (title is "Q8_1 It is ..."):
197   05 58 "Q8New_1" "Q8_1 It is ..." 02 
198   03 "Frequencies" 58 "" 00 "Frequencies" 01
199   31
200   05 58 "Q8New_1" "Q8_1 It is ..." 02
201   58
202
203   58
204
205   i0 00
206
207 tdump9 (title with variable substitution, variables have labels): 
208   (00 31 i0 i0 i43: (i37: (i0 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 
209       i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02
210       i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02
211   03 "Crosstabulation" 58 "" "Crosstabulation" 01
212   31
213   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
214       i0 05 58 "Q8New_4" "Q8_4 I think the claims made on..." 02
215       i0 05 58 "Q8New_1" "Q8_1 It is a corporation's..." 02
216   58 58 ""
217
218 tdump24 (title with variable substitution, no labels, caption with substitution):
219   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
220       i0 05 58 "cond" "" 03
221       i0 05 58 "fobia" "" 03
222   03 "Crosstabulation" 58 "" "Crosstabulation" 01
223   31
224   ((00 31 i0 i0 i43 i37 i0 31)) "[%1: * ^1:]1 Crosstabulation" 58 58 "[%1: * ^1:]1 Crosstabulation" i1 i2
225       i0 05 58 "cond" "" 03
226       i0 05 58 "fobia" "" 03
227   58
228   31
229   ((00 31 i0 i0 i43 i37 i0 31)) "col prop test on ^1 at ^2..." 58 58 "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2
230       i0 05 58 "fobia" "" 03
231       i0 01 58 F6.2(0.05) 00 
232
233 smekens/default/00000000018_lightTableData.bin:
234
235     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
236     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
237     31
238     03 "Factor Transformation Matrix" 58 "" "Factor Transformation Matrix" 01
239     58 31
240     00 58 "^1 \n ^2" i2 ""
241         03 "Extraction Method: Principal Axis Factoring. " 58 "" "Extraction Method: Principal Axis Factoring. " i0 00
242         03 "Rotation Method: Varimax with Kaiser Normalization. " 58 "" "Rotation Method: Varimax with Kaiser Normalization. " 
243     i0 00 
244
245 smekens/default/00000000011_lightNotesData.bin:
246
247     03 "Notes" 58 "notes" "Notes" 01
248     03 "Notes" 58 "" "Notes" 01
249     31
250     03 "Notes" 58 "notes" "Notes" 01
251     58 58
252     i0
253
254 web/e5cce7d8b3200a550c0c018fff441e16/000000000344_lightTableData.bin:
255
256     03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01
257     03 "OmnibusTest" 58 00 00 00 00 "OmnibusTest" 01
258     31
259     03 "Omnibus Test" 31 i2 00 00 i1 00 00 i11: (i5: (00 00 00 00 58) 58 58) 00 00 00 00 "Omnibus Test" 01
260     58 31
261     00 31 i0 i0 i45: (i39: (00 00 00 00 31 "Dependent ^1 Model [%1:, ^1:]2") 58 58) "Dependent Variable\: ^1\nModel\: [%1:, ^1:]2" i2
262         i0 05 58 "Condom_Casual" "4. How often have you used condoms when you had sex with casual partners?" 02
263         i14 00 00 00 00 03 "(Intercept)" 58 00 00 00 00 "(Intercept)" 00 00 00 00 00 03 
264
265 germano/Crosstabs/00000000014_lightTableData.bin:
266
267     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0
268         05 58 "cond" 00 00 00 00 i3 00
269         05 58 "fobia" 00 00 00 00 03
270     03 "Crosstabulation" 58 "" "Crosstabulation" 01
271     31
272     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "[%1: * ^1:]1 Crosstabulation") 58 58) "[%1: * ^1:]1 Crosstabulation" i1 i2 i0
273         05 58 "cond" 00 00 00 00 i3 00
274         05 58 "fobia" 00 00 00 00 03
275     58 31
276     00 31 i0 i0 i43: (i37: (00 00 00 00 31 "col prop test on ^1 at ^2...") 58 58) "Each subscript letter denotes a subset of ^1 categories whose column proportions do not differ significantly from each other at the ^2 level." i2
277         i0 05 58 "fobia" 00 00 00 00 i3 00
278         01 58 02 06 05 00 9a 99 99 99 99 99 a9 i63 00 
279
280 web/7e29c00c8c2a7e490636b7f74598b6a4/000000002315210_lightTableData.bin:
281
282     05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02
283     03 "Frequencies" 58 00 00 00 00 "Frequencies" 01
284     31
285     05 31 i1 i0 00 00 i11: (i5: (00 00 00 00 58) 58 58) "meaning10" "routine household tasks" 02
286     58
287     58 i1 00 31 i0 i0 i36: (i30: (00 00 00 00 31 "[%1 = %2:, ^1 = ^2:]1") 58 58) "[%1 = %2:, ^1 = ^2:]1" i1 i2 i0
288         05 58 "meaning14" "level of enjoyment" i2 00
289         02 58 F40.2(3.80)
290
291 web/67e54cc8a549f4a66331c0401ff4a775/0000000005112_lightTableData.bin:
292
293     00 58 "[:^1:]1" i1 i3 i0
294         01 58 F40.0(2) 00 00 00 00
295         03 ". " 58 00 00 00 00 ". " 00 00 00 00 00
296         03 "Word_Type" 58 00 00 00 00 "Word_Type" 00
297
298     03 "Estimated Marginal Means" 58 00 00 00 00 "Estimated Marginal Means" 01
299
300     31
301
302     00 58 "[:^1:]1" i1 i3 i0
303         01 58 F40.0(2) 00 00 00 00
304         03 ". " 58 00 00 00 00 ". " 00 00 00 00 00
305         03 "Word_Type" 58 00 00 00 00 "Word_Type" 00
306     58
307     58 00 00 00 00 
308
309 web/9c0f5ba2cd60a97194a82cdc67efc3cb/0000000001774_lightTableData.bin:
310
311     03 "Classification Results" 31 i2 00 00 i2 00 00 i6 00 00 00 00 58 58 00 00 00 00 
312     "Classification Results" 01 03 
313     "Classification Results" 58 00 00 00 00 
314     "Classification Results" 01 31 03 
315     "Classification Results" 31 i2 00 00 i2 00 00 i6 00 00 00 00 58 58 00 00 00 00 
316     "Classification Results" 01 58 58 i3 00 58 
317     "^1 of original grouped cases correctly classified." i1 00 00 00 00 01 58 PCT40.1(84.4)
318     58 i1 03 
319     "Cross validation is done only for those cases in the analysis. In cross validation, each case is classified by the functions derived from all cases other than that case." 58 00 00 00 00 
320     "Cross validation is done only for those cases in the analysis. In cross validation, each case is classified by the functions derived from all cases other than that case." 01 58 i1 00 58 
321     "^1 of cross-validated grouped cases correctly classified." i1 00 00 00 00 01 58 PCT40.1(80.0)
322
323 web/6bd5afeffbab87befbcd8d201254a5e6/0000000008104_lightTableData.bin:
324
325     00 58 
326     "[:^1:]1" i1 i5 00 00 00 00 01 58 F40.0(4)
327     00 00 00 00 03 
328     ". " 58 00 00 00 00 
329     ". " 00 00 00 00 00 03 
330     "Direction" 58 00 00 00 00 
331     "Direction" 00 00 00 00 00 03 
332     " * " 58 00 00 00 00 
333     " * " 00 00 00 00 00 03 
334     "Speed" 58 00 00 00 00 
335     "Speed" 00 03 
336     "Estimated Marginal Means" 58 00 00 00 00 
337     "Estimated Marginal Means" 01 31 00 58 
338     "[:^1:]1" i1 i5 00 00 00 00 01 58 F40.0(4)
339     00 00 00 00 03 
340     ". " 58 00 00 00 00 
341     ". " 00 00 00 00 00 03 
342     "Direction" 58 00 00 00 00 
343     "Direction" 00 00 00 00 00 03 
344     " * " 58 00 00 00 00 
345     " * " 00 00 00 00 00 03 
346     "Speed" 58 00 00 00 00 
347     "Speed" 00 58 58 00 00 00 00 
348
349 Footnotes
350 ---------
351
352 germano/Crosstabs/00000000016_lightTableData.bin:
353
354     i4
355
356     03 "Not assuming the null hypothesis." 58 00 00 00 00 "Assuming the alternate hypothesis" 01 58 i11
357     03 "Using the asymptotic standard error assuming the null hypothesis." 58 00 00 00 00 "Using the asym std error ..." 01 58 i9
358     03 "Based on chi-square approximation" 58 00 00 00 00 "Based on chi-square approximation" 01 58 i2
359     03 "Likelihood ratio chi-square probability." 58 00 00 00 00 "Likelihood ratio chi-squ ..." 01 58 i3 
360
361 web/1ae63a04381624dac939ac62eca63fec/00000000054_lightTableData.bin:
362
363     i2
364     03 "Correlation is significant at the 0.05 level (2-tailed)." 58 00 00 00 00 "Correlation is significant at the 0.05 level (2-tailed)." 01 31 03 "*" 58 00 00 00 00 "*" 00 i2
365     03 "Correlation is significant at the 0.01 level (2-tailed)." 58 00 00 00 00 "Correlation is significant at the 0.01 level (2-tailed)." 01 31 03 "**" 58 00 00 00 00 "**" 00 i4
366
367 web/7e29c00c8c2a7e490636b7f74598b6a4/0000000011163_lightTableData.bin:
368
369 00 31 i0 i0 i60: (i54: (00 00 00 00 31 "^1 is constant when [%1 = %2:, ^1 = ^2:]2 ...") 58 58) "^1 is constant when [%1 = %2:, ^1 = ^2:]2. It has been omitted." i2
370     i0 05 58 "meaning14" "level of enjoyment" 02
371     i2 i0
372          05 58 "meaning13" "none of these" i2 00
373          02 58 F40.2(1.00) "meaning13" 00 00 00 00 02 58 i1
374
375 web/e6f958867667aa56d033d54211ff2aec/00000000015_lightTableData.bin:
376
377 00 58 "^1 cells (^2) have expected count less than 5. The minimum expected count is ^3." i3
378     i0 01 58 F40.0(18)
379     i0 01 58 PCT40.1(75.0)
380     i0 01 58 F(8.5)(something)
381
382 smekens/default/00000000016_lightTableData.bin:
383
384     03 "Extraction Method: Principal Axis Factoring." 58 "" "Extraction Method: Principal Axis Factoring." 00
385
386     i1 00
387     58 "^1 factors extracted. ^2 iterations required." i2 i0 01 58 F40.0(4) i0 01 58 F40.0(9)
388
389
390 Fonts
391 -----
392
393 First number after 40 41 is attributes: 0=plain, 1=bold, ... (?)
394 Second number after 40 41 is horz align: 0=center, 2=left, 1=right(?), 64173="mixed" for data
395 Third number after 40 41 is vert align: 0=center, 1=top, 3=bottom
396 Last four numbers are margins: left, right, top, bottom, probably in points but there's some confusion
397
398 Rows are:
399      01 title
400      02 caption
401      03 footnote
402      04 row labels
403      05 column labels
404      06 corner labels
405      07 data
406      08 layers
407       
408 tdump1 to tdump18:
409     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8
410     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
411     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4
412     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
413     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
414     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
415     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
416     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
417
418 i1 i0 -> 01 00 00 00 00 00 00 00
419 i0 00 -> 00 00 00 00 00
420 i0 i0 -> 00 00 00 00 00 00 00 00
421
422
423 tdump19 to tdump27:
424     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i8
425     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
426     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i11 i8 i3 i4
427     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
428     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
429     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4
430     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i0 "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i1
431     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i11 i1 i4 
432
433 tdump28 to tdump36:
434     01 31 "SansSerif" 00 00 40 41 i1 i0 i0 00     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i8
435     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
436     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i24 i24 i2 i4
437     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
438     05 31 "SansSerif" 00 00 40 41 i0 i0 00 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4
439     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4
440     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
441     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i3     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i4 
442
443 tdump37:
444     01 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
445     02 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#1a5f76" "#282a73" i0 i0 00 i8 i10 i1 i1
446     03 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i-1 i-1 i-1 i-1
447     04 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
448     05 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
449     06 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1
450     07 31 "SansSerif" 00 00 40 41 i0 00 i64173 i1 "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i1
451     08 31 "SansSerif" 00 00 40 41 i0 00 i2 i1     "#000000" "#ffffff" i0 i0 00 i8 i10 i1 i-1 
452
453 Styles
454 ------
455
456 tdump1:
457
458     i240 followed by 240 bytes:
459         00 00 00 i1  i19 i5 03
460         i255 00 00 00 i16 00
461         i255 00 00 00 i6  03
462         i255 00 00 00 i17 01
463         i255 00 00 00 i7  03
464         i255 00 00 00 i18 01
465         i255 00 00 00 i8  03
466         i255 00 00 00 i9  03
467         i255 00 00 00 i10 03
468         i255 00 00 00 i0  00
469         i255 00 00 00 i11 01
470         i255 00 00 00 i1  00
471         i255 00 00 00 i12 00
472         i255 00 00 00 i2  00
473         i255 00 00 00 i13 01
474         i255 00 00 00 i3  00
475         i255 00 00 00 i14 01
476         i255 00 00 00 i4  00
477         i255 00 00 00 i15 00
478         i255 00 00 00 00
479
480     i18 followed by 18 bytes:
481         00 00 00 i1 00 00 00 00 00 00 i2 00
482
483     i142 followed by 142 bytes:
484         00 00 00
485         i1 i4 00 01 01 01
486         i1 00 i24
487         00*28
488         "Default" but with 1-byte length (07).
489         00*34
490
491     i0 "en_NZ.windows-1252"
492     i0 01 00 01 99 07 00 00
493     '.' ',' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
494
495     i355 followed by 355 bytes:
496         i53:
497             00 01 00 00 02 i2 00*23 01
498             i16:
499                 00*16
500         26 01 00 00 01 00 i4 
501         "Regression" 00 00 00 00 
502         "en" 
503         "windows-1252" 
504         "en_NZ.windows-1252"
505         01 00 01 01 99 07 00 00 '.' ',' 0.0001 
506         "DataSet2" 
507         "C:\Users\jwilliams\Dropbox\Research\Collaboration\Marketing\Lifestyles\NEW 649917092_Consumer NZ Survey_Merged_FinalData_SPSS_V02.sav" 00 00 00 00 58 54 2b i84 00
508         i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
509         00
510
511 tdump19:
512
513     i240 followed by 240 bytes:
514         00 00 00 i1 i19 i9 03 i255
515         00 00 00 i10 03 i255
516         00 00 00 i0 00 i255
517         00 00 00 i11 01 i255
518         00 00 00 i1 00 i255
519         00 00 00 i12 00 i255
520         00 00 00 i2 00 i255
521         00 00 00 i13 01 i255
522         00 00 00 i3 00 i255
523         00 00 00 i14 01 i255
524         00 00 00 i4 00 i255
525         00 00 00 i15 00 i255
526         00 00 00 i5 03 i255
527         00 00 00 i16 00 i255
528         00 00 00 i6 03 i255
529         00 00 00 i17 01 i255
530         00 00 00 i7 03 i255
531         00 00 00 i18 01 i255
532         00 00 00 i8 03 i255
533         00 00 00 00
534
535     i18 followed by 18 bytes:
536         00 00 00
537         i1 00 00 00 00 00 00
538         i2 00
539
540     i117 followed by 117 bytes:
541         00 00 00
542         i1 i3 00 01 01 01
543         i1 00 i24
544         00*93
545
546     i0 "it_IT.windows-1252"
547     i0 00 00 00 99 07 00 00
548     ',' '.' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
549
550     i196 followed by 196 bytes:
551         i53:
552             00 01 00 00 03 i3 00*23 01
553             i16:
554                 00*16
555         i135:
556             01 00 i3 
557             "Descriptives" 00 00 00 00 
558             "en" 
559             "windows-1252" 
560             "it_IT.windows-1252"
561             00 00 00 01 99 07 00 00 ',' '.' 0.000100 01
562             i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
563             00
564
565 tdump28:
566
567     i240 followed by 240 bytes:
568         00 00 00 i1 i19 i9 03 i255
569         00 00 00 i3 00 i255
570         00 00 00 i16 00 i255
571         00 00 00 i10 03 i255
572         00 00 00 i4 00 i255
573         00 00 00 i17 01 i255
574         00 00 00 i11 01 i255
575         00 00 00 i5 03 i255
576         00 00 00 i18 01 i255
577         00 00 00 i12 00 i255
578         00 00 00 i6 03 i255
579         00 00 00 i0 00 i255
580         00 00 00 i13 01 i255
581         00 00 00 i7 03 i255
582         00 00 00 i1 00 i255
583         00 00 00 i14 01 i255
584         00 00 00 i8 03 i255
585         00 00 00 i2 00 i255
586         00 00 00 i15 00 i255
587         00 00 00 00
588
589     i18 followed by 18 bytes:
590         00 00 00
591         i1 00 00 00 00 00 00
592         i2 00
593
594     i117 followed by 117 bytes:
595         00 00 00
596         i1 i3 00 01 01 01 01
597         i2 i24
598         00*93
599
600     i0 "nl_BE.windows-1252"
601     i0 00 00 00 99 07 00 00
602     ',' ' ' i5 "-,,," "-,,," "-,,," "-,,," "-,,,"
603
604     i199:
605         i53:
606             00*32 01
607             i16:
608                 00*16
609         i138:
610             01 00 i3 
611             "Factor Analysis" 00 00 00 00 
612             "en" 
613             "windows-1252" 
614             "nl_BE.windows-1252" 00 00 00 01 99 07 00 00 ',' ' ' 0.000100 01
615             i5 "-,,," "-,,," "-,,," "-,,," "-,,," '.'
616             00 
617
618
619 Dimensions
620 ----------
621
622 format: dd ww ff 00, e.g. F40.1 is 01 28 05 00
623 01 - double (01 58 format double)
624 02 - instance of a numeric variable (02 58 format double "varname" "vallab")
625 03 - just a string (03 "Short Name" 58 "identifier" "Long Name")
626 04 - instance of a string variable (04 58 format "vallab" "varname" 02 "value"
627 05 - variable (05 58 "varname" "Variable Label")
628
629
630 tdump5 (./williams/000000000135_lightTableData.bin):
631
632     i2
633
634     05 58 "Q8New_5" "Q8_5 I would..." 02 00 00 i2 01 00 i1 00 i3
635         03 "Valid" 58 "valid" "Valid"                            01 00 00 01 i2 i-1 i2
636             01 58 F40.0(0)                                          01 00 01 i2 i-1 i1
637                 01 58 F40.0(-1)                                     01 00 01 i0 i-1 i5
638                     02 58 F40.0(1) "Q8New_5" "Strongly disagree"           i2 i2 i0 i0
639                     02 58 F40.0(2) "Q8New_5" "Disgaree"                    i2 i2 i1 i0
640                     02 58 F40.0(3) "Q8New_5" "Neutral"                     i2 i2 i2 i0
641                     02 58 F40.0(4) "Q8New_5" "Agree"                       i2 i2 i3 i0
642                     02 58 F40.0(5) "Q8New_5" "Strongly agree"              i2 i2 i4 i0
643             03 "Total" 58 "total_4" "Total" i1 i2 i5 i0
644         03 "Missing" 58 "missing_observations" "Missing"         01 00 00 01 i2 i-1 i1
645             03 "System" 58 "gsysmis" "System Missing"                      i1 i2 i6 i0
646         03 "Total" 58 "total_4" "Total"                                    i1 i2 i7 i0
647
648     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
649         03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00
650         03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00
651         03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00
652         03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 i0
653
654 tdump9 (./williams/00000000033_lightTableData.bin):
655
656     i3
657
658     05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i2 01 00 i1 00 i2
659         05 58 "Q8New_4" "Q8_4 I think..." 02 00 00 i1 00 ff ff ff ff i5
660             02 58 F40.0(1) "Q8New_4" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00
661             02 58 F40.0(2) "Q8New_4" "Disgaree" i2 i2 i1 00 00 00 00
662             02 58 F40.0(3) "Q8New_4" "Neutral" i2 i2 i2 00 00 00 00
663             02 58 F40.0(4) "Q8New_4" "Agree" i2 i2 i3 00 00 00 00
664             02 58 F40.0(5) "Q8New_4" "Strongly agree" i2 i2 i4 00 00 00 00
665         03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00
666
667     05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i2 01 00 01 i1 i2
668         05 58 "Q8New_1" "Q8_1 It is a..." 02 00 00 i1 00 ff ff ff ff i5
669             02 58 F40.0(1) "Q8New_1" "Strongly disagree" i2 i2 00 00 00 00 00 00 00 00
670             02 58 F40.0(2) "Q8New_1" "Disgaree" i2 i2 i1 00 00 00 00
671             02 58 F40.0(3) "Q8New_1" "Neutral" i2 i2 i2 00 00 00 00
672             02 58 F40.0(4) "Q8New_1" "Agree" i2 i2 i3 00 00 00 00
673             02 58 F40.0(5) "Q8New_1" "Strongly agree" i2 i2 i4 00 00 00 00
674         03 "Total" 58 "total_4" "Total" i1 i2 i5 00 00 00 00
675
676     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i4
677         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00
678         03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 i0 00
679         31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
680             05 58 "Q8New_4" "Q8_4 I think..." i2                            i2 i2 i0
681         03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i3 00 00 00 00 00 00 00 00 
682
683 tdump14 (./williams/00000000034_lightTableData.bin):
684
685     i2
686
687     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4
688         03 "A" 58 "" "A" 00 01 00 01 i2 i-1 i2
689             03 "Pearson Chi-Square" 58 "chi-square_crosstabs_1" "Pearson Chi-Square" i1 i2 00 00 00 00 00 00 00 00
690             03 "Continuity Correction" 58 "yates_correction_for_continuity" "Continuity Correction" i1 i2 i1 00 00 00 00
691         03 "B" 58 "" "B" 00 01 00 01 i2 i-1 i1
692             03 "Likelihood Ratio" 58 "likelihood-ratio_chi-square" "Likelihood Ratio" i1 i2 i2 00 00 00 00
693         03 "Linear-by-Linear Association" 58 "linear-by-linear_association_crosstabs" "Linear-by-Linear Association" i1 i2 i3 00 00 00 00
694         03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i4 00 00 00 00
695
696     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i3
697         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
698         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
699         03 "Asymp. Sig. (2-sided)" 58 "asymptotic_significance" "Asymptotic Significance" i1 i2 i2 00 00 00 00
700
701
702 tdump15 (./williams/00000000032_lightTableData.bin):
703
704     i3
705
706     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1
707         00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1"       i1 i2 i0
708             05 58 "Q8New_4" "Q8_4 I think..." i2 00
709             05 58 "Q8New_1" "Q8_1 It is a..." i2                                  i2 i0 i0
710
711     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
712         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
713         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
714
715     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
716         03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00
717         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00
718         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0
719
720 tdump19:
721
722     i3 (three dimensions)
723
724     03 "Stat Type" 58 "stat_type" "Stat Type"                                 01 00 00    i2 01 00 i1 00 i2
725         03 "Statistic" 58 "statistic" "Statistic"                             01 00 00 00 i2 i0 00 00 00 00
726         03 "Std. Error" 58 "standard_error" "Std. Error"                      01 00 00 00 i2 i1 00 00 00 00
727
728     03 "Statistics" 58 "statistics_10" "Statistics"                           01 00    01 i2 01 00 01 i1 i10
729         03 "N" 58 "n" "N"                                                     01 00 00 00 i2 i0 00 00 00 00
730         03 "Range" 58 "range" "Range"                                         01 00 00 00 i2 i1 00 00 00 00
731         03 "Minimum" 58 "minimum" "Minimum"                                   01 00 00 00 i2 i2 00 00 00 00
732         03 "Maximum" 58 "maximum" "Maximum"                                   01 00 00 00 i2 i3 00 00 00 00
733         03 "Sum" 58 "sum" "Sum"                                               01 00 00 00 i2 i4 00 00 00 00
734         03 "Mean" 58 "mean" "Mean"                                            01 00 00 00 i2 i5 00 00 00 00
735         03 "Std. Deviation" 58 "gbar11" "Std. Deviation"                      01 00 00 00 i2 i6 00 00 00 00
736         03 "Variance" 58 "variance" "Variance"                                01 00 00 00 i2 i7 00 00 00 00
737         03 "Skewness" 58 "skewness" "Skewness"                                01 00 00 00 i2 i8 00 00 00 00
738         03 "Kurtosis" 58 "kurtosis" "Kurtosis"                                01 00 00 00 i2 i9 00 00 00 00
739
740     03 "Variables" 58 "variable_s_1" "Variables"                              01 00    01 i2 01 00 01 i2 i4
741         05 58 "fqc_b"                                                      00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
742         05 58 "fqc_p"                                                      00 00 00 00 i3 i2 i1 00 00 00 00
743         05 58 "fqc_d"                                                      00 00 00 00 i3 i2 i2 00 00 00 00
744         03 "Valid N (listwise)" 58 "valid_n_listwise" "Valid N (listwise)"    01 00 00 00 i2 i3 00 00 00 00
745
746
747
748 tdump20 ./germano/Crosstabs/00000000018_lightTableData.bin:
749
750     i2
751
752     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i1 00 
753         31 i0 i42: (i36: (i0 31 "Odds Ratio for ^1 (^2 / ^3)") 58 58) "Odds Ratio for ^1 (^2 / ^3)" i3 i0
754             05 58 "cond" "" i3 00
755             02 58 F40.0(1) "cond" "" i3 00
756             02 58 F40.0(2) "cond" "" i3                                             i2 i0 i0
757
758     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i1
759         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00 00 00 00 00 i1 i1 00 00 00 00 i
760
761 tdump27 (germano/Frequencies.pdf):
762
763     i2 (two dimensions)
764
765     03 "Variables" 58 "variable_s_1" "Variables"                               01 00 02 i2 01 00 i1 00 i1 
766         05 58 "fobia" ""                                                                      i3 i2 i0 i0
767
768     03 "Statistics" 58 "statistics_10" "Statistics" 01                           00 00 i2 01 00 01 i1 i16
769         03 "N" 58 "n" "N" 01 00 00                                                           01 i2 i-1 i2
770             03 "Valid" 58 "valid" "Valid i1                                                      i2 i0 i0
771             03 "Missing" 58 "missing_observations" "Missing" i1                                  i2 i1 i0
772         03 "Mean" 58 "mean" "Mean i1                                                             i2 i2 i0
773         03 "Std. Error of Mean" 58 "gfreq13" "Std. Error of Mean" i1                             i2 i3 i0
774         03 "Median" 58 "median" "Median" i1                                                      i2 i4 i0
775         03 "Mode" 58 "mode_frequencies" "Mode" i1                                                i2 i5 i0
776         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1                                      i2 i6 i0
777         03 "Variance" 58 "variance" "Variance" i1                                                i2 i7 i0
778         03 "Skewness" 58 "skewness" "Skewness" i1                                                i2 i8 i0
779         03 "Std. Error of Skewness" 58 "standard_error_of_skewness" "Std. Error of Skewness" i1  i2 i9 i0
780         03 "Kurtosis" 58 "kurtosis" "Kurtosis" i1                                                i2 i10 i0
781         03 "Std. Error of Kurtosis" 58 "standard_error_of_kurtosis" "Std. Error of Kurtosis" i1  i2 i11 i0
782         03 "Range" 58 "range" "Range" i1                                                         i2 i12 i0
783         03 "Minimum" 58 "minimum" "Minimum" i1                                                   i2 i13 i0
784         03 "Maximum" 58 "maximum" "Maximum" i1                                                   i2 i14 i0
785         03 "Sum" 58 "sum" "Sum" i1                                                               i2 i15 i0
786         03 "Percentiles" 58 "percentiles" "Percentiles" 01 00 00                              01 i2 i-1 i5
787             01 58 F3.0(10.0) 00 00 00                                                            i2 i16 i0
788             01 58 F3.0(25.0) 00 00 00                                                            i2 i17 i0
789             01 58 F3.0(50.0) 00 00 00                                                            i2 i18 i0
790             01 58 F3.0(75.0) 00 00 00                                                            i2 i19 i0
791             01 58 F3.0(90.0) 00 00 00                                                            i2 i20 i0
792
793 tdump24 (germano/Crosstabs.pdf):
794
795     i3 (three dimensions)
796
797     05 58 "cond" "" 03 00 00            i2 01 00 i1 00 i2
798         05 58 "cond" "" 03 00 00        i1 00 i-1 i4
799             02 58 F40.0(1) "cond" "" i3     i2 i0 i0
800             02 58 F40.0(2) "cond" "" i3     i2 i1 i0
801             02 58 F40.0(3) "cond" "" i3     i2 i2 i0
802             02 58 F40.0(4) "cond" "" i3     i2 i3 i0
803         03 "Total" 58 "total_4" "Total" i1  i2 i4 i0
804
805     05 58 "fobia" "" 03 00 00              i2 01 00 01 i1 i2
806         05 58 "fobia" "" 03 00 00          i1 00 i-1 i11
807             02 58 F40.0(0) "fobia" "" i3   i2 i0 i0
808             02 58 F40.0(1) "fobia" "" i3   i2 i1 i0
809             02 58 F40.0(2) "fobia" "" i3   i2 i2 i0
810             02 58 F40.0(3) "fobia" "" i3   i2 i3 i0
811             02 58 F40.0(4) "fobia" "" i3   i2 i4 i0
812             02 58 F40.0(5) "fobia" "" i3   i2 i5 i0
813             02 58 F40.0(6) "fobia" "" i3   i2 i6 i0
814             02 58 F40.0(7) "fobia" "" i3   i2 i7 i0
815             02 58 F40.0(8) "fobia" "" i3   i2 i8 i0
816             02 58 F40.0(9) "fobia" "" i3   i2 i9 i0
817             02 58 F40.0(10) "fobia" "" i3  i2 i10 i0
818         03 "Total" 58 "total_4" "Total" i1 i2 i11 i0
819
820     03 "Statistics" 58 "statistics_10" "Statistics" 01  00 01 i2 01 00 01 i2 i8
821         03 "Count" 58 "count_6" "Count" i1                             i2 i0 i0
822         03 "Expected Count" 58 "expected_count" "Expected Count" i1    i2 i1 i0 00
823         31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
824             05 58 "cond" "" i3                                         i2 i2 i0 00
825         31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0
826             05 58 "fobia" "" i3                                        i2 i3 i0
827         03 "% of Total" 58 "_pct_of_total" "% of Total" i1             i2 i4 i0
828         03 "Residual" 58 "residual_3" "Residual" i1                    i2 i5 i0
829         03 "Std. Residual" 58 "std_residuals" "Std. Residual" i1       i2 i6 i0
830         03 "Adj. Residual" 58 "adj_residuals" "Adj. Residual" i1       i2 i7 i0
831
832
833 tdump25 (germano/Crosstabs.pdf):
834
835     i3 (3 dimensions)
836
837     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1
838         00 31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0
839             05 58 "cond" "" i3 00
840             05 58 "fobia" "" i3 i2 i0 i0
841
842     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
843         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
844         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
845
846     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
847         03 "Valid" 58 "valid" "Valid" i1 i2 i0 i0
848         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 i0
849         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0
850
851 tdump21 ./germano/Crosstabs/00000000016_lightTableData.bin (Directional Measures):
852
853     i3 (three dimensions)
854
855     03 "Direction" 58 "direction" "Direction" 01 00 00 i2 01 00 i1 00 i3
856         03 "Symmetric" 58 "symmetric" "Symmetric"                  i1 i2 i0 i0 00
857         31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0
858             05 58 "cond" ""                                        i3 i2 i1 i0 00
859         31 i0 i0 i27: (i21: (i0 31 "^1 Dependent") 58 58) "^1 Dependent" i1 i0
860             05 58 "fobia" ""                                       i3 i2 i2 i0
861
862     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i3
863         03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 i-1 i3
864             03 "Lambda" 58 "lambda" "Lambda" i1 i2 00 00 00 00 00 00 00 00
865             03 "Goodman and Kruskal tau" 58 "goodman_and_kruskals_tau" "Goodman and Kruskal tau" i1 i2 i1 00 00 00 00
866             03 "Uncertainty Coefficient" 58 "uncertainty_coefficient" "Uncertainty Coefficient" i1 i2 i2 00 00 00 00
867         03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 i-1 i1
868             03 "Somers' d" 58 "somers_d" "Somers' d" i1 i2 i3 00 00 00 00
869         03 "Nominal by Interval" 58 "nominal_by_interval_measures" "Nominal by Interval" 01 00 00 01 i2 i-1 i1
870             03 "Eta" 58 "eta_crosstabs" "Eta" i1 i2 i4 00 00 00 00
871
872     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i2 i4
873         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
874         03 "Asymp. Std. Error" 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) "asymptotic_standard_error" "Asymptotic Std. Error" i1 i2 i1 00 00 00 00
875         03 "Approx. T" 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00
876         03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 00 00 00 00 00 00 00 00 i2 i1 00 00 00 00 i1 i2 i44
877
878 tdump22 ./germano/Crosstabs/00000000017_lightTableData.bin (Symmetric Measures):
879
880 This is a good example for footnotes: there are three footnotes in the table and two of them are referenced from the dimensions.
881
882     i2
883
884     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5
885         03 "Nominal by Nominal" 58 "nominal_measures" "Nominal by Nominal" 01 00 00 01 i2 ff ff ff ff i3
886             03 "Phi" 58 "phi" "Phi" i1 i2 00 00 00 00 00 00 00 00
887             03 "Cramer's V" 58 "cramers_v" "Cramer's V" i1 i2 i1 00 00 00 00
888             03 "Contingency Coefficient" 58 "contingency_coefficient" "Contingency Coefficient" i1 i2 i2 00 00 00 00
889         03 "Ordinal by Ordinal" 58 "ordinal_measures" "Ordinal by Ordinal" 01 00 00 01 i2 ff ff ff ff i4
890             03 "Kendall's tau-b" 58 "kendalls_tau-b_1" "Kendall's tau-b" i1 i2 i3 00 00 00 00
891             03 "Kendall's tau-c" 58 "kendalls_tau-c" "Kendall's tau-c" i1 i2 i4 00 00 00 00 
892             03 "Gamma" 58 "gamma" "Gamma" i1 i2 i5 00 00 00 00
893             03 "Spearman Correlation" 58 "spearman_correlation" "Spearman Correlation" i1 i2 i7 00 00 00 00
894         03 "Interval by Interval" 58 00 00 00 00 "Interval by Interval" 01 00 00 01 i2 ff ff ff ff i1
895             03 "Pearson's R" 58 "pearson_correlation_coefficient" "Pearson's R" i1 i2 i6 00 00 00 00
896         03 "Measure of Agreement" 58 "other" "Measure of Agreement" 01 00 00 01 i2 ff ff ff ff i1
897             03 "Kappa" 58 "kappa" "Kappa" i1 i2 i8 00 00 00 00
898         03 "N of Valid Cases" 58 "valid" "N of Valid Cases" i1 i2 i9 00 00 00 00
899
900     03 "Values" 58 "values_10" "Values" 01 00 01 i2 01 00 01 i1 i4
901         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
902         03 "Asymp. Std. Error" 31 i1 i0 00 00 i11: (i5: (i0 58) 58 58) "ase" "Asymptotic Std. Error" i1 i2 i1 00 00 00 00
903         03 "Approx. T"         31 i1 i1 00 00 i11: (i5: (i0 58) 58 58) "approximate_t" "Approximate T" i1 i2 i2 00 00 00 00 
904         03 "Approx. Sig." 58 "approximate_probability" "Approximate Significance" i1 i2 i3 i0 i0
905
906 tdump24 ./germano/Crosstabs/00000000014_lightTableData.bin
907
908     i3
909
910     05 58 "cond" 00 00 00 00 03 00 00 i2 01 00 i1 00 i2
911         05 58 "cond" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i4
912             02 58 F40.0(1) "cond" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00 
913             02 58 F40.0(2) "cond" 00 00 00 00 i3 i2 i1 00 00 00 00
914             02 58 F40.0(3) "cond" 00 00 00 00 i3 i2 i2 00 00 00 00
915             02 58 F40.0(4) "cond" 00 00 00 00 i3 i2 i3 00 00 00 00
916         03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00
917     05 58 "fobia" 00 00 00 00 03 00 00 i2 01 00 01 i1 i2
918         05 58 "fobia" 00 00 00 00 03 00 00 i1 00 ff ff ff ff i11
919             02 58 F40.0(0) "fobia" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
920             02 58 F40.0(1) "fobia" 00 00 00 00 i3 i2 i1 00 00 00 00 
921             02 58 F40.0(2) "fobia" 00 00 00 00 i3 i2 i2 00 00 00 00
922             02 58 F40.0(3) "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00
923             02 58 F40.0(4) "fobia" 00 00 00 00 i3 i2 i4 00 00 00 00
924             02 58 F40.0(5) "fobia" 00 00 00 00 i3 i2 i5 00 00 00 00
925             02 58 F40.0(6) "fobia" 00 00 00 00 i3 i2 i6 00 00 00 00
926             02 58 F40.0(7) "fobia" 00 00 00 00 i3 i2 i7 00 00 00 00
927             02 58 F40.0(8) "fobia" 00 00 00 00 i3 i2 i8 00 00 00 00
928             02 58 F40.0(9) "fobia" 00 00 00 00 i3 i2 i9 00 00 00 00
929             02 58 F40.0(10) "fobia" 00 00 00 00 i3 i2 i10 00 00 00 00
930         03 "Total" 58 "total_4" "Total" i1 i2 i11 00 00 00 00
931
932     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i8
933         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 
934         03 "Expected Count" 58 "expected_count" "Expected Count" i1 i2 i1 00 00 00 00 00
935             31 i0 i0 i26: (i20: (i0 31 "row % of ^1") 58 58) "% within ^1" i1 i0
936         05 58 "cond" 00 00 00 00 i3 i2 i2 00 00 00 00 00
937             31 i0 i0 i26: (i20: (i0 31 "col % of ^1") 58 58) "% within ^1" i1 i0
938         05 58 "fobia" 00 00 00 00 i3 i2 i3 00 00 00 00
939         03 "% of Total" 58 "_pct_of_total" "% of Total" i1 i2 i4 00 00 00 00
940         03 "Residual" 58 "residual_3" "Residual" i1 i2 i5 00 00 00 00
941         03 "Std. Residual" 58 "standardized_residuals" "Standardized Residual" i1 i2 i6 00 00 00 00
942         03 "Adjusted Residual" 58 "adjusted_standardized_residual" "Adjusted Residual" i1 i2 i7 00 00 00 00 
943
944
945 tdump25 ./germano/Crosstabs/00000000013_lightTableData.bin
946
947     i3
948
949     03 "Crosstabulation" 58 "crosstabulation" "Crosstabulation" 01 00 00 i2 01 00 i1 00 i1 00
950         31 i0 i0 i27: (i21: (i0 31 "[%1: * ^1:]1") 58 58) "[%1: * ^1:]1" i1 i2 i0
951             05 58 "cond" "" i3 00
952             05 58 "fobia" "" i3 i2 i0 i0
953
954     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i2
955         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
956         03 "Percent" 58 "percent_2" "Percent" i1 i2 i1 00 00 00 00
957
958     03 "Cases" 58 "cases" "Cases" 01 00 01 i2 00 00 01 i2 i3
959         03 "Valid" 58 "valid" "Valid" i1 i2 00 00 00 00 00 00 00 00
960         03 "Missing" 58 "missing_observations" "Missing" i1 i2 i1 00 00 00 00
961         03 "Total" 58 "total_4" "Total" i1 i2 i2 i0 i0
962
963
964 0427a44fc2a99165411ecd27896fe4fd/00000000013_lightTableData.bin:
965
966     i2
967
968     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i23 00
969         31 i0 i0 i22: (i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0
970             01 58 F40.0(1) 00 00 01 i2 i-1 i2
971                 05 58 "pre1.1" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
972                 05 58 "post1.1" 00 00 00 00 i2 i2 i1 00 00 00 00 00
973         31 i0 i0 i22: (i16: ("" 31 "Pair ^1" 58 58) "Pair ^1" i1 i0
974             01 58 F40.0(2) 00 00 01 i2 ff ff ff ff i2
975                 05 58 "pre1.2" 00 00 00 00 i2 i2 i2 00 00 00 00
976                 05 58 "post1.2" 00 00 00 00 i2 i2 i3 00 00 00 00 00
977         31 i0 i0 i22: i16: ("" 31 "Pair ^1") 58 58) "Pair ^1" i1 i0
978             01 58 F40.0(3) 00 00 01 i2 ff ff ff ff i2
979                 05 58 "pre1.3" 00 00 00 00 i2 i2 i4 00 00 00 00
980                 05 58 "post1.3" 00 00 00 00 i2 i2 i5 00 00 00 00 00
981         ...
982
983 web/1ae63a04381624dac939ac62eca63fec/00000000053_lightTableData.bin (descriptives)
984
985     i2
986
987     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i8
988         05 58 "GODINEPACIJENTA" "GODINE PACIJENTA" i2 i2 00 00 00 00 00 00 00 00
989         05 58 "HLOCORPUS" "HLO CORPUS" i2 i2 i1 00 00 00 00
990         05 58 "INFLCORPUS" "INFL CORPUS" i2 i2 i2 00 00 00 00
991         05 58 "AKT.CORPUS" "AKT. CORPUS" i2 i2 i3 00 00 00 00
992         05 58 "VgmCORPUS" "Vgm CORPUS" i2 i2 i4 00 00 00 00
993         05 58 "VgfCORPUS" "Vgf CORPUS" i2 i2 i5 00 00 00 00
994         05 58 i9 56 67 9e 43 4f 52 50 55 53 i10 56 67 9e 20 43 4f 52 50 55 53 i2 i2 i6 00 00 00 00
995         05 58 "VglpCORPUS" "Vglp CORPUS" i2 i2 i7 00 00 00 00
996
997     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i3
998         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
999         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i1 00 00 00 00
1000         03 "N" 58 "n" "N" i1 i2 i2 00 00 00 00 00 00 00 00
1001
1002 ./web/76e9b53e9f775fb690a88919ccdbb03c/000000007251_lightTableData.bin:
1003
1004     i6
1005
1006     05 58 "Gender_R" "" 02 00 02 i2 00 00 i1 00 i2
1007         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
1008         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
1009
1010     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 01 i1 i4
1011     03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1012     03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1013     03 "Sig." 58 "significance_level" "Significance" i1 i2 i2 00 00 00 00
1014     00 31 i0 i0 i38: (i32: (i0 31 "^1% Confidence Interval") 58 58) "^1% Confidence Interval" i1 00 00 00 00
1015         01 58 00 03 i5 00 00 00 c0 57 40 00 00 01                       i2 i-1 i2
1016             03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1017             03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00
1018
1019     00 31 i0 i0 i21: (i15: (i0 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00
1020         05 58 "sexorient_r" "" 02 00 00       i2 00 00 01 i2 i3
1021             02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00
1022             02 58 F40.0(1)"sexorient_r" "Bisexual" i2 i2 i1 00 00 00 00
1023             02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00 00
1024
1025     ...
1026
1027 web/76e9b53e9f775fb690a88919ccdbb03c/000000001361_lightTableData.bin (crosstabs):
1028
1029 i3
1030
1031 05 58 "marst" "Demographics - Marital Status" 02 00 00 i2 01 00 i1 00 i2
1032     05 58 "marst" "Demographics - Marital Status" 02 00 00 i1 00 ff ff ff ff i4
1033         04 58 00 03 01 00 "Single (never married)" "marst" 02 "A" 00 00 00 i2 00 00 00 00 00 00 00 00
1034         04 58 00 03 01 00 "Married, living with spouse" "marst" 02 "B" 00 00 00 i2 i1 00 00 00 00
1035         04 58 00 03 01 00 "Unmarried, living with partner" "marst" 02 "C" 00 00 00 i2 i2 00 00 00 00
1036         04 58 00 03 01 00 "Divorced" "marst" 02 "E" 00 00 00 i2 i3 00 00 00 00
1037     03 "Total" 58 "total_4" "Total" i1 i2 i4 00 00 00 00
1038
1039 05 58 "Gender_R" 00 00 00 00 02 00 00 i2 01 00 01 i1 i2
1040     05 58 "Gender_R" 00 00 00 00 02 00 00 i1 00 ff ff ff ff i2
1041         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
1042         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
1043     03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1044
1045 03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i2
1046     03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00 00
1047     31 00 00 00 00 00 00 00 00 i26 i20 00 00 00 00 31 "col % of ^1" 58 58 "% within ^1" i1 00 00 00 00
1048         05 58 "Gender_R" 00 00 00 00 i2 i2 i1 00 00 00 00 00 00 00 00 ...
1049
1050
1051 web/76e9b53e9f775fb690a88919ccdbb03c/00000000703_lightTableData.bin (oneway descriptives):
1052
1053     i4
1054
1055     05 58 "Gender_R" 00 00 00 00 02 00 00 i2 00 00 i1 00 i2
1056         02 58 F40.0(0) "Gender_R" "Male" i2 i2 00 00 00 00 00 00 00 00
1057         02 58 F40.0(1) "Gender_R" "Female" i2 i2 i1 00 00 00 00
1058
1059     03 "Groups" 58 "groups" "Groups" 01 00 00 i2 01 00 01 i1 i2
1060         05 58 "sexorient_r" "" 02      01 00       i1 00 i-1 i3
1061             02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 i0 i0
1062             02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i1 i0
1063             02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i2 00 00 00 00
1064         03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1065
1066     ....
1067
1068 web/76e9b53e9f775fb690a88919ccdbb03c/00000000725212_lightTableData.bin (Gender_R homogeneous subsets):
1069
1070     good example for title and footnotes (?)
1071
1072     i3
1073
1074         03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i2
1075             03 "N" 58 "n" "N" i1 i2 i0 i0 00
1076             31 i0 i0 i36: (i30: ("" 31 "Subset for alpha = ^1") 58 58) "Subset for alpha = ^1" i1 i0
1077                 03 "0.05" 58 "" "0.05" 00 00 00 01 i2 i-1 i1
1078                     01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00
1079
1080         05 58 "sexorient_r" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2
1081             03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 i-1 i3
1082                 02 58 F40.0(0) "sexorient_r" "Straight" i2 i2 00 00 00 00 00 00 00 00
1083                 02 58 F40.0(2) "sexorient_r" "Gay/Lesbian/Homosexual" i2 i2 i1 00 00 00 00
1084                 02 58 F40.0(1) "sexorient_r" "Bisexual" i2 i2 i2 i0
1085             03 "Sig." 58 "significance_level" "Significance" i1 i2 i3 00 00 00 00
1086
1087         03 "Test" 58 "test" "Test" 01 00 01 i2 01 00 01 i2 i2
1088             03 "Tukey HSD" 31 i2 00 00 i1 00 00 i11: (i5: ("" 58) 58 58) "tukeys_honestly_significant_difference" "Tukey HSD" i1 i2 00 00 00 00 00 00 00 00
1089             03 "Tukey B" 31 i2 00 00 i1 00 00 i11: (i5: ("" 58) 58 58) "tukeys_b_test" "Tukey B" i1 i2 i1 00 00 00 00 00 00 00 00 i2 i1 i1 i2 ...
1090
1091 web/6c3246ad09f0f6434a33b91c731636a3/00000000062_lightTableData.bin (descriptives):
1092
1093     i2
1094
1095     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i5
1096         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
1097         03 "Minimum" 58 "minimum" "Minimum" i1 i2 i1 00 00 00 00
1098         03 "Maximum" 58 "maximum" "Maximum" i1 i2 i2 00 00 00 00
1099         03 "Mean" 58 "mean" "Mean" i1 i2 i3 00 00 00 00
1100         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i4 00 00 00 00
1101
1102     03 "Variables" 58 "variable_s_1" "Variables" 01 00 01 i2 01 00 01 i1 i16
1103         05 58 "TAAS_neg_T1" "TAAS negative affect Time 1" i2 i2 00 00 00 00 00 00 00 00
1104         05 58 "TAAS_pos_T1" "TAAS positive affect Time 1" i2 i2 i1 00 00 00 00
1105         05 58 "TAAS_overall_T1" "TAAS overall Time 1" i2 i2 i2 00 00 00 00
1106         05 58 "DTS_scale" "DTS McHugh and Otto" i2 i2 i3 00 00 00 00
1107         05 58 "DASS_Stress" 00 00 00 00 i2 i2 i4 00 00 00 00
1108         05 58 "DASS_Anxiety" 00 00 00 00 i2 i2 i5 00 00 00 00
1109         05 58 "DASS_Depression" 00 00 00 00 i2 i2 i6 00 00 00 00
1110         05 58 "DERS_Nonacceptance" 00 00 00 00 i2 i2 i7 00 00 00 00
1111         05 58 "DERS_Goals" 00 00 00 00 i2 i2 i8 00 00 00 00
1112         05 58 "DERS_Impulse" 00 00 00 00 i2 i2 i9 00 00 00 00
1113         05 58 "DERS_Awareness" 00 00 00 00 i2 i2 i10 00 00 00 00
1114         05 58 "DERS_Strategies" 00 00 00 00 i2 i2 i11 00 00 00 00
1115         05 58 "DERS_Clarity" 00 00 00 00 i2 i2 i12 00 00 00 00
1116         05 58 "TOMS_Eating" 00 00 00 00 i2 i2 i13 00 00 00 00
1117         05 58 "TOMS_General" 00 00 00 00 i2 i2 i14 00 00 00 00
1118         03 "" 58 "" "" i0                   i2 i15 i0 i0 
1119
1120 web/17936f440753fa5f6771e084c26a1724/00000000033_lightTableData.bin (Paired Samples Statistics):
1121
1122     i2
1123
1124     03 "Variables" 58 "variable_s_1" "Variables" 01 00 00 i2 01 00 i1 00 i2 00
1125         58 "Pair ^1" i1 00 00 00 00
1126             01 58 F40.0(1) 00 00 01 i2 i-1 i2
1127         05 58 "related" "related" i2 i2 00 00 00 00 00 00 00 00
1128         05 58 "unrelated" "unrelated" i2 i2 i1 00 00 00 00 00 58 "Pair ^1" i1 00 00 00 00
1129     01 58 F40.0(2) 00 00 01 i2 i-1 i2
1130         05 58 "nwrelated" "related" i2 i2 i2 00 00 00 00
1131         05 58 "nwunrelated" "unrelated" i2 i2 i3 00 00 00 00
1132
1133     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
1134         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
1135         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00
1136         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00
1137         03 "Std. Error Mean" 58 "gfreq13" "Std. Error Mean" i1 i2 i3 00 00 00 00
1138
1139 web/fa39cdfb372fe296d34fa4c191ceed0f/00000000299_lightTableData.bin ("ATTITUDES"):
1140
1141     This has a title with crazy substitutions.
1142
1143     i3
1144
1145     03 "Variables" 58 "variable_s_1" "Variables" 01 00 02 i2 01 00 i1 00 i1
1146         05 58 "ATTITUDES" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1147
1148     05 58 "Q7" "Do you have a family member with a DD?" 02 00 00 i2 00 00 01 i1 i2
1149         03 "Dummy" 58 "" "Dummy" 01 01 00 i1 00 ff ff ff ff i2
1150             02 58 F40.2(0.00) "Q7" "No" i2 i2 00 00 00 00 00 00 00 00
1151             02 58 F40.2(1.00) "Q7" "Yes" i2 i2 i1 00 00 00 00
1152         03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1153
1154     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i3
1155         03 "Mean" 58 "mean" "Mean" i1 i2 00 00 00 00 00 00 00 00
1156         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00
1157         03 "Std. Deviation" 58 "gbar11" "Std. Deviation" i1 i2 i2 00 00 00 00
1158
1159 web/a57e5529f1f2d4b25f5b9ad78f91864e/000000000310122_lightTableData.bin (homogeneous subsets):
1160
1161     i3
1162
1163     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i2
1164         03 "N" 58 "n" "N" i1 i2 00 00 00 00 00 00 00 00
1165         03 "Subset" 58 "homogeneous_subsets" "Subset" 01 00 00 01 i2 ff ff ff ff i3
1166             01 58 F40.0(1) 00 00 00 i2 i1 00 00 00 00
1167             01 58 F40.0(2) 00 00 00 i2 i2 00 00 00 00
1168             01 58 F40.0(3) 00 00 00 i2 i3 00 00 00 00
1169
1170     05 58 "Lakes" 00 00 00 00 02 00 00 i2 00 00 01 i1 i2
1171         03 "Group" 58 00 00 00 00 "Group" 00 01 00 01 i2 ff ff ff ff i3
1172             04 58 00 10 i1 00 00 "Lakes" 02 "Lake Michigan" 00 00 00 i2 00 00 00 00 00 00 00 00
1173             04 58 00 10 i1 00 00 "Lakes" 02 "Greene's Lake" 00 00 00 i2 i1 00 00 00 00
1174             04 58 00 10 i1 00 00 "Lakes" 02 "Lake Genesereth" 00 00 00 i2 i2 00 00 00 00
1175         03 "Sig." 58 "significance_level" "Sig." i1 i2 i3 00 00 00 00
1176
1177     03 "Test" 58 "multivariate_tests" "Test" 01 00 01 i2 01 00 01 i2 i1
1178         03 "Tukey HSD" 31 i3 00 00 01 00 i2: (00 00) i6: (00 00 00 00 58 58) "tukeys_honestly_significant_difference" "Tukey HSD" i1 i2 i0
1179
1180 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000038_lightTableData.bin (Tests of Within-Subjects Contrasts):
1181
1182     ...
1183
1184     "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i4 00
1185         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1186             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1187         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1188             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1189             05 58 "Lakes" "" i1 i2 i1 00 00 00 00 00
1190         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1191             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1192             05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00
1193         58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1194             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 i3 00 00 00 00
1195
1196     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i5
1197         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1198         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1199         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1200         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1201         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00
1202
1203 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000031021_lightTableData.bin (POSTHOC Multiple Comparisons):
1204
1205     i5
1206
1207     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 02 i2 01 00 i1 00 i4
1208         03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1209         03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1210         03 "Sig." 58 "significance_level" "Sig." i1 i2 i2 00 00 00 00 00
1211         58 "^1% Confidence Interval" i1 00 00 00 00 01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2
1212             03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1213             03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00
1214
1215     58 "(J) ^1" i1 i0 05 58 "Treatments" 00 00 00 00 02 00 00 i2 00 00 01 i1 i4
1216         04 58 00 03 i1 00 00 "Treatments" 02 "C" 00 00 00 i2 00 00 00 00 00 00 00 00
1217         04 58 00 03 i1 00 00 "Treatments" 02 "N" 00 00 00 i2 i1 00 00 00 00
1218         04 58 00 03 i1 00 00 "Treatments" 02 "NP" 00 00 00 i2 i2 00 00 00 00
1219         04 58 00 03 i1 00 00 "Treatments" 02 "P" 00 00 00 i2 i3 00 00 00 00 00
1220
1221     ...
1222
1223 web/a57e5529f1f2d4b25f5b9ad78f91864e/00000000034_lightTableData.bin (Between-Subjects Factors):
1224
1225     i2
1226
1227     03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i2
1228         05 58 "Lakes" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i3
1229             04 58 A16.0 "" "Lakes" 01 "Greene's Lake" 00 00 00 i2 00 00 00 00 00 00 00 00
1230             04 58 00 10 i1 00 00 "Lakes" 01 "Lake Genesereth" 00 00 00 i2 i1 00 00 00 00
1231             04 58 00 10 i1 00 00 "Lakes" 01 "Lake Michigan" 00 00 00 i2 i2 00 00 00 00
1232         05 58 "Treatments" 00 00 00 00 02 00 00 01 i2 ff ff ff ff i4
1233             04 58 00 03 i1 00 00 "Treatments" 01 "C" 00 00 00 i2 i3 00 00 00 00
1234             04 58 00 03 i1 00 00 "Treatments" 01 "N" 00 00 00 i2 i4 00 00 00 00
1235             04 58 00 03 i1 00 00 "Treatments" 01 "NP" 00 00 00 i2 i5 00 00 00 00
1236             04 58 00 03 i1 00 00 "Treatments" 01 "P" 00 00 00 i2 i6 00 00 00 00
1237
1238     03 "Properties" 58 "properties_dimension" "Properties" 01 00 01 i2 01 00 01 i1 i2
1239         03 "Value Label" 58 "value_labels_2" "Value Label" i1 i2 00 00 00 00 00 00 00 00
1240         03 "N" 58 "n" "N" i1 i2 i1 00 00 00 00 00 00 00 00
1241
1242
1243
1244 web/7a17f5600db5be64b985ac37b1346aa8/00000000072_lightTableData.bin (Between-Subjects Factors):
1245
1246     i2
1247
1248     03 "Factor Levels" 58 "factor_levels" "Factor Levels" 01 00 00 i2 01 00 i1 00 i1
1249         05 58 "HouseholdIncome" "HouseholdIncome" 02 00 00 01 i2 ff ff ff ff i4
1250             02 58 F40.2(1.00) "HouseholdIncome" "< 45,000" i1 i2 00 00 00 00 00 00 00 00
1251             02 58 F40.2(2.00) "HouseholdIncome" "45,001 - 80,000" i1 i2 i1 00 00 00 00
1252             02 58 F40.2(3.00) "HouseholdIncome" "80,001 - 120,000" i1 i2 i2 00 00 00 00
1253             02 58 F40.2(4.00) "HouseholdIncome" "120,001+" i1 i2 i3 00 00 00 00
1254
1255     ...
1256
1257 web/6f1f8df78363208fec048190af27097e/00000000053_lightTableData.bin ([%1: * ^1:]1 Crosstabulation):
1258
1259     i4
1260
1261     05 58 "agerange" "agerange" 02 75 02 i2 00 00 i1 00 i3
1262         02 58 F40.2(1.00) "agerange" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1263         02 58 F40.2(2.00) "agerange" 00 00 00 00 i2 i2 i1 00 00 00 00
1264         02 58 F40.2(3.00) "agerange" 00 00 00 00 i2 i2 i2 00 00 00 00
1265
1266     05 58 "sex" "RESPONDENTS SEX" 02 00 00 i2 01 00 01 i1 i2
1267         05 58 "sex" "RESPONDENTS SEX" 02 00 00 i1 00 ff ff ff ff i2
1268             02 58 F40.0(1) "sex" "male" i2 i2 00 00 00 00 00 00 00 00
1269             02 58 F40.0(2) "sex" "female" i2 i2 i1 00 00 00 00
1270         03 "Total" 58 "total_4" "Total" i1 i2 i2 00 00 00 00
1271
1272     05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i2 01 00 01 i2 i2
1273         05 58 "pres92" "VOTE FOR CLINTON, BUSH, PEROT" 02 00 00 i1 00 ff ff ff ff i3
1274             02 58 F40.0(1) "pres92" "Bush" i2 i2 00 00 00 00 00 00 00 00
1275             02 58 F40.0(2) "pres92" "Perot" i2 i2 i1 00 00 00 00
1276             02 58 F40.0(3) "pres92" "Clinton" i2 i2 i2 00 00 00 00
1277         03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1278
1279     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i1
1280         03 "Count" 58 "count_6" "Count" i1 i2 00 00 00 00 00 00 00 00
1281
1282 web/75e80a604626e6bdbb6a107901dc9b36/000000000344_lightTableData.bin (Frequencies):
1283
1284     i2
1285
1286     05 58 "Sex" 00 00 00 00 03 00 00 i2 01 00 i1 00 i1
1287         03 "Valid" 58 "valid" "Valid" 01 00 00 01 i2 ff ff ff ff i2
1288             01 58 F40.0(0) 01 00 01 i2 ff ff ff ff i1
1289                 01 58 F40.0(-1) 01 00 i1 00 ff ff ff ff i3
1290                     04 58 00 06 01 00 "Male" "Sex" 03 "1" 00 00 00 i2 00 00 00 00 00 00 00 00
1291                     04 58 00 06 01 00 "Female" "Sex" 03 "2" 00 00 00 i2 i1 00 00 00 00
1292                     04 58 00 06 01 00 "Other" "Sex" 03 "3" 00 00 00 i2 i2 00 00 00 00
1293             03 "Total" 58 "total_4" "Total" i1 i2 i3 00 00 00 00
1294
1295     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i1 i4
1296         03 "Frequency" 58 "frequency" "Frequency" i1 i2 00 00 00 00 00 00 00 00
1297         03 "Percent" 58 "percent" "Percent" i1 i2 i1 00 00 00 00
1298         03 "Valid Percent" 58 "valid_percent" "Valid Percent" i1 i2 i2 00 00 00 00
1299         03 "Cumulative Percent" 58 "cumulative_percent" "Cumulative Percent" i1 i2 i3 00 00 00 00 00 00 00 00
1300
1301 web/9c0f5ba2cd60a97194a82cdc67efc3cb/000000000176_lightTableData.bin (Functions at Group Centroids):
1302
1303     i2
1304
1305     05 58 "group" "" 02         00 00 00 00 00 00 00 00 i1 00 i2
1306         02 58 F40.0(1) "group" 00 00 00 00 i2 i2 00 00 00 00 00 00 00 00
1307         02 58 F40.0(2) "group" 00 00 00 00 i2 i2 i1 00 00 00 00
1308
1309     03 "Function" 58 "function_6" "Function" 01 00 01 i2 00 00 01 i1 i1
1310         01 58 F40.0(1)
1311
1312 web/b257771a29873ce68ce0c0a4e7582f76/000000000432_lightTableData.bin (Pearson Chi-Square Tests):
1313
1314     i2
1315
1316     03 "Row" 58 00 00 00 00 "Row" 01 00 00 i2 01 00 i1 00 i1
1317         05 58 "Judge_Indiziert" "Overall Judgement indicated" 02 00 00 01 i2 ff ff ff ff i1
1318             02 58 F40.2(1.00) "Judge_Indiziert" "indicated" 02 00 00 01 i2 ff ff ff ff i1
1319                 05 58 "CAS" "Navigation" 02 00 00 01 i2 ff ff ff ff i3
1320                     03 "Chi-square" 58 00 00 00 00 "Chi-square" i1 i2 00 00 00 00 00 00 00 00
1321                     03 "df" 58 00 00 00 00 "df" i1 i2 i1 00 00 00 00
1322                     03 "Sig." 58 00 00 00 00 "Sig." i1 i2 i2 00 00 00 00
1323
1324     03 "Column" 58 00 00 00 00 "Column" 01 00 01 i2 01 00 01 i1 i1
1325         05 58 "Judge_Gemacht" "Overall Judgement done" i2 i2 00 00 00 00 00 00 00 00 00 00 00 00
1326
1327 web/f1b07f87ef9cd720e78efebe4f2551fa/0000000007912_lightTableData.bin (Pairwise Comparisons):
1328
1329     i4
1330
1331     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 00 i2 01 00 i1 00 i4
1332     03 "Mean Difference (I-J)" 58 "mean_difference_i-j" "Mean Difference (I-J)" i1 i2 00 00 00 00 00 00 00 00
1333     03 "Std. Error" 58 "standard_error" "Std. Error" i1 i2 i1 00 00 00 00
1334     03 "Sig." 31 i1 i1 00 00 i11: (i5: ("" 58) 58 58) "significance_level" "Significance" i1 i2 i2 00 00 00 00 00
1335     31 i1 i1 00 00 i53: (i47: ("" 31 "^1% Confidence Interval for Difference") 58 58) "^1% Confidence Interval for Difference" i1 00 00 00 00
1336     01 58 00 03 i5 00 00 00 c0 57 40 00 00 01 i2 ff ff ff ff i2
1337     03 "Lower Bound" 58 "lower_bound" "Lower Bound" i1 i2 i3 00 00 00 00
1338     03 "Upper Bound" 58 "upper_bound" "Upper Bound" i1 i2 i4 00 00 00 00 00
1339
1340     31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(J) ^1") 58 58) "(J) ^1" i1 00 00 00 00
1341     05 58 "Group" "Group" 02 00 00 i2 00 00 01 i1 i2
1342         02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00
1343         02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00 00
1344     31 00 00 00 00 00 00 00 00 i21: (i15: ("" 31 "(I) ^1") 58 58 ) "(I) ^1" i1 00 00 00 00
1345     05 58 "Group" "Group" 02 00 00 i2 00 00 01 i2 i2
1346         02 58 F40.0(1) "Group" "Experimental Group" i3 i2 00 00 00 00 00 00 00 00
1347         02 58 F40.0(2) "Group" "Control Group" i3 i2 i1 00 00 00 00
1348
1349     03 "Dependent Variable" 58 "dependent_variable_2" "Dependent Variable" 01 00 01 i2 00 00 01 i3 i12
1350     05 58 "PSYCAP_POST2" 00 00 00 00 i3 i2 00 00 00 00 00 00 00 00
1351     05 58 "SE_POST2" 00 00 00 00 i3 i2 i1 00 00 00 00
1352     05 58 "HOPE_POST2" 00 00 00 00 i3 i2 i2 00 00 00 00
1353     05 58 "RES_POST2" 00 00 00 00 i3 i2 i3 00 00 00 00
1354     05 58 "OPT_POST2" 00 00 00 00 i3 i2 i4 00 00 00 00
1355     05 58 "PWB_POST2" 00 00 00 00 i3 i2 i5 00 00 00 00
1356     05 58 "AUTO_POST2" 00 00 00 00 i3 i2 i6 00 00 00 00
1357     05 58 "EM_POST2" 00 00 00 00 i3 i2 i7 00 00 00 00
1358     05 58 "PG_POST2" 00 00 00 00 i3 i2 i8 00 00 00 00
1359     05 58 "PR_POST2" 00 00 00 00 i3 i2 i9 00 00 00 00
1360     05 58 "PL_POST2" 00 00 00 00 i3 i2 i10 00 00 00 00
1361     05 58 "SA_POST2" 00 00 00 00 i3 i2 i11 00 00 00 00
1362
1363
1364 web/67e54cc8a549f4a66331c0401ff4a775/00000000079_lightTableData.bin (Tests of Within-Subjects Contrasts):
1365
1366 This one is just puzzling.
1367
1368     i4
1369
1370     03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 02 i2 00 00 i1 00 i1
1371         03 "Linear" 58 "linear" "Linear" i1 i2 00 00 00 00 00 00 00 00
1372
1373     03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i1 00
1374         58 "MEASURE_^1" i1 00 00 00 00
1375             01 58 F40.0(1) 00 00 00 i2 00 00 00 00 00 00 00 00
1376
1377     03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i5 00
1378         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1379             03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1380         58 "[%1: * ^1:]1 *[: ^1:]2" i2
1381             i1 00 00 00 00
1382                 03 "Word_Type" 58 "" "Word_Type" 00
1383             i1 00 00 00 00
1384                 05 58 "Word_Color" "" i1 i2 i1 00 00 00 00 00
1385         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 i0
1386             03 "Word_Type" 58 "" "Word_Type" 00 i1 i0
1387             05 58 "Order" "" i1                        i2 i2 i0 00
1388         58 "[%1: * ^1:]1 *[: ^1:]2" i2
1389             i1 i0
1390                 03 "Word_Type" 58 "" "Word_Type" 00
1391             i3 i0
1392                 05 58 "Word_Color" "" i1 00
1393                 03 " * " 58 "" " * " i0 00
1394                 05 58 "Order" ""      i1                   i2 i3 i0
1395         00 58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1396             03 "Word_Type" 58 00 00 00 00 "Word_Type" 00 00 00 00 i2 i4 00 00 00 00
1397
1398     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6
1399         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1400         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1401         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1402         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1403         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00
1404         03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 i0
1405
1406 web/c4757deb6f4f21d5f51745073835937d/000000000171_lightTableData.bin (Averaged Multivariate Tests):
1407
1408     i3
1409
1410     ...
1411
1412     03 "Within Subjects Effect" 58 "within-subjects_3" "Within Subjects Effect" 01 00 00 i2 00 00 01 i1 i4 00
1413         58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1414             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1415         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1416             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1417             05 58 "Lakes" 00 00 00 00 i1 i2 i1 00 00 00 00 00
1418         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1419             03 "Time" 58 00 00 00 00 "Time" 00 i1 00 00 00 00
1420             05 58 "Treatments" 00 00 00 00 i1 i2 i2 00 00 00 00 00
1421         58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1422             03 "Time" 58 00 00 00 00 "Time" 00 i3 00 00 00 00
1423             05 58 "Lakes" "" 01 i0 
1424             03 " * " 58 00 00 00 00 " * " 00 00 00 00 00
1425         05 58 "Treatments" 00 00 00 00 i1 i2 i3 00 00 00 00
1426
1427     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5
1428         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
1429         03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00
1430         03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00
1431         03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00
1432         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00 00 00 00 00
1433
1434 web/c50e357352131aa1a8925003483b31ad/000000000161_lightTableData.bin (Custom Univariate Tests):
1435
1436 i4
1437
1438 03 "Epsilon Corrections" 58 "epsilon_general_loglinear" "Epsilon Corrections" 01 00 00 i2 01 00 i1 00 i4
1439     03 "Sphericity Assumed" 58 "sphericity_assumed" "Sphericity Assumed" i1 i2 00 00 00 00 00 00 00 00
1440     03 "Greenhouse-Geisser" 58 "greenhouse-geisser_epsilon" "Greenhouse-Geisser" i1 i2 i1 00 00 00 00
1441     03 "Huynh-Feldt" 58 "huynh-feldt_epsilon" "Huynh-Feldt" i1 i2 i2 00 00 00 00
1442     03 "Lower-bound" 58 "lowerbound_epsilon" "Lower-bound" i1 i2 i3 00 00 00 00
1443
1444 03 "Measure" 58 "measure_3" "Measure" 01 00 00 i2 00 00 01 i1 i4
1445     03 "ALT" 58 00 00 00 00 "ALT" 00 00 00 00 i2 00 00 00 00 00 00 00 00
1446     03 "VLT" 58 00 00 00 00 "VLT" 00 00 00 00 i2 i1 00 00 00 00
1447     03 "PSS" 58 00 00 00 00 "PSS" 00 00 00 00 i2 i2 00 00 00 00
1448     03 "FWHM" 58 00 00 00 00 "FWHM" 00 00 00 00 i2 i3 00 00 00 00
1449
1450 03 "Source" 58 "source_of_variation" "Source" 01 00 00 i2 00 00 01 i2 i21 00
1451     58 "[%1: * ^1:]1" i1
1452         i1 00 00 00 00
1453             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1454     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1455         i1 00 00 00 00
1456             03 "Language" 58 00 00 00 00 "Language" 00
1457         i1 00 00 00 00
1458             05 58 "Gender" "Gender" i1 i2 i1 00 00 00 00 00
1459     58 "Error([%1:*^1:]1)" i1
1460         i1 00 00 00 00
1461             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 i2 i2 00 00 00 00 00
1462     58 "[%1: * ^1:]1" i1
1463         i1 00 00 00 00
1464             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i3 00 00 00 00 00
1465     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1466         i1 00 00 00 00
1467             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00
1468         i1 00 00 00 00
1469             05 58 "Gender" "Gender" i1 i2 i4 00 00 00 00 00
1470     58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1471         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i5 00 00 00 00 00
1472     58 "[%1: * ^1:]1" i1 i1 00 00 00 00
1473         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i6 00 00 00 00 00
1474     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i1 00 00 00 00
1475         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1476         05 58 "Gender" "Gender" i1 i2 i7 00 00 00 00 00
1477     58 "Error([%1:*^1:]1)" i1 i1 00 00 00 00
1478         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i8 00 00 00 00 00
1479     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1480         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1481         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i9 00 00 00 00 00
1482     58 "[%1: * ^1:]1 *[: ^1:]2" i2
1483         i2 00 00 00 00
1484             03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1485             03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00
1486         i1 00 00 00 00
1487             05 58 "Gender" "Gender" i1 i2 i10 00 00 00 00 00
1488     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00
1489         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1490         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 i2 i11 00 00 00 00 00
1491     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1492         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1493         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i12 00 00 00 00 00
1494     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00
1495         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1496         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1497         05 58 "Gender" "Gender" i1 i2 i13 00 00 00 00 00
1498     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00
1499         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1500         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i14 00 00 00 00 00
1501     58 "[%1: * ^1:]1" i1 i2 00 00 00 00
1502         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1503         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i15 00 00 00 00 00
1504     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i2 00 00 00 00
1505         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1506         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1507         05 58 "Gender" "Gender" i1 i2 i16 00 00 00 00 00
1508     58 "Error([%1:*^1:]1)" i1 i2 00 00 00 00 03 "Size_AOI"
1509         58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1510         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i17 00 00 00 00 00
1511     58 "[%1: * ^1:]1" i1 i3 00 00 00 00
1512         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1513         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1514         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i18 00 00 00 00 00
1515     58 "[%1: * ^1:]1 *[: ^1:]2" i2 i3 00 00 00 00
1516         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1517         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1518         03 "Area" 58 00 00 00 00 "Area" 00 i1 00 00 00 00
1519         05 58 "Gender" "Gender" i1 i2 i19 00 00 00 00 00
1520     58 "Error([%1:*^1:]1)" i1 i3 00 00 00 00
1521         03 "Language" 58 00 00 00 00 "Language" 00 00 00 00 00
1522         03 "Size_AOI" 58 00 00 00 00 "Size_AOI" 00 00 00 00 00
1523         03 "Area" 58 00 00 00 00 "Area" 00 00 00 00 i2 i20 00 00 00 00
1524
1525     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i3 i6
1526         03 "Type III Sum of Squares" 58 "type_iii_sum_of_squares" "Type III Sum of Squares" i1 i2 00 00 00 00 00 00 00 00
1527         03 "df" 58 "df" "df" i1 i2 i1 00 00 00 00
1528         03 "Mean Square" 58 "mean_square" "Mean Square" i1 i2 i2 00 00 00 00
1529         03 "F" 58 "f_value" "F" i1 i2 i3 00 00 00 00
1530         03 "Sig." 58 "significance_level" "Sig." i1 i2 i4 00 00 00 00
1531         03 "Partial Eta Squared" 58 "estimates_of_effect_size" "Partial Eta Squared" i1 i2 i5 00 00 00 00 00 00 00 00
1532
1533
1534 web/bf0de88830dd9a93323cfb8d7501f342/00000000075_lightTableData.bin (Default Multivariate Tests):
1535
1536     i3
1537
1538     03 "Test" 58 "multivariate_tests" "Test" 01 00 00 i2 01 00 i1 00 i4
1539         03 "Pillai's Trace" 58 "pillais_trace" "Pillai's Trace" i1 i2 00 00 00 00 00 00 00 00
1540         03 "Wilks' Lambda" 58 "wilks_lambda" "Wilks' Lambda" i1 i2 i1 00 00 00 00
1541         03 "Hotelling's Trace" 58 "hotellings_trace" "Hotelling's Trace" i1 i2 i2 00 00 00 00
1542         03 "Roy's Largest Root" 58 "roys_largest_root" "Roy's Largest Root" i1 i2 i3 00 00 00 00
1543
1544     03 "Effect" 58 "effect" "Effect" 01 00 00 i2 00 00 01 i1 i2 00
1545         31 i0 i0 i25: (i19: ("" 31 "[%1:*^1:]1") 58 58) "[%1: * ^1:]1" i1 i1 00 00 00 00
1546             03 "Time" 58 00 00 00 00 "Time" 00 00 00 00 i2 00 00 00 00 00 00 00 00 00
1547         31 00 00 00 00 00 00 00 00 i33: (i27: ("" 31 "[%1:*^1:]1*[:^1:]2") 58 58) "[%1: * ^1:]1 *[: ^1:]2" i2
1548             i1 00 00 00 00
1549                 03 "Time" 58 00 00 00 00 "Time" 00
1550             i3 00 00 00 00
1551                 05 58 "Condition" 00 00 00 00 i1 00
1552                 03 " * " 58 00 00 00 00 " * " 00 00 00 00 00
1553                 05 58 "Extraversio" 00 00 00 00 i1 i2 i1 00 00 00 00
1554
1555     03 "Statistics" 58 "statistics_10" "Statistics" 01 00 01 i2 01 00 01 i2 i5
1556         03 "Value" 58 "value_18" "Value" i1 i2 00 00 00 00 00 00 00 00
1557         03 "F" 58 "f_value" "F" i1 i2 i1 00 00 00 00
1558         03 "Hypothesis df" 58 "df" "Hypothesis df" i1 i2 i2 00 00 00 00
1559         03 "Error df" 58 "error_df" "Error df" i1 i2 i3 00 00 00 00
1560         03 "Sig." 58 "significance_level" "Significance" i1 i2 i4 00 00 00 00 00 00 00 00
1561
1562
1563 Data
1564 ----
1565
1566 williams/00000000053_lightTableData.bin:
1567
1568     i0 i1 i1 i0 i1 i4
1569
1570     i0 i0 01 31 i1 i0 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.760)
1571     i1 i0 01 58 F40.3(0.578)
1572     i2 i0 01 58 F40.3(0.573)
1573     i3 i0 01 58 F40.3(0.666)
1574
1575 germano/Crosstabs/00000000014_lightTableData.bin:
1576
1577     i432
1578
1579     i0 i0 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5                                       " 00
1580     i96 i0 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) i0 "<5                                       " 00
1581     i192 i0 03 "<5                                       " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 i0 "<5                                       " 00
1582     20 i1 00 00 00 03 "<5                                       " 31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5                                       " 00
1583     80 i1 00 00 00 01 58 F40.0(12)
1584     i8 00 00 00 00 01 31 i0 i1 "a" i11: (i5: (i0 58) 58 58) F40.0(5)
1585     i104 00 00 00 00 03 "<5                                       " 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 
1586 "<5                                       " 00 i200 00 00 00 00 03 
1587 "<5                                       " i49 00 i1 
1588 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1589 "<5                                       " 00 28 i1 00 00 00 03 
1590 "<5                                       " i49 00 i1 
1591 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1592 "<5                                       " 00 88 i1 00 00 00 01 58 F40.0(15)
1593 i16 00 00 00 00 03 
1594 "<5                                       " i49 00 i1 
1595 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1596 "<5                                       " 00 i112 00 00 00 00 03 
1597 "<5                                       " i49 00 i1 
1598 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1599 "<5                                       " 00 i208 00 00 00 00 03 
1600 "<5                                       " i49 00 i1 
1601 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1602 "<5                                       " 00 30 i1 00 00 00 03 
1603 "<5                                       " i49 00 i1 
1604 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1605 "<5                                       " 00 90 i1 00 00 00 01 58 F40.0(12)
1606 i24 00 00 00 00 01 i49 00 i1 
1607
1608 web/c6b0660f7afccdb067f766a44ded21ab/00000000038_lightTableData.bin (Rotated Factor Matrix):
1609
1610     i315 i0 03 " " 58 "" "" 00
1611     i1 i0 03 " " 58 "" "" 00
1612     i6 i0 03 
1613     " " 58 00 00 00 00 
1614     " " 00 i11 00 00 00 00 03 
1615     " " 58 00 00 00 00 
1616
1617 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report):
1618
1619     i226 00 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1620     i241 00 00 00 00 02 58 F40.0(342345) "V4" 00 00 00 00 02
1621     00 i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1622     0f i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1623     1e i1 00 00 00 02 58 F40.0(522773) "V4" 00 00 00 00 02
1624     2d i1 00 00 00 02 58 F40.0(sysmis) "V4" 00 00 00 00 02
1625
1626 web/f748b5e575e0a0c2e55698c3b18d272e/00000000134_lightTableData.bin (Report):
1627
1628     i497 i0 04 58 00 19 i1 00 00 "V5" 02 "% of total particles"
1629     i512 04 58 00 19 i1 00 00 "V5" 02 "322."
1630     0f i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total mass"
1631     1e i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "% of total particles"
1632     2d i2 00 00 00 04 58 00 19 i1 00 00 "V5" 02 "581."
1633
1634 germano/Crosstabs/00000000014_lightTableData.bin (Crosstabulation):
1635
1636     i0 i2 i1 i2 i0
1637
1638     i1
1639
1640     i432 i0 i0 03 "<5                                       "
1641         31 i0 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1642         "<5                                       " 00
1643     i96 00 00 00 00 03 "<5                                       "
1644         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1645         "<5                                       " 00
1646     i192 00 00 00 00 03 "<5                                       "
1647         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1648         "<5                                       " 00
1649     20 i1 00 00 00 03 "<5                                       "
1650         i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1651         "<5                                       " 00
1652     80 i1 00 00 00 01 58 F40.0(12)
1653     i8 00 00 00 00 01 i49 00 i1 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1654
1655 web/1fe57275203d4c8b7eca5bd796738e71/00000000014_lightTableData.bin (Correlation Matrix):
1656
1657     i1 i2 00 00 00 00 00 00 00 00 00 00 00 00 i2 i1 00 00 00 00 i2 i1 10 01 00 00 i17 00 00 00 00 01 58 F40.3(0.043)
1658     i34 00 00 00 00 01 58 F40.3(0.318)
1659     i51 00 00 00 00 01 58 F40.3(0.486)
1660     i68 00 00 00 00 01 58 F40.3(0.226)
1661     i85 00 00 00 00 01 58 F40.3(0.183)
1662     i102 00 00 00 00 01 58 F40.3(0.278)
1663     i119 00 00 00 00 01 58 F40.3(0.275)
1664     i136 00 00 00 00 01 58 F40.3(0.019)
1665
1666 web/f748b5e575e0a0c2e55698c3b18d272e/00000000075_lightTableData.bin (Case Processing Summary):
1667
1668     i5
1669     i0 i0 01 58 F40.0(46)
1670     i1 i0 01 58 F40.0(0)
1671     i2 i0 01 31 i2 00 00 i1 00 00 i6 00 00 00 00 58 58 F40.0(62)
1672     i3 i0 01 58 F40.0(15)
1673     i4 i0 01 58 F40.0(15)
1674
1675 web/76e9b53e9f775fb690a88919ccdbb03c/00000000743_lightWarningData.bin (Warnings):
1676
1677     i0 i0 31 i0 i0 i72: (i66: ("" 31 "Fewer than two groups for depvar ^1 in split [:^1=^2,:]2.") 58 58) "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2
1678         i0
1679             05 58 "soi_tot" 00 00 00 00 02
1680         i2 i0
1681             05 58 "erotica_virgin" 00 00 00 00 i2 00
1682             02 58 F40.1(1.0)
1683
1684     "erotica_virgin" 
1685     "EROTICA VIRGIN" 02 
1686
1687 web/c6b0660f7afccdb067f766a44ded21ab/00000000031_lightNotesData.bin (Notes):
1688
1689     i13 i0 01 58 DTIME13.2(0.156)
1690     i14 i0 01 58 DTIME13.2(0.14)
1691     i15 i0 00 31 i0 i0 i29: (i23: ("" 31 "^1 (^2K) bytes") 58 58 ) "^1 (^2K) bytes" i2
1692         i0 01 58 F40.0(459728)
1693         i0 01 58 03 28 28 00 00 00 00 00 40 0f 7c 40 
1694
1695 web/f748b5e575e0a0c2e55698c3b18d272e/00000000094_lightTableData.bin (Model Description):
1696
1697     i10
1698     i0 i0 00 58 "^1" i1 i0 03 "MOD_2" 58 "" "MOD_2" 00
1699     i1 i0 05 58 "V15" "mass/breath" 02
1700     i2 i0 05 58 "V29" "particles/breath-v2" 02
1701     i3 i0 03 "None" 58 "" "None" 01
1702     i4 00 00 00 00 01 58 F40.0(0)
1703     i5 00 00 00 00 01 58 F40.0(0)
1704     i6 00 00 00 00 03 "No periodicity" 58 "no_help" "No periodicity" 01
1705     i7 00 00 00 00 01 58 F40.0(16)
1706     i8 00 00 00 00 03 "Independence(white noise)" 31 i1 00 00 00 00 00 00 i6 00 00 00 00 58 58 "no_help" "Independence(white noise)" 01
1707     i9 00 00 00 00 03 "All lags" 58 "no_help" "All lags" 01 
1708
1709
1710 web/f748b5e575e0a0c2e55698c3b18d272e/00000000253_lightWarningData.bi (Warnings):
1711
1712     i12
1713
1714     i0 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." 
1715         i2 i0     05 58 "Tot_Part_V1" "Total particles" 02
1716         i2 i0     05 58 "Sitting" "Sitting" 02
1717         i0        02 58 F40.0(50) "Sitting" "" 02
1718
1719     i1 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed."
1720         i2 i0 05 58 "Samp_timeV2" "Sampling time-v2" 02
1721         i2 i0 05 58 "Sitting" "Sitting"
1722         i2 00 02 58 F40.0(50) "Sitting" i0 02
1723
1724     i2 i0 00 58 "There are fewer than two groups for dependent variable ^1 in split file [%1 = %2:, ^1 = ^2:]2. No statistics are computed." i2 00 00 00 00 05 58 
1725     "Sampling_time_V1" 
1726     "Sampling time" 02 i2 00 00 00 00 05 58 
1727
1728 smekens/default/00000000011_lightNotesData.bin (Notes):
1729
1730     i15 i0 00 58 "^1 (^2K) bytes" i2
1731         i0 01 58 F40.0(40024)
1732         i0 01 58 03 28 i40 00 00 00 8b 43 40 
1733
1734
1735
1736 Data: tdump21 (germano/Crosstabs.pdf)
1737 -------------
1738
1739 i0 i0 01 58 F40.3(0.084)
1740 i20 i0 01 58 F40.3(0.147)
1741 i40 i0 01 58 F40.3(0.025)
1742 i24 i0 01 58 F40.3(0.061)
1743 i44 i0 01 58 F40.3(0.017)
1744 i8 i0 01 58 F40.3(0.054)
1745 i28 i0 01 58 F40.3(0.069)
1746 i48 i0 01 58 F40.3(0.045)
1747 i12 i0 01 58 F40.3(0.028)
1748 i32 i0 01 58 F40.3(0.026)
1749 i52 i0 01 58 F40.3(0.030)
1750 i36 i0 01 58 F40.3(0.196)
1751 i56 i0 01 58 F40.3(0.077)
1752 -
1753 i1 i0 01 58 F40.3(0.055)
1754 i21 i0 01 58 F40.3(0.077)
1755 i41 i0 01 58 F40.3(0.056)
1756 i25 i0 01 58 F40.3(0.020)
1757 i45 i0 01 58 F40.3(0.010)
1758 i9 i0 01 58 F40.3(0.021)
1759 i29 i0 01 58 F40.3(0.026)
1760 i49 i0 01 58 F40.3(0.017)
1761 i13 i0 01 58 F40.3(0.083)
1762 i33 i0 01 58 F40.3(0.078)
1763 i53 i0 01 58 F40.3(0.090)
1764
1765 i2 i0 01 58 F40.3(1.498)
1766 i22 i0 01 58 F40.3(1.789)
1767 i42 i0 01 58 F40.3(0.448)
1768 i10 i0 01 58 F40.3(2.594)
1769 i30 i0 01 58 F40.3(2.594)
1770 i50 i0 01 58 F40.3(2.594)
1771 i14 i0 01 58 F40.3(0.337)
1772 i34 i0 01 58 F40.3(0.337)
1773 i54 i0 01 58 F40.3(0.337)
1774
1775 i3 i0 01 58 F40.3(0.134)
1776 i23 i0 01 58 F40.3(0.074)
1777 i43 i0 01 58 F40.3(0.654)
1778 with footnote c (2):
1779     i27 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.955)
1780     i47 i0 01 31 i1 i2 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.975)
1781 with footnote d (3):
1782     i11 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1783     i31 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1784     i51 i0 01 31 i1 i3 00 00 i11: (i5: ("" 58) 58 58) F40.3(0.939)
1785 i15 i0 01 58 F40.3(0.736)
1786 i35 i0 01 58 F40.3(0.736)
1787 i55 i0 01 58 F40.3(0.736)
1788
1789
1790 Data: tdump9
1791 ------------
1792
1793 0c == font size in points?
1794
1795 i3   i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(11.0)
1796 ...
1797 i59  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(3.3)
1798 ...
1799 i107 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-2.8)
1800 ...
1801 i87  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(2.5)
1802 ...
1803 i111 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5)
1804 ...
1805 i67  i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(-3.5)
1806 ...
1807 i115 i0 01 31 i0 i0 i51: (i5: ("" 58) 31 00 00 00 01 "#000000" "#fbf873" "SansSerif" 0c 58) F40.1(6.9)
1808
1809 Data: tdump19
1810 -------------
1811
1812 40 observations (i40):
1813
1814 i0 i1 i2 i2 00 00 00 00 i1 i40 
1815 i0 00 00 00 00 01 58 F40.0(100)
1816 i4 00 00 00 00 01 58 F40.1(16.0)
1817 i8 00 00 00 00 01 58 F40.1(64.0)
1818 i12 00 00 00 00 01 58 F40.1(80.0)
1819 i16 00 00 00 00 01 58 F40.1(7227.0)
1820 i20 00 00 00 00 01 58 F40.3(72.270)
1821 i60 00 00 00 00 01 58 F40.4(0.3216)
1822 i24 00 00 00 00 01 58 F40.4(3.2157)
1823 i28 00 00 00 00 01 58 F40.3(10.341)
1824 i32 00 00 00 00 01 58 F40.3(-0.032)
1825 i72 00 00 00 00 01 58 F40.3(0.241)
1826 i36 00 00 00 00 01 58 F40.3(-0.235)
1827 i76 00 00 00 00 01 58 F40.3(0.478)
1828 i1 00 00 00 00 01 58 F40.0(100)
1829 i5 00 00 00 00 01 58 F40.1(25.0)
1830 i9 00 00 00 00 01 58 F40.1(62.0)
1831 i13 00 00 00 00 01 58 F40.1(87.0)
1832 i17 00 00 00 00 01 58 F40.1(7385.0)
1833 i21 00 00 00 00 01 58 F40.3(73.850)
1834 i61 00 00 00 00 01 58 F40.4(0.5131)
1835 i25 00 00 00 00 01 58 F40.4(5.1314)
1836 i29 00 00 00 00 01 58 F40.3(26.331)
1837 i33 00 00 00 00 01 58 F40.3(0.055)
1838 i73 00 00 00 00 01 58 F40.3(0.241)
1839 i37 00 00 00 00 01 58 F40.3(-0.213)
1840 i77 00 00 00 00 01 58 F40.3(0.478)
1841 i2 00 00 00 00 01 58 F40.0(100)
1842 i6 00 00 00 00 01 58 F40.1(22.0)
1843 i10 00 00 00 00 01 58 F40.1(64.0)
1844 i14 00 00 00 00 01 58 F40.1(86.0)
1845 i18 00 00 00 00 01 58 F40.1(7280.0)
1846 i22 00 00 00 00 01 58 F40.3(72.800)
1847 i62 00 00 00 00 01 58 F40.4(0.4740)
1848 i26 00 00 00 00 01 58 F40.4(4.7397)
1849 i30 00 00 00 00 01 58 F40.3(22.465)
1850 i34 00 00 00 00 01 58 F40.3(0.223)
1851 i74 00 00 00 00 01 58 F40.3(0.241)
1852 i38 00 00 00 00 01 58 F40.3(-0.099)
1853 i78 00 00 00 00 01 58 F40.3(0.478)
1854 i3 00 00 00 00 01 58 F40.0(100)
1855
1856
1857 Data: tdump27
1858 -------------
1859
1860 21 observations (i21):
1861 01 00 00 00 i1 00 00 00 00 00 00 00 00 i1 i21
1862 i0 00 00 00 00 01 58 F40.0(100)
1863 i1 00 00 00 00 01 58 F40.0(0)
1864 i2 00 00 00 00 01 58 F40.2(3.31)
1865 i3 00 00 00 00 01 58 F40.3(0.244)
1866 i4 00 00 00 00 01 58 F40.2(3.00)
1867 i5 00 00 00 00 01 58 F40.0(4)
1868 i6 00 00 00 00 01 58 F40.3(2.444)
1869 i7 00 00 00 00 01 58 F40.3(5.974)
1870 i8 00 00 00 00 01 58 F40.3(0.796)
1871 i9 00 00 00 00 01 58 F40.3(0.241)
1872 i10 00 00 00 00 01 58 F40.3(0.451)
1873 i11 00 00 00 00 01 58 F40.3(0.478)
1874 i12 00 00 00 00 01 58 F40.0(10)
1875 i13 00 00 00 00 01 58 F40.0(0)
1876 i14 00 00 00 00 01 58 F40.0(10)
1877 i15 00 00 00 00 01 58 F40.0(331)
1878 i16 00 00 00 00 01 58 F40.2(0.00)
1879 i17 00 00 00 00 01 58 F40.2(1.00)
1880 i18 00 00 00 00 01 58 F40.2(3.00)
1881 i19 00 00 00 00 01 58 F40.2(4.00)
1882 i20 00 00 00 00 01 58 F40.2(7.00)
1883
1884 Data: tdump24 (germano/Crosstabs.pdf)
1885 -------------
1886
1887 432 observations (i432):
1888 i0 i2 i1 i2 i0 i432
1889 i0 i0 00 00 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00
1890 i96 i0 03 "<5" 31 i0 i1 "a" i11: (i5: ("" 58) 58 58) 00 00 00 00 "<5" 00
1891 i192 00 00 00 00 03 "<5" 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5" 00
1892 i288 i0 03 "<5" 31 00 00 00 00 i1 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 "<5" 00
1893 i384 i0 01 58 F40.0(12)
1894 i8 i0 01 ((31 i0 i1 "a" i11 i5 i0 58 58)) 58 F40.0(5)
1895 i104 00 00 00 00 03 
1896 "<5" 31 00 00 00 00 i1 
1897 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1898 "<5" 00 i200 00 00 00 00 03 
1899 "<5" 31 00 00 00 00 i1 
1900 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1901 "<5" 00 28 i1 00 00 00 03 
1902 "<5" 31 00 00 00 00 i1 
1903 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1904 "<5" 00 88 i1 00 00 00 01 58 F40.0(15)
1905 i16 00 00 00 00 03 
1906 "<5" 31 00 00 00 00 i1 
1907 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1908 "<5" 00 i112 00 00 00 00 03 
1909 "<5" 31 00 00 00 00 i1 
1910 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1911 "<5" 00 i208 00 00 00 00 03 
1912 "<5" 31 00 00 00 00 i1 
1913 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1914 "<5" 00 30 i1 00 00 00 03 
1915 "<5" 31 00 00 00 00 i1 
1916 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1917 "<5" 00
1918 i400 i0 01 58 F40.0(12)
1919 i24 00 00 00 00 01 31 00 00 00 00 i1 
1920 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1921 i120 00 00 00 00 03 
1922 "<5" 31 00 00 00 00 i1 
1923 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1924 "<5" 00 i216 00 00 00 00 01 31 00 00 00 00 i1 
1925 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6)
1926 38 i1 00 00 00 03 
1927 "<5" 31 00 00 00 00 i1 
1928 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1929 "<5" 00 98 i1 00 00 00 01 58 F40.0(16)
1930 i32 00 00 00 00 03 
1931 "<5" 31 00 00 00 00 i1 
1932 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1933 "<5" 00 i128 00 00 00 00 01 31 00 00 00 00 i1 
1934 "a" i11 i5 00 00 00 00 58 58 58 F40.0(7)
1935 i224 00 00 00 00 01 31 00 00 00 00 i1 
1936 "a" i11 i5 00 00 00 00 58 58 58 F40.0(6)
1937 40 i1 00 00 00 01 31 00 00 00 00 i1 
1938 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1939 a0 i1 00 00 00 01 58 F40.0(21)
1940 i40 00 00 00 00 03 
1941 "<5" 31 00 00 00 00 i1 
1942 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1943 "<5" 00 i136 00 00 00 00 01 31 00 00 00 00 i1 
1944 "a" i11 i5 00 00 00 00 58 58 58 F40.0(5)
1945 i232 00 00 00 00 03 
1946 "<5" 31 00 00 00 00 i1 
1947 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1948 "<5" 00 48 i1 00 00 00 03 
1949 "<5" 31 00 00 00 00 i1 
1950 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1951 "<5" 00 a8 i1 00 00 00 01 58 F40.0(11)
1952 i48 00 00 00 00 03 
1953 "<5" 31 00 00 00 00 i1 
1954 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1955 "<5" 00 i144 00 00 00 00 03 
1956 "<5" 31 00 00 00 00 i1 
1957 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1958 "<5" 00 i240 00 00 00 00 03 
1959 "<5" 31 00 00 00 00 i1 
1960 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1961 "<5" 00 50 i1 00 00 00 03 
1962 "<5" 31 00 00 00 00 i1 
1963 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1964 "<5" 00 b0 i1 00 00 00 03 
1965 "<5" 58 00 00 00 00 
1966 "<5" 00 i56 00 00 00 00 03 
1967 "<5" 31 00 00 00 00 i1 
1968 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1969 "<5" 00 i152 00 00 00 00 03 
1970 "<5" 31 00 00 00 00 i1 
1971 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1972 "<5" 00 i248 00 00 00 00 03 
1973 "<5" 31 00 00 00 00 i1 
1974 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1975 "<5" 00 58 i1 00 00 00 03 
1976 "<5" 31 00 00 00 00 i1 
1977 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1978 "<5" 00 b8 i1 00 00 00 03 
1979 "<5" 58 00 00 00 00 
1980 "<5" 00 i64 00 00 00 00 03 
1981 "<5" 31 00 00 00 00 i1 
1982 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1983 "<5" 00 i160 00 00 00 00 03 
1984 "<5" 31 00 00 00 00 i1 
1985 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1986 "<5" 00 00 i1 00 00 00 03 
1987 "<5" 31 00 00 00 00 i1 
1988 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1989 "<5" 00 60 i1 00 00 00 03 
1990 "<5" 31 00 00 00 00 i1 
1991 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1992 "<5" 00 c0 i1 00 00 00 03 
1993 "<5" 58 00 00 00 00 
1994 "<5" 00 i72 00 00 00 00 03 
1995 "<5" 31 00 00 00 00 i1 
1996 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
1997 "<5" 00 i168 00 00 00 00 03 
1998 "<5" 31 00 00 00 00 i1 
1999 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2000 "<5" 00 08 i1 00 00 00 03 
2001 "<5" 31 00 00 00 00 i1 
2002 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2003 "<5" 00 68 i1 00 00 00 03 
2004 "<5" 31 00 00 00 00 i1 
2005 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2006 "<5" 00 c8 i1 00 00 00 03 
2007 "<5" 58 00 00 00 00 
2008 "<5" 00 i80 00 00 00 00 03 
2009 "<5" 31 00 00 00 00 i1 
2010 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2011 "<5" 00 i176 00 00 00 00 03 
2012 "<5" 31 00 00 00 00 i1 
2013 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2014 "<5" 00 10 i1 00 00 00 03 
2015 "<5" 31 00 00 00 00 i1 
2016 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2017 "<5" 00 70 i1 00 00 00 03 
2018 "<5" 31 00 00 00 00 i1 
2019 "a" i11 i5 00 00 00 00 58 58 58 00 00 00 00 
2020 "<5" 00 d0 i1 00 00 00 03 
2021 "<5" 58 00 00 00 00 
2022 "<5" 00
2023 i88 00 00 00 00 01 58 F40.0(25)
2024 i184 00 00 00 00 01 58 F40.0(25)
2025 18 i1 00 00 00 01 58 F40.0(25)
2026 78 i1 00 00 00 01 58 F40.0(25)
2027 d8 i1 00 00 00 01 58 F40.0(100)
2028 i1 00 00 00 00 01 58 F40.1(3.0)
2029 i97 00 00 00 00 01 58 F40.1(3.0)
2030 i193 00 00 00 00 01 58 F40.1(3.0)
2031 i277 00 00 00 00 01 58 F40.1(3.0)
2032 81 i1 00 00 00 01 58 F40.1(12.0)
2033 i9 00 00 00 00 01 58 F40.1(3.8)
2034 i105 00 00 00 00 01 58 F40.1(3.8)
2035 i201 00 00 00 00 01 58 F40.1(3.8)
2036 29 i1 00 00 00 01 58 F40.1(3.8)
2037 89 i1 00 00 00 01 58 F40.1(15.0)
2038 i17 00 00 00 00 01 58 F40.1(3.0)
2039 i113 00 00 00 00 01 58 F40.1(3.0)
2040 i209 00 00 00 00 01 58 F40.1(3.0)
2041 31 i1 00 00 00 01 58 F40.1(3.0)
2042 91 i1 00 00 00 01 58 F40.1(12.0)
2043 i25 00 00 00 00 01 58 F40.1(4.0)
2044 i121 00 00 00 00 01 58 F40.1(4.0)
2045 i217 00 00 00 00 01 58 F40.1(4.0)
2046 39 i1 00 00 00 01 58 F40.1(4.0)
2047 99 i1 00 00 00 01 58 F40.1(16.0)
2048 i33 00 00 00 00 01 58 F40.1(5.2)
2049 i129 00 00 00 00 01 58 F40.1(5.2)
2050 i225 00 00 00 00 01 58 F40.1(5.2)
2051 41 i1 00 00 00 01 58 F40.1(5.2)
2052 a1 i1 00 00 00 01 58 F40.1(21.0)
2053 i41 00 00 00 00 01 58 F40.1(2.8)
2054 i137 00 00 00 00 01 58 F40.1(2.8)
2055 i233 00 00 00 00 01 58 F40.1(2.8)
2056 49 i1 00 00 00 01 58 F40.1(2.8)
2057 a9 i1 00 00 00 01 58 F40.1(11.0)
2058 31 00 00 00 00 00 00 00 03 
2059 "n<5" 58 00 00 00 00 
2060 "n<5" 00 i145 00 00 00 00 03 
2061 "n<5" 58 00 00 00 00 
2062 "n<5" 00 i241 00 00 00 00 03 
2063 "n<5" 58 00 00 00 00 
2064 "n<5" 00 51 i1 00 00 00 03 
2065 "n<5" 58 00 00 00 00 
2066 "n<5" 00 b1 i1 00 00 00 03 
2067 "<5" 58 00 00 00 00 
2068 "<5" 00 i57 00 00 00 00 03 
2069 "n<5" 58 00 00 00 00 
2070 "n<5" 00 i153 00 00 00 00 03 
2071 "n<5" 58 00 00 00 00 
2072 "n<5" 00 i249 00 00 00 00 03 
2073 "n<5" 58 00 00 00 00 
2074 "n<5" 00 59 i1 00 00 00 03 
2075 "n<5" 58 00 00 00 00 
2076 "n<5" 00 b9 i1 00 00 00 03 
2077 "<5" 58 00 00 00 00 
2078 "<5" 00 i65 00 00 00 00 03 
2079 "n<5" 58 00 00 00 00 
2080 "n<5" 00 i161 00 00 00 00 03 
2081 "n<5" 58 00 00 00 00 
2082 "n<5" 00 01 i1 00 00 00 03 
2083 "n<5" 58 00 00 00 00 
2084 "n<5" 00 61 i1 00 00 00 03 
2085 "n<5" 58 00 00 00 00 
2086 "n<5" 00 c1 i1 00 00 00 03 
2087 "<5" 58 00 00 00 00 
2088 "<5" 00 i73 00 00 00 00 03 
2089 "n<5" 58 00 00 00 00 
2090 "n<5" 00 i169 00 00 00 00 03 
2091 "n<5" 58 00 00 00 00 
2092 "n<5" 00 09 i1 00 00 00 03 
2093 "n<5" 58 00 00 00 00 
2094 "n<5" 00 69 i1 00 00 00 03 
2095 "n<5" 58 00 00 00 00 
2096 "n<5" 00 c9 i1 00 00 00 03 
2097 "<5" 58 00 00 00 00 
2098 "<5" 00 i81 00 00 00 00 03 
2099 "n<5" 58 00 00 00 00 
2100 "n<5" 00 i177 00 00 00 00 03 
2101 "n<5" 58 00 00 00 00 
2102 "n<5" 00 11 i1 00 00 00 03 
2103 "n<5" 58 00 00 00 00 
2104 "n<5" 00 71 i1 00 00 00 03 
2105 "n<5" 58 00 00 00 00 
2106 "n<5" 00 d1 i1 00 00 00 03 
2107 "<5" 58 00 00 00 00 
2108 "<5" 00 i89 00 00 00 00 01 58 F40.1(25.0)
2109 i185 00 00 00 00 01 58 F40.1(25.0)
2110 19 i1 00 00 00 01 58 F40.1(25.0)
2111 79 i1 00 00 00 01 58 F40.1(25.0)
2112 d9 i1 00 00 00 01 58 F40.1(100.0)
2113 i2 00 00 00 00 03 
2114 "n<5" 58 00 00 00 00 
2115 "n<5" 00 i98 00 00 00 00 03 
2116 "n<5" 58 00 00 00 00 
2117 "n<5" 00 i194 00 00 00 00 03 
2118 "n<5" 58 00 00 00 00 
2119 "n<5" 00 22 i1 00 00 00 03 
2120 "n<5" 58 00 00 00 00 
2121 "n<5" 00
2122 82 i1 00 00 00 01 58 PCT40.1(12.0)
2123 i10 00 00 00 00 01 58 PCT40.1(20.0)
2124 i106 00 00 00 00 03 
2125 "n<5" 58 00 00 00 00 
2126 "n<5" 00 i202 00 00 00 00 03 
2127 "n<5" 58 00 00 00 00 
2128 "n<5" 00 2a i1 00 00 00 03 
2129 "n<5" 58 00 00 00 00 
2130 "n<5" 00 8a i1 00 00 00 01 58 PCT40.1(15.0)
2131 i18 00 00 00 00 03 
2132 "n<5" 58 00 00 00 00 
2133 "n<5" 00 i114 00 00 00 00 03 
2134 "n<5" 58 00 00 00 00 
2135 "n<5" 00 i210 00 00 00 00 03 
2136 "n<5" 58 00 00 00 00 
2137 "n<5" 00 32 i1 00 00 00 03 
2138 "n<5" 58 00 00 00 00 
2139 "n<5" 00 92 i1 00 00 00 01 58 PCT40.1(12.0)
2140 i26 00 00 00 00 01 58 PCT40.1(20.0)
2141 i122 00 00 00 00 03 
2142 "n<5" 58 00 00 00 00 
2143 "n<5" 00 i218 00 00 00 00 01 58 PCT40.1(24.0)
2144 3a i1 00 00 00 03 
2145 "n<5" 58 00 00 00 00 
2146 "n<5" 00 9a i1 00 00 00 01 58 PCT40.1(16.0)
2147 i34 00 00 00 00 03 
2148 "n<5" 58 00 00 00 00 
2149 "n<5" 00 i130 00 00 00 00 01 58 PCT40.1(28.0)
2150 i226 00 00 00 00 01 58 PCT40.1(24.0)
2151 42 i1 00 00 00 01 58 PCT40.1(20.0)
2152 a2 i1 00 00 00 01 58 PCT40.1(21.0)
2153 i42 00 00 00 00 03 
2154 "n<5" 58 00 00 00 00 
2155 "n<5" 00 i138 00 00 00 00 01 58 PCT40.1(20.0)
2156 i234 00 00 00 00 03 
2157 "n<5" 58 00 00 00 00 
2158 "n<5" 00 4a i1 00 00 00 03 
2159 "n<5" 58 00 00 00 00 
2160 "n<5" 00 aa i1 00 00 00 01 58 PCT40.1(11.0)
2161 i50 00 00 00 00 03 
2162 "n<5" 58 00 00 00 00 
2163 "n<5" 00 i146 00 00 00 00 03 
2164 "n<5" 58 00 00 00 00 
2165 "n<5" 00 i242 00 00 00 00 03 
2166 "n<5" 58 00 00 00 00 
2167 "n<5" 00 52 i1 00 00 00 03 
2168 "n<5" 58 00 00 00 00 
2169 "n<5" 00 b2 i1 00 00 00 03 
2170 "n<5" 58 00 00 00 00 
2171 "n<5" 00 i58 00 00 00 00 03 
2172 "n<5" 58 00 00 00 00 
2173 "n<5" 00 i154 00 00 00 00 03 
2174 "n<5" 58 00 00 00 00 
2175 "n<5" 00 i250 00 00 00 00 03 
2176 "n<5" 58 00 00 00 00 
2177 "n<5" 00 5a i1 00 00 00 03 
2178 "n<5" 58 00 00 00 00 
2179 "n<5" 00 ba i1 00 00 00 03 
2180 "n<5" 58 00 00 00 00 
2181 "n<5" 00 i66 00 00 00 00 03 
2182 "n<5" 58 00 00 00 00 
2183 "n<5" 00 i162 00 00 00 00 03 
2184 "n<5" 58 00 00 00 00 
2185 "n<5" 00 02 i1 00 00 00 03 
2186 "n<5" 58 00 00 00 00 
2187 "n<5" 00 62 i1 00 00 00 03 
2188 "n<5" 58 00 00 00 00 
2189 "n<5" 00 c2 i1 00 00 00 03 
2190 "n<5" 58 00 00 00 00 
2191 "n<5" 00 i74 00 00 00 00 03 
2192 "n<5" 58 00 00 00 00 
2193 "n<5" 00 i170 00 00 00 00 03 
2194 "n<5" 58 00 00 00 00 
2195 "n<5" 00 0a i1 00 00 00 03 
2196 "n<5" 58 00 00 00 00 
2197 "n<5" 00 6a i1 00 00 00 03 
2198 "n<5" 58 00 00 00 00 
2199 "n<5" 00 ca i1 00 00 00 03 
2200 "n<5" 58 00 00 00 00 
2201 "n<5" 00 i82 00 00 00 00 03 
2202 "n<5" 58 00 00 00 00 
2203 "n<5" 00 i178 00 00 00 00 03 
2204 "n<5" 58 00 00 00 00 
2205 "n<5" 00 12 i1 00 00 00 03 
2206 "n<5" 58 00 00 00 00 
2207 "n<5" 00 72 i1 00 00 00 03 
2208 "n<5" 58 00 00 00 00 
2209 "n<5" 00 d2 i1 00 00 00 03 
2210 "n<5" 58 00 00 00 00 
2211 "n<5" 00 i90 00 00 00 00 01 58 PCT40.1(100.0)
2212 i186 00 00 00 00 01 58 PCT40.1(100.0)
2213 1a i1 00 00 00 01 58 PCT40.1(100.0)
2214 7a i1 00 00 00 01 58 PCT40.1(100.0)
2215 da i1 00 00 00 01 58 PCT40.1(100.0)
2216 i3 00 00 00 00 03 
2217 "n<5" 58 00 00 00 00 
2218 "n<5" 00 i99 00 00 00 00 03 
2219 "n<5" 58 00 00 00 00 
2220 "n<5" 00 i195 00 00 00 00 03 
2221 "n<5" 58 00 00 00 00 
2222 "n<5" 00 23 i1 00 00 00 03 
2223 "n<5" 58 00 00 00 00 
2224 "n<5" 00 83 i1 00 00 00 01 58 PCT40.1(100.0)
2225 i11 00 00 00 00 01 58 PCT40.1(33.3)
2226 i107 00 00 00 00 03 
2227 "n<5" 58 00 00 00 00 
2228 "n<5" 00 i203 00 00 00 00 03 
2229 "n<5" 58 00 00 00 00 
2230 "n<5" 00 2b i1 00 00 00 03 
2231 "n<5" 58 00 00 00 00 
2232 "n<5" 00 8b i1 00 00 00 01 58 PCT40.1(100.0)
2233 i19 00 00 00 00 03 
2234 "n<5" 58 00 00 00 00 
2235 "n<5" 00 i115 00 00 00 00 03 
2236 "n<5" 58 00 00 00 00 
2237 "n<5" 00 i211 00 00 00 00 03 
2238 "n<5" 58 00 00 00 00 
2239 "n<5" 00 33 i1 00 00 00 03 
2240 "n<5" 58 00 00 00 00 
2241 "n<5" 00 93 i1 00 00 00 01 58 PCT40.1(100.0)
2242 i27 00 00 00 00 01 58 PCT40.1(31.2)
2243 i123 00 00 00 00 03 
2244 "n<5" 58 00 00 00 00 
2245 "n<5" 00 i219 00 00 00 00 01 58 PCT40.1(37.5)
2246 3b i1 00 00 00 03 
2247 "n<5" 58 00 00 00 00 
2248 "n<5" 00 9b i1 00 00 00 01 58 PCT40.1(100.0)
2249 i35 00 00 00 00 03 
2250 "n<5" 58 00 00 00 00 
2251 "n<5" 00 i131 00 00 00 00 01 58 PCT40.1(33.3)
2252 i227 00 00 00 00 01 58 PCT40.1(28.6)
2253 43 i1 00 00 00 01 58 PCT40.1(23.8)
2254 a3 i1 00 00 00 01 58 PCT40.1(100.0)
2255 i43 00 00 00 00 03 
2256 "n<5" 58 00 00 00 00 
2257 "n<5" 00 i139 00 00 00 00 01 58 PCT40.1(45.5)
2258 i235 00 00 00 00 03 
2259 "n<5" 58 00 00 00 00 
2260 "n<5" 00 4b i1 00 00 00 03 
2261 "n<5" 58 00 00 00 00 
2262 "n<5" 00 ab i1 00 00 00 01 58 PCT40.1(100.0)
2263 i51 00 00 00 00 03 
2264 "n<5" 58 00 00 00 00 
2265 "n<5" 00 i147 00 00 00 00 03 
2266 "n<5" 58 00 00 00 00 
2267 "n<5" 00 i243 00 00 00 00 03 
2268 "n<5" 58 00 00 00 00 
2269 "n<5" 00 53 i1 00 00 00 03 
2270 "n<5" 58 00 00 00 00 
2271 "n<5" 00 b3 i1 00 00 00 01 58 PCT40.1(100.0)
2272 i59 00 00 00 00 03 
2273 "n<5" 58 00 00 00 00 
2274 "n<5" 00 i155 00 00 00 00 03 
2275 "n<5" 58 00 00 00 00 
2276 "n<5" 00 i251 00 00 00 00 03 
2277 "n<5" 58 00 00 00 00 
2278 "n<5" 00 5b i1 00 00 00 03 
2279 "n<5" 58 00 00 00 00 
2280 "n<5" 00 bb i1 00 00 00 01 58 PCT40.1(100.0)
2281 i67 00 00 00 00 03 
2282 "n<5" 58 00 00 00 00 
2283 "n<5" 00 i163 00 00 00 00 03 
2284 "n<5" 58 00 00 00 00 
2285 "n<5" 00 03 i1 00 00 00 03 
2286 "n<5" 58 00 00 00 00 
2287 "n<5" 00 63 i1 00 00 00 03 
2288 "n<5" 58 00 00 00 00 
2289 "n<5" 00 c3 i1 00 00 00 01 58 PCT40.1(100.0)
2290 i75 00 00 00 00 03 
2291 "n<5" 58 00 00 00 00 
2292 "n<5" 00 i171 00 00 00 00 03 
2293 "n<5" 58 00 00 00 00 
2294 "n<5" 00 0b i1 00 00 00 03 
2295 "n<5" 58 00 00 00 00 
2296 "n<5" 00 6b i1 00 00 00 03 
2297 "n<5" 58 00 00 00 00 
2298 "n<5" 00 cb i1 00 00 00 01 58 PCT40.1(100.0)
2299 i83 00 00 00 00 03 
2300 "n<5" 58 00 00 00 00 
2301 "n<5" 00 i179 00 00 00 00 03 
2302 "n<5" 58 00 00 00 00 
2303 "n<5" 00 13 i1 00 00 00 03 
2304 "n<5" 58 00 00 00 00 
2305 "n<5" 00 73 i1 00 00 00 03 
2306 "n<5" 58 00 00 00 00 
2307 "n<5" 00 d3 i1 00 00 00 01 58 PCT40.1(100.0)
2308 i91 00 00 00 00 01 58 PCT40.1(25.0)
2309 i187 00 00 00 00 01 58 PCT40.1(25.0)
2310 1b i1 00 00 00 01 58 PCT40.1(25.0)
2311 7b i1 00 00 00 01 58 PCT40.1(25.0)
2312 db i1 00 00 00 01 58 PCT40.1(100.0)
2313 i4 00 00 00 00 03 
2314 "n<5" 58 00 00 00 00 
2315 "n<5" 00 i100 00 00 00 00 03 
2316 "n<5" 58 00 00 00 00 
2317 "n<5" 00 i196 00 00 00 00 03 
2318 "n<5" 58 00 00 00 00 
2319 "n<5" 00 24 i1 00 00 00 03 
2320 "n<5" 58 00 00 00 00 
2321 "n<5" 00 84 i1 00 00 00 01 58 PCT40.1(12.0)
2322 i12 00 00 00 00 01 58 PCT40.1(5.0)
2323 i108 00 00 00 00 03 
2324 "n<5" 58 00 00 00 00 
2325 "n<5" 00 i204 00 00 00 00 03 
2326 "n<5" 58 00 00 00 00 
2327 "n<5" 00 2c i1 00 00 00 03 
2328 "n<5" 58 00 00 00 00 
2329 "n<5" 00 8c i1 00 00 00 01 58 PCT40.1(15.0)
2330 i20 00 00 00 00 03 
2331 "n<5" 58 00 00 00 00 
2332 "n<5" 00 i116 00 00 00 00 03 
2333 "n<5" 58 00 00 00 00 
2334 "n<5" 00 i212 00 00 00 00 03 
2335 "n<5" 58 00 00 00 00 
2336 "n<5" 00 34 i1 00 00 00 03 
2337 "n<5" 58 00 00 00 00 
2338 "n<5" 00 94 i1 00 00 00 01 58 PCT40.1(12.0)
2339 i28 00 00 00 00 01 58 PCT40.1(5.0)
2340 i124 00 00 00 00 03 
2341 "n<5" 58 00 00 00 00 
2342 "n<5" 00 i220 00 00 00 00 01 58 PCT40.1(6.0)
2343 3c i1 00 00 00 03 
2344 "n<5" 58 00 00 00 00 
2345 "n<5" 00 9c i1 00 00 00 01 58 PCT40.1(16.0)
2346 i36 00 00 00 00 03 
2347 "n<5" 58 00 00 00 00 
2348 "n<5" 00 i132 00 00 00 00 01 58 PCT40.1(7.0)
2349 i228 00 00 00 00 01 58 PCT40.1(6.0)
2350 44 i1 00 00 00 01 58 PCT40.1(5.0)
2351 a4 i1 00 00 00 01 58 PCT40.1(21.0)
2352 i44 00 00 00 00 03 
2353 "n<5" 58 00 00 00 00 
2354 "n<5" 00 i140 00 00 00 00 01 58 PCT40.1(5.0)
2355 i236 00 00 00 00 03 
2356 "n<5" 58 00 00 00 00 
2357 "n<5" 00 4c i1 00 00 00 03 
2358 "n<5" 58 00 00 00 00 
2359 "n<5" 00 ac i1 00 00 00 01 58 PCT40.1(11.0)
2360 i52 00 00 00 00 03 
2361 "n<5" 58 00 00 00 00 
2362 "n<5" 00 i148 00 00 00 00 03 
2363 "n<5" 58 00 00 00 00 
2364 "n<5" 00 i244 00 00 00 00 03 
2365 "n<5" 58 00 00 00 00 
2366 "n<5" 00 54 i1 00 00 00 03 
2367 "n<5" 58 00 00 00 00 
2368 "n<5" 00 b4 i1 00 00 00 03 
2369 "n<5" 58 00 00 00 00 
2370 "n<5" 00 i60 00 00 00 00 03 
2371 "n<5" 58 00 00 00 00 
2372 "n<5" 00 i156 00 00 00 00 03 
2373 "n<5" 58 00 00 00 00 
2374 "n<5" 00 i252 00 00 00 00 03 
2375 "n<5" 58 00 00 00 00 
2376 "n<5" 00 5c i1 00 00 00 03 
2377 "n<5" 58 00 00 00 00 
2378 "n<5" 00 bc i1 00 00 00 03 
2379 "n<5" 58 00 00 00 00 
2380 "n<5" 00 i68 00 00 00 00 03 
2381 "n<5" 58 00 00 00 00 
2382 "n<5" 00 i164 00 00 00 00 03 
2383 "n<5" 58 00 00 00 00 
2384 "n<5" 00 04 i1 00 00 00 03 
2385 "n<5" 58 00 00 00 00 
2386 "n<5" 00 64 i1 00 00 00 03 
2387 "n<5" 58 00 00 00 00 
2388 "n<5" 00 c4 i1 00 00 00 03 
2389 "n<5" 58 00 00 00 00 
2390 "n<5" 00 i76 00 00 00 00 03 
2391 "n<5" 58 00 00 00 00 
2392 "n<5" 00 i172 00 00 00 00 03 
2393 "n<5" 58 00 00 00 00 
2394 "n<5" 00 0c i1 00 00 00 03 
2395 "n<5" 58 00 00 00 00 
2396 "n<5" 00 6c i1 00 00 00 03 
2397 "n<5" 58 00 00 00 00 
2398 "n<5" 00 cc i1 00 00 00 03 
2399 "n<5" 58 00 00 00 00 
2400 "n<5" 00 i84 00 00 00 00 03 
2401 "n<5" 58 00 00 00 00 
2402 "n<5" 00 i180 00 00 00 00 03 
2403 "n<5" 58 00 00 00 00 
2404 "n<5" 00 14 i1 00 00 00 03 
2405 "n<5" 58 00 00 00 00 
2406 "n<5" 00 74 i1 00 00 00 03 
2407 "n<5" 58 00 00 00 00 
2408 "n<5" 00 d4 i1 00 00 00 03 
2409 "n<5" 58 00 00 00 00 
2410 "n<5" 00 i92 00 00 00 00 01 58 PCT40.1(25.0)
2411 i188 00 00 00 00 01 58 PCT40.1(25.0)
2412 1c i1 00 00 00 01 58 PCT40.1(25.0)
2413 7c i1 00 00 00 01 58 PCT40.1(25.0)
2414 dc i1 00 00 00 01 58 PCT40.1(100.0)
2415 i5 00 00 00 00 03 
2416 "n<5" 58 00 00 00 00 
2417 "n<5" 00 i101 00 00 00 00 03 
2418 "n<5" 58 00 00 00 00 
2419 "n<5" 00 i197 00 00 00 00 03 
2420 "n<5" 58 00 00 00 00 
2421 "n<5" 00 25 i1 00 00 00 03 
2422 "n<5" 58 00 00 00 00 
2423 "n<5" 00 i13 00 00 00 00 01 58 F40.1(1.2)
2424 i109 00 00 00 00 03 
2425 "n<5" 58 00 00 00 00 
2426 "n<5" 00 i205 00 00 00 00 03 
2427 "n<5" 58 00 00 00 00 
2428 "n<5" 00 2d i1 00 00 00 03 
2429 "n<5" 58 00 00 00 00 
2430 "n<5" 00 i21 00 00 00 00 03 
2431 "n<5" 58 00 00 00 00 
2432 "n<5" 00 i117 00 00 00 00 03 
2433 "n<5" 58 00 00 00 00 
2434 "n<5" 00 i213 00 00 00 00 03 
2435 "n<5" 58 00 00 00 00 
2436 "n<5" 00 35 i1 00 00 00 03 
2437 "n<5" 58 00 00 00 00 
2438 "n<5" 00 i29 00 00 00 00 01 58 F40.1(1.0)
2439 i125 00 00 00 00 03 
2440 "n<5" 58 00 00 00 00 
2441 "n<5" 00 i221 00 00 00 00 01 58 F40.1(2.0)
2442 3d i1 00 00 00 03 
2443 "n<5" 58 00 00 00 00 
2444 "n<5" 00 i37 00 00 00 00 03 
2445 "n<5" 58 00 00 00 00 
2446 "n<5" 00 i133 00 00 00 00 01 58 F40.1(1.8)
2447 i229 00 00 00 00 01 58 F40.1(0.8)
2448 45 i1 00 00 00 01 58 F40.1(-0.2)
2449 i45 00 00 00 00 03 
2450 "n<5" 58 00 00 00 00 
2451 "n<5" 00 i141 00 00 00 00 01 58 F40.1(2.2)
2452 i237 00 00 00 00 03 
2453 "n<5" 58 00 00 00 00 
2454 "n<5" 00 4d i1 00 00 00 03 
2455 "n<5" 58 00 00 00 00 
2456 "n<5" 00 i53 00 00 00 00 03 
2457 "n<5" 58 00 00 00 00 
2458 "n<5" 00 i149 00 00 00 00 03 
2459 "n<5" 58 00 00 00 00 
2460 "n<5" 00 i245 00 00 00 00 03 
2461 "n<5" 58 00 00 00 00 
2462 "n<5" 00 55 i1 00 00 00 03 
2463 "n<5" 58 00 00 00 00 
2464 "n<5" 00 i61 00 00 00 00 03 
2465 "n<5" 58 00 00 00 00 
2466 "n<5" 00 i157 00 00 00 00 03 
2467 "n<5" 58 00 00 00 00 
2468 "n<5" 00 i253 00 00 00 00 03 
2469 "n<5" 58 00 00 00 00 
2470 "n<5" 00 5d i1 00 00 00 03 
2471 "n<5" 58 00 00 00 00 
2472 "n<5" 00 i69 00 00 00 00 03 
2473 "n<5" 58 00 00 00 00 
2474 "n<5" 00 i165 00 00 00 00 03 
2475 "n<5" 58 00 00 00 00 
2476 "n<5" 00 05 i1 00 00 00 03 
2477 "n<5" 58 00 00 00 00 
2478 "n<5" 00 65 i1 00 00 00 03 
2479 "n<5" 58 00 00 00 00 
2480 "n<5" 00 i77 00 00 00 00 03 
2481 "n<5" 58 00 00 00 00 
2482 "n<5" 00 i173 00 00 00 00 03 
2483 "n<5" 58 00 00 00 00 
2484 "n<5" 00 0d i1 00 00 00 03 
2485 "n<5" 58 00 00 00 00 
2486 "n<5" 00 6d i1 00 00 00 03 
2487 "n<5" 58 00 00 00 00 
2488 "n<5" 00 i85 00 00 00 00 03 
2489 "n<5" 58 00 00 00 00 
2490 "n<5" 00 i181 00 00 00 00 03 
2491 "n<5" 58 00 00 00 00 
2492 "n<5" 00 15 i1 00 00 00 03 
2493 "n<5" 58 00 00 00 00 
2494 "n<5" 00 75 i1 00 00 00 03 
2495 "n<5" 58 00 00 00 00 
2496 "n<5" 00 i6 00 00 00 00 03 
2497 "n<5" 58 00 00 00 00 
2498 "n<5" 00 i102 00 00 00 00 03 
2499 "n<5" 58 00 00 00 00 
2500 "n<5" 00 i198 00 00 00 00 03 
2501 "n<5" 58 00 00 00 00 
2502 "n<5" 00 26 i1 00 00 00 03 
2503 "n<5" 58 00 00 00 00 
2504 "n<5" 00 i14 00 00 00 00 01 58 F40.1(0.6)
2505 i110 00 00 00 00 03 
2506 "n<5" 58 00 00 00 00 
2507 "n<5" 00 i206 00 00 00 00 03 
2508 "n<5" 58 00 00 00 00 
2509 "n<5" 00 2e i1 00 00 00 03 
2510 "n<5" 58 00 00 00 00 
2511 "n<5" 00 i22 00 00 00 00 03 
2512 "n<5" 58 00 00 00 00 
2513 "n<5" 00 i118 00 00 00 00 03 
2514 "n<5" 58 00 00 00 00 
2515 "n<5" 00 i214 00 00 00 00 03 
2516 "n<5" 58 00 00 00 00 
2517 "n<5" 00 36 i1 00 00 00 03 
2518 "n<5" 58 00 00 00 00 
2519 "n<5" 00 i30 00 00 00 00 01 58 F40.1(0.5)
2520 i126 00 00 00 00 03 
2521 "n<5" 58 00 00 00 00 
2522 "n<5" 00 i222 00 00 00 00 01 58 F40.1(1.0)
2523 3e i1 00 00 00 03 
2524 "n<5" 58 00 00 00 00 
2525 "n<5" 00 i38 00 00 00 00 03 
2526 "n<5" 58 00 00 00 00 
2527 "n<5" 00 i134 00 00 00 00 01 58 F40.1(0.8)
2528 i230 00 00 00 00 01 58 F40.1(0.3)
2529 46 i1 00 00 00 01 58 F40.1(-0.1)
2530 i46 00 00 00 00 03 
2531 "n<5" 58 00 00 00 00 
2532 "n<5" 00 i142 00 00 00 00 01 58 F40.1(1.4)
2533 i238 00 00 00 00 03 
2534 "n<5" 58 00 00 00 00 
2535 "n<5" 00 4e i1 00 00 00 03 
2536 "n<5" 58 00 00 00 00 
2537 "n<5" 00 i54 00 00 00 00 03 
2538 "n<5" 58 00 00 00 00 
2539 "n<5" 00 i150 00 00 00 00 03 
2540 "n<5" 58 00 00 00 00 
2541 "n<5" 00 i246 00 00 00 00 03 
2542 "n<5" 58 00 00 00 00 
2543 "n<5" 00 56 i1 00 00 00 03 
2544 "n<5" 58 00 00 00 00 
2545 "n<5" 00 i62 00 00 00 00 03 
2546 "n<5" 58 00 00 00 00 
2547 "n<5" 00 i158 00 00 00 00 03 
2548 "n<5" 58 00 00 00 00 
2549 "n<5" 00 i254 00 00 00 00 03 
2550 "n<5" 58 00 00 00 00 
2551 "n<5" 00 5e i1 00 00 00 03 
2552 "n<5" 58 00 00 00 00 
2553 "n<5" 00 i70 00 00 00 00 03 
2554 "n<5" 58 00 00 00 00 
2555 "n<5" 00 i166 00 00 00 00 03 
2556 "n<5" 58 00 00 00 00 
2557 "n<5" 00 06 i1 00 00 00 03 
2558 "n<5" 58 00 00 00 00 
2559 "n<5" 00 66 i1 00 00 00 03 
2560 "n<5" 58 00 00 00 00 
2561 "n<5" 00 i78 00 00 00 00 03 
2562 "n<5" 58 00 00 00 00 
2563 "n<5" 00 i174 00 00 00 00 03 
2564 "n<5" 58 00 00 00 00 
2565 "n<5" 00 0e i1 00 00 00 03 
2566 "n<5" 58 00 00 00 00 
2567 "n<5" 00 6e i1 00 00 00 03 
2568 "n<5" 58 00 00 00 00 
2569 "n<5" 00 i86 00 00 00 00 03 
2570 "n<5" 58 00 00 00 00 
2571 "n<5" 00 i182 00 00 00 00 03 
2572 "n<5" 58 00 00 00 00 
2573 "n<5" 00 16 i1 00 00 00 03 
2574 "n<5" 58 00 00 00 00 
2575 "n<5" 00 76 i1 00 00 00 03 
2576 "n<5" 58 00 00 00 00 
2577 "n<5" 00 i7 00 00 00 00 03 
2578 "n<5" 58 00 00 00 00 
2579 "n<5" 00 i103 00 00 00 00 03 
2580 "n<5" 58 00 00 00 00 
2581 "n<5" 00 i199 00 00 00 00 03 
2582 "n<5" 58 00 00 00 00 
2583 "n<5" 00 27 i1 00 00 00 03 
2584 "n<5" 58 00 00 00 00 
2585 "n<5" 00 i15 00 00 00 00 01 58 F40.1(0.8)
2586 i111 00 00 00 00 03 
2587 "n<5" 58 00 00 00 00 
2588 "n<5" 00 i207 00 00 00 00 03 
2589 "n<5" 58 00 00 00 00 
2590 "n<5" 00 2f i1 00 00 00 03 
2591 "n<5" 58 00 00 00 00 
2592 "n<5" 00 i23 00 00 00 00 03 
2593 "n<5" 58 00 00 00 00 
2594 "n<5" 00 i119 00 00 00 00 03 
2595 "n<5" 58 00 00 00 00 
2596 "n<5" 00 i215 00 00 00 00 03 
2597 "n<5" 58 00 00 00 00 
2598 "n<5" 00 37 i1 00 00 00 03 
2599 "n<5" 58 00 00 00 00 
2600 "n<5" 00 i31 00 00 00 00 01 58 F40.1(0.6)
2601 i127 00 00 00 00 03 
2602 "n<5" 58 00 00 00 00 
2603 "n<5" 00 i223 00 00 00 00 01 58 F40.1(1.3)
2604 3f i1 00 00 00 03 
2605 "n<5" 58 00 00 00 00 
2606 "n<5" 00 i39 00 00 00 00 03 
2607 "n<5" 58 00 00 00 00 
2608 "n<5" 00 i135 00 00 00 00 01 58 F40.1(1.0)
2609 i231 00 00 00 00 01 58 F40.1(0.4)
2610 47 i1 00 00 00 01 58 F40.1(-0.1)
2611 i47 00 00 00 00 03 
2612 "n<5" 58 00 00 00 00 
2613 "n<5" 00 i143 00 00 00 00 01 58 F40.1(1.7)
2614 i239 00 00 00 00 03 
2615 "n<5" 58 00 00 00 00 
2616 "n<5" 00 4f i1 00 00 00 03 
2617 "n<5" 58 00 00 00 00 
2618 "n<5" 00 i55 00 00 00 00 03 
2619 "n<5" 58 00 00 00 00 
2620 "n<5" 00 i151 00 00 00 00 03 
2621 "n<5" 58 00 00 00 00 
2622 "n<5" 00 i247 00 00 00 00 03 
2623 "n<5" 58 00 00 00 00 
2624 "n<5" 00 57 i1 00 00 00 03 
2625 "n<5" 58 00 00 00 00 
2626 "n<5" 00 i63 00 00 00 00 03 
2627 "n<5" 58 00 00 00 00 
2628 "n<5" 00 i159 00 00 00 00 03 
2629 "n<5" 58 00 00 00 00 
2630 "n<5" 00 i255 00 00 00 00 03 
2631 "n<5" 58 00 00 00 00 
2632 "n<5" 00 5f i1 00 00 00 03 
2633 "n<5" 58 00 00 00 00 
2634 "n<5" 00 i71 00 00 00 00 03 
2635 "n<5" 58 00 00 00 00 
2636 "n<5" 00 i167 00 00 00 00 03 
2637 "n<5" 58 00 00 00 00 
2638 "n<5" 00 07 i1 00 00 00 03 
2639 "n<5" 58 00 00 00 00 
2640 "n<5" 00 67 i1 00 00 00 03 
2641 "n<5" 58 00 00 00 00 
2642 "n<5" 00 i79 00 00 00 00 03 
2643 "n<5" 58 00 00 00 00 
2644 "n<5" 00 i175 00 00 00 00 03 
2645 "n<5" 58 00 00 00 00 
2646 "n<5" 00 0f i1 00 00 00 03 
2647 "n<5" 58 00 00 00 00 
2648 "n<5" 00 6f i1 00 00 00 03 
2649 "n<5" 58 00 00 00 00 
2650 "n<5" 00 i87 00 00 00 00 03 
2651 "n<5" 58 00 00 00 00 
2652 "n<5" 00 i183 00 00 00 00 03 
2653 "n<5" 58 00 00 00 00 
2654 "n<5" 00 17 i1 00 00 00 03 
2655 "n<5" 58 00 00 00 00 
2656 "n<5" 00 77 i1 00 00 00 03 
2657 "n<5" 58 00 00 00 00 
2658 "n<5" 00 
2659
2660
2661 Substitutions
2662 -------------
2663
2664 The primary format specifier for substitution 1 is ^1.
2665
2666 Substitutions with multiple values take the form [:^1:]1, where ]1
2667 references substitution 1 and ^1 refers to the first value within the
2668 substitution.  The : are mandatory even though not apparently useful.
2669
2670 There can be extra text, e.g. [:^1\n:]1.
2671
2672 Substitutions with two forms for multiple values are written as [%1:, ^1:]1.
2673
2674 The general form appears to be [a:b:]x.  Apparently, % is used in a and
2675 ^ is used in b, but there's no obvious reason why.
2676
2677 Substitutions can take two values at a time, like: [:^1 = ^2:]1
2678 but more often there would be two forms: [%1 = %2:, ^1 = ^2:]1.
2679 A literal : is written \:
2680 Presumably a literal ^ is written \^ but there are no examples.
2681
2682 WM is constant when Age = 19.00. It will be included in any boxplots produced but other output will be omitted.
2683     <template format="^1 is constant when [%1 = %2:, ^1 = ^2:]2. It will be included in any boxplots produced but other output will be omitted.">
2684         <substitution index="1">
2685             <variable name="meaning14" label="level of enjoyment"/>
2686         </substitution>
2687         <substitution index="2">
2688             <variable name="meaning13" label="none of these"/>
2689             <numeric-datum value="1" format="F40.2" variable="meaning13"/>
2690         </substitution>
2691     </template>
2692  
2693
2694 <template format="[:^1\n:]1">
2695     <substitution index="1">
2696         <string c="FREQUENCIES VARIABLES=can_trt0 can_trt1 can_trt2 can_trt3 can_trt4 can_trt5 can_trt6"/>
2697         <string c="  /STATISTICS=STDDEV RANGE MINIMUM MAXIMUM MEAN MEDIAN MODE SUM"/>
2698         <string c="  /HISTOGRAM"/>
2699         <string c="  /ORDER=ANALYSIS."/>
2700     </substitution>
2701 </template>
2702
2703 Design: Intercept
2704 Within Subjects Design: Looks+Charisma+Looks*Charisma
2705     <string c="Mauchly's Test of Sphericity"/>
2706     <template format="Design\: [:^1:]1 \n Within Subjects Design\: [:^1:]2">
2707         <substitution index="1">
2708             <string c="Intercept"/>
2709             <string c=" + "/>
2710             <variable name="Lakes"/>
2711             <string c=" + "/>
2712             <variable name="Treatments"/>
2713         </substitution>
2714         <substitution index="2">
2715             <string c="Time"/>
2716         </substitution>
2717     </template>
2718
2719 <footnote index="0">
2720     <special0 template="Predictors\: (constant) [%1:, ^1:]1..."/>
2721 <template format="Predyktory\: (Stała), [%1:, ^1:]1">
2722         <substitution index="1">
2723             <variable name="PPZśrednia"/>
2724         </substitution>
2725     </template>
2726 </footnote>
2727
2728 Dependent Variable: Num_Diagnostic
2729 Model: (Intercept), functdent, Sex, nursebeds, BaseAge, offset = log_period_yr
2730     <string c="Omnibus Test"/>
2731     <template format="Dependent Variable\: ^1\nModel\: [%1:, ^1:]2">
2732         <substitution index="1">
2733             <variable name="Condom_Casual" label="4. How often have you used condoms when you had sex with casual partners?"/>
2734         </substitution>
2735         <substitution index="2">
2736             <string c="(Intercept)"/>
2737             <string c="Greek"/>
2738             <string c="Winning"/>
2739             <string c="Emotion"/>
2740             <string c="Violence"/>
2741             <string c="Risk"/>
2742             <string c="Power"/>
2743             <string c="Playboy"/>
2744             <string c="Reliance"/>
2745             <string c="Primacy"/>
2746             <string c="heterosexual_presentation"/>
2747             <string c="sensation_seeking"/>
2748             <string c="Impulsivity"/>
2749             <string c="Quantity_alc"/>
2750         </substitution>
2751     </template>
2752
2753 Error(Time)
2754     <string c="Tests of Within-Subjects Contrasts"/>
2755     <template format="Error([%1:*^1:]1)">
2756         <substitution index="1">
2757             <string c="Time"/>
2758         </substitution>
2759     </template>
2760