-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathreadme.htm
3051 lines (2955 loc) · 148 KB
/
readme.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
<meta name=Generator content="Microsoft Word 14 (filtered)">
<title>Annual and Quarterly Financial Statements (AQFS)</title>
<style>
<!--
/* Font Definitions */
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:Wingdings;
panose-1:5 0 0 0 0 0 0 0 0 0;}
@font-face
{font-family:Cambria;
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Tahoma;
panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
{font-family:Verdana;
panose-1:2 11 6 4 3 5 4 4 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
h1
{mso-style-link:"Heading 1 Char";
margin-top:24.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.3in;
margin-bottom:.0001pt;
text-indent:-.3in;
line-height:115%;
page-break-after:avoid;
font-size:14.0pt;
font-family:"Cambria","serif";
color:#365F91;}
h2
{mso-style-link:"Heading 2 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.4in;
margin-bottom:.0001pt;
text-indent:-.4in;
line-height:115%;
page-break-after:avoid;
font-size:13.0pt;
font-family:"Cambria","serif";
color:#4F81BD;}
h3
{mso-style-link:"Heading 3 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
text-indent:-.5in;
line-height:115%;
page-break-after:avoid;
font-size:9.0pt;
font-family:"Cambria","serif";
color:#4F81BD;}
h4
{mso-style-link:"Heading 4 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.6in;
margin-bottom:.0001pt;
text-indent:-.6in;
line-height:115%;
page-break-after:avoid;
font-size:9.0pt;
font-family:"Cambria","serif";
color:#4F81BD;
font-style:italic;}
h5
{mso-style-link:"Heading 5 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.7in;
margin-bottom:.0001pt;
text-indent:-.7in;
line-height:115%;
page-break-after:avoid;
font-size:9.0pt;
font-family:"Cambria","serif";
color:#243F60;
font-weight:normal;}
h6
{mso-style-link:"Heading 6 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.8in;
margin-bottom:.0001pt;
text-indent:-.8in;
line-height:115%;
page-break-after:avoid;
font-size:9.0pt;
font-family:"Cambria","serif";
color:#243F60;
font-weight:normal;
font-style:italic;}
p.MsoHeading7, li.MsoHeading7, div.MsoHeading7
{mso-style-link:"Heading 7 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:.9in;
margin-bottom:.0001pt;
text-indent:-.9in;
line-height:115%;
page-break-after:avoid;
font-size:9.0pt;
font-family:"Cambria","serif";
color:#404040;
font-style:italic;}
p.MsoHeading8, li.MsoHeading8, div.MsoHeading8
{mso-style-link:"Heading 8 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:1.0in;
margin-bottom:.0001pt;
text-indent:-1.0in;
line-height:115%;
page-break-after:avoid;
font-size:10.0pt;
font-family:"Cambria","serif";
color:#404040;}
p.MsoHeading9, li.MsoHeading9, div.MsoHeading9
{mso-style-link:"Heading 9 Char";
margin-top:10.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:1.1in;
margin-bottom:.0001pt;
text-indent:-1.1in;
line-height:115%;
page-break-after:avoid;
font-size:10.0pt;
font-family:"Cambria","serif";
color:#404040;
font-style:italic;}
p.MsoToc1, li.MsoToc1, div.MsoToc1
{margin:0in;
margin-bottom:.0001pt;
font-size:9.0pt;
font-family:"Verdana","sans-serif";
font-style:italic;}
p.MsoToc2, li.MsoToc2, div.MsoToc2
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.15in;
margin-bottom:.0001pt;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoToc3, li.MsoToc3, div.MsoToc3
{margin-top:0in;
margin-right:0in;
margin-bottom:5.0pt;
margin-left:22.0pt;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoFootnoteText, li.MsoFootnoteText, div.MsoFootnoteText
{mso-style-link:"Footnote Text Char";
margin:0in;
margin-bottom:.0001pt;
font-size:10.0pt;
font-family:"Verdana","sans-serif";}
p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
{mso-style-link:"Comment Text Char";
margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
font-size:10.0pt;
font-family:"Verdana","sans-serif";}
p.MsoHeader, li.MsoHeader, div.MsoHeader
{mso-style-link:"Header Char";
margin:0in;
margin-bottom:.0001pt;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoFooter, li.MsoFooter, div.MsoFooter
{mso-style-link:"Footer Char";
margin:0in;
margin-bottom:.0001pt;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoCaption, li.MsoCaption, div.MsoCaption
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
page-break-after:avoid;
font-size:9.0pt;
font-family:"Verdana","sans-serif";
color:#4F81BD;
font-weight:bold;}
p.MsoTof, li.MsoTof, div.MsoTof
{margin:0in;
margin-bottom:.0001pt;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
span.MsoFootnoteReference
{vertical-align:super;}
p.MsoTitle, li.MsoTitle, div.MsoTitle
{mso-style-link:"Title Char";
margin-top:0in;
margin-right:0in;
margin-bottom:15.0pt;
margin-left:0in;
border:none;
padding:0in;
font-size:26.0pt;
font-family:"Cambria","serif";
color:#17365D;
letter-spacing:.25pt;}
p.MsoTitleCxSpFirst, li.MsoTitleCxSpFirst, div.MsoTitleCxSpFirst
{mso-style-link:"Title Char";
margin:0in;
margin-bottom:.0001pt;
border:none;
padding:0in;
font-size:26.0pt;
font-family:"Cambria","serif";
color:#17365D;
letter-spacing:.25pt;}
p.MsoTitleCxSpMiddle, li.MsoTitleCxSpMiddle, div.MsoTitleCxSpMiddle
{mso-style-link:"Title Char";
margin:0in;
margin-bottom:.0001pt;
border:none;
padding:0in;
font-size:26.0pt;
font-family:"Cambria","serif";
color:#17365D;
letter-spacing:.25pt;}
p.MsoTitleCxSpLast, li.MsoTitleCxSpLast, div.MsoTitleCxSpLast
{mso-style-link:"Title Char";
margin-top:0in;
margin-right:0in;
margin-bottom:15.0pt;
margin-left:0in;
border:none;
padding:0in;
font-size:26.0pt;
font-family:"Cambria","serif";
color:#17365D;
letter-spacing:.25pt;}
p.MsoSubtitle, li.MsoSubtitle, div.MsoSubtitle
{mso-style-link:"Subtitle Char";
margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
line-height:115%;
font-size:12.0pt;
font-family:"Cambria","serif";
color:#4F81BD;
letter-spacing:.75pt;
font-style:italic;}
a:link, span.MsoHyperlink
{color:blue;
text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
{color:purple;
text-decoration:underline;}
p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
{mso-style-link:"Comment Subject Char";
margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:0in;
font-size:10.0pt;
font-family:"Verdana","sans-serif";
font-weight:bold;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
{mso-style-link:"Balloon Text Char";
margin:0in;
margin-bottom:.0001pt;
font-size:8.0pt;
font-family:"Tahoma","sans-serif";}
span.MsoPlaceholderText
{color:gray;}
p.MsoNoSpacing, li.MsoNoSpacing, div.MsoNoSpacing
{mso-style-link:"No Spacing Char";
margin:0in;
margin-bottom:.0001pt;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoRMPane, li.MsoRMPane, div.MsoRMPane
{margin:0in;
margin-bottom:.0001pt;
font-size:11.0pt;
font-family:"Calibri","sans-serif";}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:.5in;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoListParagraphCxSpFirst, li.MsoListParagraphCxSpFirst, div.MsoListParagraphCxSpFirst
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoListParagraphCxSpMiddle, li.MsoListParagraphCxSpMiddle, div.MsoListParagraphCxSpMiddle
{margin-top:0in;
margin-right:0in;
margin-bottom:0in;
margin-left:.5in;
margin-bottom:.0001pt;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
p.MsoListParagraphCxSpLast, li.MsoListParagraphCxSpLast, div.MsoListParagraphCxSpLast
{margin-top:0in;
margin-right:0in;
margin-bottom:10.0pt;
margin-left:.5in;
line-height:115%;
font-size:9.0pt;
font-family:"Verdana","sans-serif";}
span.MsoSubtleEmphasis
{color:gray;
font-style:italic;}
p.MsoTocHeading, li.MsoTocHeading, div.MsoTocHeading
{margin-top:24.0pt;
margin-right:0in;
margin-bottom:0in;
margin-left:0in;
margin-bottom:.0001pt;
line-height:115%;
page-break-after:avoid;
font-size:14.0pt;
font-family:"Cambria","serif";
color:#365F91;
font-weight:bold;}
span.BalloonTextChar
{mso-style-name:"Balloon Text Char";
mso-style-link:"Balloon Text";
font-family:"Tahoma","sans-serif";}
p.SP13323699, li.SP13323699, div.SP13323699
{mso-style-name:"SP\.13\.323699";
margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Arial","sans-serif";}
p.SP13323702, li.SP13323702, div.SP13323702
{mso-style-name:"SP\.13\.323702";
margin:0in;
margin-bottom:.0001pt;
text-autospace:none;
font-size:12.0pt;
font-family:"Arial","sans-serif";}
span.SC132508
{mso-style-name:"SC\.13\.2508";
color:black;}
span.FootnoteTextChar
{mso-style-name:"Footnote Text Char";
mso-style-link:"Footnote Text";}
span.HeaderChar
{mso-style-name:"Header Char";
mso-style-link:Header;}
span.FooterChar
{mso-style-name:"Footer Char";
mso-style-link:Footer;}
span.TitleChar
{mso-style-name:"Title Char";
mso-style-link:Title;
font-family:"Cambria","serif";
color:#17365D;
letter-spacing:.25pt;}
span.SubtitleChar
{mso-style-name:"Subtitle Char";
mso-style-link:Subtitle;
font-family:"Cambria","serif";
color:#4F81BD;
letter-spacing:.75pt;
font-style:italic;}
span.Heading1Char
{mso-style-name:"Heading 1 Char";
mso-style-link:"Heading 1";
font-family:"Cambria","serif";
color:#365F91;
font-weight:bold;}
span.Heading2Char
{mso-style-name:"Heading 2 Char";
mso-style-link:"Heading 2";
font-family:"Cambria","serif";
color:#4F81BD;
font-weight:bold;}
span.Heading3Char
{mso-style-name:"Heading 3 Char";
mso-style-link:"Heading 3";
font-family:"Cambria","serif";
color:#4F81BD;
font-weight:bold;}
span.Heading4Char
{mso-style-name:"Heading 4 Char";
mso-style-link:"Heading 4";
font-family:"Cambria","serif";
color:#4F81BD;
font-weight:bold;
font-style:italic;}
span.Heading5Char
{mso-style-name:"Heading 5 Char";
mso-style-link:"Heading 5";
font-family:"Cambria","serif";
color:#243F60;}
span.Heading6Char
{mso-style-name:"Heading 6 Char";
mso-style-link:"Heading 6";
font-family:"Cambria","serif";
color:#243F60;
font-style:italic;}
span.Heading7Char
{mso-style-name:"Heading 7 Char";
mso-style-link:"Heading 7";
font-family:"Cambria","serif";
color:#404040;
font-style:italic;}
span.Heading8Char
{mso-style-name:"Heading 8 Char";
mso-style-link:"Heading 8";
font-family:"Cambria","serif";
color:#404040;}
span.Heading9Char
{mso-style-name:"Heading 9 Char";
mso-style-link:"Heading 9";
font-family:"Cambria","serif";
color:#404040;
font-style:italic;}
span.NoSpacingChar
{mso-style-name:"No Spacing Char";
mso-style-link:"No Spacing";
font-family:"Verdana","sans-serif";}
span.CommentTextChar
{mso-style-name:"Comment Text Char";
mso-style-link:"Comment Text";}
span.CommentSubjectChar
{mso-style-name:"Comment Subject Char";
mso-style-link:"Comment Subject";
font-weight:bold;}
.MsoChpDefault
{font-family:"Calibri","sans-serif";}
.MsoPapDefault
{margin-bottom:10.0pt;
line-height:115%;}
/* Page Definitions */
@page WordSection1
{size:8.5in 11.0in;
margin:1.0in .75in 1.0in .75in;}
div.WordSection1
{page:WordSection1;}
/* List Definitions */
ol
{margin-bottom:0in;}
ul
{margin-bottom:0in;}
-->
</style>
</head>
<body lang=EN-US link=blue vlink=purple>
<div class=WordSection1>
<p class=MsoTocHeading><span style='font-size:26.0pt;line-height:115%;
color:#17365D;letter-spacing:.25pt;font-weight:normal'>Annual and Quarterly
Financial Statements (AQFS)</span></p>
<p class=MsoTocHeading>Contents</p>
<p class=MsoToc1><a href="#_Toc407035363">1<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;font-style:normal;
text-decoration:none'> </span>Overview<span style='color:windowtext;
display:none;text-decoration:none'>.. </span><span
style='color:windowtext;display:none;text-decoration:none'>1</span></a></p>
<p class=MsoToc1><a href="#_Toc407035364">2<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;font-style:normal;
text-decoration:none'> </span>Scope<span style='color:windowtext;
display:none;text-decoration:none'>. </span><span
style='color:windowtext;display:none;text-decoration:none'>2</span></a></p>
<p class=MsoToc1><a href="#_Toc407035365">3<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;font-style:normal;
text-decoration:none'> </span>Organization<span style='color:windowtext;
display:none;text-decoration:none'>. </span><span
style='color:windowtext;display:none;text-decoration:none'>2</span></a></p>
<p class=MsoToc1><a href="#_Toc407035366">4<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;font-style:normal;
text-decoration:none'> </span>File Formats<span style='color:windowtext;
display:none;text-decoration:none'>. </span><span
style='color:windowtext;display:none;text-decoration:none'>3</span></a></p>
<p class=MsoToc1><a href="#_Toc407035367">5<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;font-style:normal;
text-decoration:none'> </span>Table Definitions<span style='color:windowtext;
display:none;text-decoration:none'>. </span><span
style='color:windowtext;display:none;text-decoration:none'>3</span></a></p>
<p class=MsoToc2><a href="#_Toc407035368">5.1<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;text-decoration:none'> </span>SUB
(Submissions)<span style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>3</span></a></p>
<p class=MsoToc2><a href="#_Toc407035369">5.2<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;text-decoration:none'> </span>TAG
(Tags)<span style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>7</span></a></p>
<p class=MsoToc2><a href="#_Toc407035370">5.3<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;text-decoration:none'> </span>NUM
(Numbers)<span style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>7</span></a></p>
<p class=MsoToc2><a href="#_Toc407035371">5.4<span style='font-size:11.0pt;
font-family:"Calibri","sans-serif";color:windowtext;text-decoration:none'> </span>PRE
(Presentation of Statements)<span style='color:windowtext;display:none;
text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>8</span></a></p>
<p class=MsoNormal> </p>
<p class=MsoTof><a href="#_Toc407035372">Figure 1. Data relationships<span
style='color:windowtext;display:none;text-decoration:none'>. </span><span
style='color:windowtext;display:none;text-decoration:none'>3</span></a></p>
<p class=MsoTof><a href="#_Toc407035373">Figure 2. Fields in the SUB data set<span
style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>4</span></a></p>
<p class=MsoTof><a href="#_Toc407035374">Figure 3. Fields in the TAG data set<span
style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>7</span></a></p>
<p class=MsoTof><a href="#_Toc407035375">Figure 4. Fields in the NUM data set<span
style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>8</span></a></p>
<p class=MsoTof><a href="#_Toc407035376">Figure 5. Fields in the PRE data set<span
style='color:windowtext;display:none;text-decoration:none'> </span><span
style='color:windowtext;display:none;text-decoration:none'>8</span></a></p>
<p class=MsoNormal> </p>
<h1><a name="_Toc407035363">1<span style='font:7.0pt "Times New Roman"'>
</span>Overview</a></h1>
<p class=MsoNormal>The following data sets provide information extracted from
EX-101 attachments submitted to the Commission in a flattened data format to
assist users in more easily consuming the data for analysis. The data is
sourced from selected information found in the XBRL tagged financial statements
submitted by filers to the Commission. These data sets currently include
quarterly and annual numeric data appearing in the primary financial statements
submitted by filers. Certain additional fields (e.g. Standard Industrial
Classification (SIC)) used in the Commissions EDGAR system are also included
to help in supporting the use of the data. The information has been taken
directly from submissions created by each registrant, and the data is as
filed by the registrant. The information will be updated quarterly. Data
contained in documents filed after 5:30pm EST on the last business day of the
quarter will be included in the next quarterly posting. </p>
<p class=MsoNormal>DISCLAIMER: The Annual and Quarterly Financial Statement
Reports contain information derived from XBRL data filed with the Commission by
individual registrants as well as Commission generated filing identifiers.
Because the reports are based on information provided by individual
registrants, we cannot guarantee their accuracy. In addition, the Reports do
not reflect all information, including certain associated XBRL metadata,
included with Commission filings. The reports are intended to assist the public
in analyzing XBRL data contained in Commission filings; however, they are not a
substitute for such filings. Investors should review the full Commission
filings before making any investment decision.</p>
<p class=MsoNormal>The data extracted from the XBRL submissions is organized
into four data sets containing information about submissions, numbers, taxonomy
tags, and presentation. Each data set consists of rows and columns, and is
provided as a tab-delimited TXT format file. The data sets are as follows:</p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><b>SUB</b> Submission data set; this includes one record for
each XBRL submission. The set includes fields of information pertinent to the submission
and the filing entity. Information is extracted from the SECs EDGAR system and
the filings submitted to the SEC by registrants.</p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><b>NUM</b> Number data set; this includes one row for each
distinct amount from each submission included in the SUB data set. The Number
data set includes, for every submission, for each primary financial statement
as it is rendered by the SEC Viewer/Previewer, all line item values.</p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><b>TAG</b> Tag data set; includes defining information about each
tag. Information includes tag descriptions (documentation labels), taxonomy version
information and other tag attributes.</p>
<p class=MsoListParagraphCxSpLast style='text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><b>PRE</b> Presentation data set; this provides information
about how the tags and numbers were presented in the primary financial
statements.</p>
<h1><a name="_Toc407035364">2<span style='font:7.0pt "Times New Roman"'>
</span>Scope</a></h1>
<p class=MsoNormal>The scope of the data in the financial statement data sets
consists of:</p>
<p class=MsoListParagraphCxSpFirst style='margin-left:.25in;text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span>Numeric data on the primary financial statements (Balance Sheet,
Income Statement, Cash Flows, Changes in Equity, and Comprehensive Income) and
page footnotes on those statements; </p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:.25in;text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span>From interactive data attachments (XBRL) to forms 10-K, 10-K/A, 10-KT,
10-KT/A, 10-Q, 10-Q/A, 10-QT, 20-F, 20-F/A, 40-F, 40-F/A, 6-K, or 6-K/A; </p>
<p class=MsoListParagraphCxSpLast style='margin-left:.25in;text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span>Submitted from 4/15/2009 through the Data Cutoff Date inclusive
(there is a file named 2009q1.zip on the SEC website that contains data sets
with column headings only and no rows, merely so that all years prior to this
year will consist of four zip files).</p>
<p class=MsoNormal>All numeric data is as filed. </p>
<h1><a name="_Toc407035365"></a><a name="_Toc367778230">3<span
style='font:7.0pt "Times New Roman"'>
</span>Organization</a></h1>
<p class=MsoNormal>Note that this data set represents quarterly and annual uncorrected
and as filed EDGAR document submissions containing multiple reporting periods
(including amendments of prior submissions). Data in this submitted form may contain
redundancies, inconsistencies, and discrepancies relative to other publication
formats. There are four data sets.</p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'>1.<span
style='font:7.0pt "Times New Roman"'> </span>SUB is identifies
all the EDGAR submissions in the data set, with each row having the unique (primary)
key <b>adsh, </b> a 20 character EDGAR Accession Number with dashes in
positions 11 and 14.</p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in'>2.<span
style='font:7.0pt "Times New Roman"'> </span>TAG is a data
set of all tags used in the submissions, both standard and custom. A unique
key of each row is a combination of these fields:</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>1)<span
style='font:7.0pt "Times New Roman"'> </span><b>tag </b>tag
used by the filer</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>2)<span
style='font:7.0pt "Times New Roman"'> </span><b>version</b>
if a standard tag, the taxonomy of origin, otherwise equal to adsh.</p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in'>3.<span
style='font:7.0pt "Times New Roman"'> </span>NUM is a data
set of all numeric XBRL facts presented on the primary financial statements. A unique
key of each row is a combination of the following fields:</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>1)<span
style='font:7.0pt "Times New Roman"'> </span><b>adsh</b>- EDGAR
accession number </p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>2)<span
style='font:7.0pt "Times New Roman"'> </span><b>tag </b>tag
used by the filer</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>3)<span
style='font:7.0pt "Times New Roman"'> </span><b>version</b>
if a standard tag, the taxonomy of origin, otherwise equal to adsh.</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>4)<span
style='font:7.0pt "Times New Roman"'> </span><b>ddate</b> - period
end date</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>5)<span
style='font:7.0pt "Times New Roman"'> </span><b>qtrs</b> - duration
in number of quarters</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>6)<span
style='font:7.0pt "Times New Roman"'> </span><b>uom -</b> unit
of measure </p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>7)<span
style='font:7.0pt "Times New Roman"'> </span><b>coreg -</b> coregistrant
of the parent company registrant (if applicable)</p>
<p class=MsoListParagraphCxSpMiddle style='text-indent:-.25in'>4.<span
style='font:7.0pt "Times New Roman"'> </span>PRE is a data
set that provides the text assigned by the filer to each line item in the
primary financial statements, the order in which the line item appeared, and
the tag assigned to it. A unique key of each row is a combination of the
following fields:</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>1)<span
style='font:7.0pt "Times New Roman"'> </span><b>adsh </b>EDGAR
accession number</p>
<p class=MsoListParagraphCxSpMiddle style='margin-left:1.0in;text-indent:-.25in'>2)<span
style='font:7.0pt "Times New Roman"'> </span><b>report</b>
sequential number of report within the statements</p>
<p class=MsoListParagraphCxSpLast style='margin-left:1.0in;text-indent:-.25in'>3)<span
style='font:7.0pt "Times New Roman"'> </span><b>line</b>
sequential number of line within a report.</p>
<p class=MsoNormal>The relationship of the data sets is as shown in Figure 1. The Accession Number (<b>adsh)</b> found in the NUM data set can be used to
retrieve information about the submission in SUB. Each row of data in NUM was
tagged by the filer using a tag. Information about the tag used can be found in
TAG. Each row of data in NUM appears on one or more lines of reports detailed
in PRE.</p>
<p class=MsoCaption><a name="_Toc407035372"></a><a name="_Toc367778100"></a><a
name="_Ref367881788">Figure </a>1. Data relationships</p>
<div align=center>
<table class=MsoTableLightListAccent1 border=1 cellspacing=0 cellpadding=0
style='border-collapse:collapse;border:none'>
<tr>
<td width=68 valign=bottom style='width:50.7pt;border-top:solid #4F81BD 1.0pt;
border-left:solid #4F81BD 1.0pt;border-bottom:none;border-right:none;
background:#4F81BD;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b><span style='color:white'>Dataset</span></b></p>
</td>
<td width=126 valign=bottom style='width:94.2pt;border:solid #4F81BD 1.0pt;
border-bottom:none;background:#4F81BD;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b><span style='color:white'>Columns
referencing other datasets</span></b></p>
</td>
<td width=110 valign=bottom style='width:82.2pt;border:none;border-top:solid #4F81BD 1.0pt;
background:#4F81BD;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b><span style='color:white'>Referenced
dataset</span></b></p>
</td>
<td width=131 valign=bottom style='width:98.2pt;border:solid #4F81BD 1.0pt;
border-bottom:none;background:#4F81BD;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b><span style='color:white'>Referenced
columns</span></b></p>
</td>
</tr>
<tr>
<td width=68 nowrap rowspan=2 valign=top style='width:50.7pt;border-top:solid #4F81BD 1.0pt;
border-left:solid #4F81BD 1.0pt;border-bottom:none;border-right:none;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b>NUM</b></p>
</td>
<td width=126 nowrap valign=top style='width:94.2pt;border:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>adsh</p>
</td>
<td width=110 nowrap valign=top style='width:82.2pt;border-top:solid #4F81BD 1.0pt;
border-left:none;border-bottom:solid #4F81BD 1.0pt;border-right:none;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>SUB</p>
</td>
<td width=131 nowrap valign=top style='width:98.2pt;border:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>adsh</p>
</td>
</tr>
<tr>
<td width=126 nowrap valign=top style='width:94.2pt;border-top:none;
border-left:solid #4F81BD 1.0pt;border-bottom:none;border-right:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>tag, version</p>
</td>
<td width=110 nowrap valign=top style='width:82.2pt;border:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>TAG</p>
</td>
<td width=131 nowrap valign=top style='width:98.2pt;border-top:none;
border-left:solid #4F81BD 1.0pt;border-bottom:none;border-right:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>tag, version</p>
</td>
</tr>
<tr>
<td width=68 nowrap rowspan=3 valign=top style='width:50.7pt;border:solid #4F81BD 1.0pt;
border-right:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'><b>PRE</b></p>
</td>
<td width=126 nowrap valign=top style='width:94.2pt;border:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>adsh</p>
</td>
<td width=110 nowrap valign=top style='width:82.2pt;border-top:solid #4F81BD 1.0pt;
border-left:none;border-bottom:solid #4F81BD 1.0pt;border-right:none;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>SUB</p>
</td>
<td width=131 nowrap valign=top style='width:98.2pt;border:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>adsh</p>
</td>
</tr>
<tr>
<td width=126 nowrap valign=top style='width:94.2pt;border-top:none;
border-left:solid #4F81BD 1.0pt;border-bottom:none;border-right:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>tag, version</p>
</td>
<td width=110 nowrap valign=top style='width:82.2pt;border:none;padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>TAG</p>
</td>
<td width=131 nowrap valign=top style='width:98.2pt;border-top:none;
border-left:solid #4F81BD 1.0pt;border-bottom:none;border-right:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>tag, version</p>
</td>
</tr>
<tr>
<td width=126 nowrap valign=top style='width:94.2pt;border:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>adsh, tag, version</p>
</td>
<td width=110 nowrap valign=top style='width:82.2pt;border-top:solid #4F81BD 1.0pt;
border-left:none;border-bottom:solid #4F81BD 1.0pt;border-right:none;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>NUM</p>
</td>
<td width=131 nowrap valign=top style='width:98.2pt;border:solid #4F81BD 1.0pt;
padding:0in 5.4pt 0in 5.4pt'>
<p class=MsoNormal align=center style='margin-bottom:0in;margin-bottom:.0001pt;
text-align:center;line-height:normal'>adsh, tag, version</p>
</td>
</tr>
</table>
</div>
<p class=MsoNormal> </p>
<p class=MsoNormal><a name="_Toc367778231">Note: The SEC website folder
http://www.sec.gov/Archives/edgar/data/{<b>cik</b>}/{<b>accession</b>}/ will
always contain all the files for a given submission, where {<b>accession</b>}
is the <b>adsh</b> with the -characters removed.</a></p>
<h1><a name="_Toc407035366">4<span style='font:7.0pt "Times New Roman"'>
</span>File Formats</a></h1>
<p class=MsoNormal style='page-break-after:avoid'>Each of the four data sets is
provided in a single encoding, as follows:</p>
<p class=MsoNormal style='margin-left:.3in'>Tab Delimited Value (.txt): utf-8, tab-delimited,
\n- terminated lines, with the first line containing the column names in
lowercase.</p>
<h1><a name="_Toc407035367"></a><a name="_Toc367778232">5<span
style='font:7.0pt "Times New Roman"'>
</span>Table Definitions</a></h1>
<p class=MsoNormal>The columns in the figures below (figures 2 5) provide the
following information: field name, description, source, data format, maximum field
size, an indication of whether or not the field may be NULL (yes or no), and key.
</p>
<p class=MsoNormal>The Source column has two possible values:</p>
<p class=MsoListParagraphCxSpFirst style='margin-left:38.25pt;text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span>EDGAR indicates that the source of the data is the filers EDGAR
submission header.</p>
<p class=MsoListParagraphCxSpLast style='margin-left:38.25pt;text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span>XBRL indicates that the source of the data is the filers EX-101
(XBRL) attachments.</p>
<p class=MsoNormal>The Key column indicates whether the field is part of a
unique index on the data. There are two possible values for this column:</p>
<p class=MsoListParagraphCxSpFirst style='text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span><span style='font-size:12.0pt;line-height:115%'>*</span> Indicates
the field is part of a unique key for the row. </p>
<p class=MsoListParagraphCxSpLast style='text-indent:-.25in'><span
style='font-family:Symbol'>·<span style='font:7.0pt "Times New Roman"'>
</span></span>Empty (nothing in column) the column is a function of all or
some of a unique key.</p>
<h2><a name="_Toc407035368"></a><a name="_Ref367882393"></a><a
name="_Toc367778233">5.1<span style='font:7.0pt "Times New Roman"'>
</span>SUB (Submissions)</a></h2>
<p class=MsoNormal>The submissions data set contains summary information about an
entire EDGAR submission. Some fields were sourced directly from EDGAR submission
information, while other columns of data were sourced from the Interactive Data
attachments of the submission. Note: EDGAR derived fields represent the most
recent EDGAR assignment as of a given filings submission date and do not
necessarily represent the most current assignments. </p>
<p class=MsoCaption><a name="_Toc407035373"></a><a name="_Toc367778102">Figure </a>2. Fields in the SUB data set</p>
<table class=MsoTableLightListAccent1 border=1 cellspacing=0 cellpadding=0
style='border-collapse:collapse;border:none'>
<thead>
<tr style='page-break-inside:avoid'>
<td valign=bottom style='border:solid #4F81BD 1.0pt;background:#4F81BD;
padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>Field Name</span></b></p>
</td>
<td valign=bottom style='border:solid #4F81BD 1.0pt;border-left:none;
background:#4F81BD;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>Field Description</span></b></p>
</td>
<td valign=bottom style='border:solid #4F81BD 1.0pt;border-left:none;
background:#4F81BD;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>Source</span></b></p>
</td>
<td valign=bottom style='border:solid #4F81BD 1.0pt;border-left:none;
background:#4F81BD;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>Format</span></b></p>
</td>
<td valign=bottom style='border:solid #4F81BD 1.0pt;border-left:none;
background:#4F81BD;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>Max Size</span></b></p>
</td>
<td valign=bottom style='border:solid #4F81BD 1.0pt;border-left:none;
background:#4F81BD;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>May be NULL</span></b></p>
</td>
<td valign=bottom style='border:solid #4F81BD 1.0pt;border-left:none;
background:#4F81BD;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing align=center style='text-align:center'><b><span
style='color:white'>Key</span></b></p>
</td>
</tr>
</thead>
<tr style='page-break-inside:avoid'>
<td valign=top style='border:solid #4F81BD 1.0pt;border-top:none;padding:
1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing><b>adsh</b></p>
</td>
<td valign=top style='border-top:none;border-left:none;border-bottom:solid #4F81BD 1.0pt;
border-right:solid #4F81BD 1.0pt;padding:1.45pt 5.75pt 1.45pt 5.75pt'>
<p class=MsoNoSpacing>Accession Number. The 20-character string formed from