forked from altova/SECDB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSECdb.mtd
3875 lines (3875 loc) · 269 KB
/
SECdb.mtd
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
<?xml version="1.0" encoding="UTF-8"?>
<MobileTogetherDesign versionClient="49" versionServer="49" deploymentPath_so="/public/SECdb" deploymentDescription_so="High-level financial reports automatically extracted from the XBRL filings in the SEC's EDGAR database" deploymentGlobalResourceConfig_so="Default">
<DesignRoot id="1">
<style askCancelWorkflow="0" timeoutClient="60" timeoutDataRetrieval="60" workflowIcon="C:\proj\SECdb\SECdbIcon.png"/>
<children>
<DesignPage id="2" name="FilingsByCompany">
<style autoAddSubmitButton="0" backgroundColor="white"/>
<children>
<DesignTable id="320">
<children>
<DesignTableCol id="321">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableCol id="322"/>
<DesignTableCol id="323">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableCol id="324"/>
<DesignTableCol id="325">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableRow id="326">
<children>
<DesignLabel id="315">
<style name="Label1" text="Name:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignLabel>
<DesignEditField id="316" pageXML="296">
<style backgroundColor="white" margin="1" name="Edit Field1" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignEditField>
<DesignLabel id="317">
<style name="Label2" text="Ticker:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignLabel>
<DesignEditField id="318" pageXML="297">
<style backgroundColor="white" margin="1" name="Edit Field2" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignEditField>
<DesignButton id="319">
<style backgroundColor="silver" name="Button1" text="Search" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="335">
<children>
<DesignActionCtrlClick id="336">
<children>
<DesignActionCondition id="340" condition="$PERSISTENT/Root/Ticker != """>
<children>
<DesignActionConditionTrue id="341">
<children>
<DesignActionUpdateNode id="365" updAt="$PERSISTENT/Root/CIK" resOf=""""/>
<DesignActionUpdateNode id="338" updAt="$PERSISTENT/Root/Ticker" resOf="trim-string( upper-case( $PERSISTENT/Root/Ticker ) )"/>
<DesignActionReloadData id="348" continueOnError_so="1" reloadRef="238">
<children>
<DesignActionOnSuccess id="349">
<children>
<DesignActionCondition id="389" condition="count( $tickers/DB/RowSet/Row ) > 0">
<children>
<DesignActionConditionTrue id="390">
<children>
<DesignActionUpdateNode id="387" updAt="$PERSISTENT/Root/CIK" resOf="$tickers/DB/RowSet/Row/@cikNumber"/>
<DesignActionUpdateNode id="388" updAt="$PERSISTENT/Root/Ticker" resOf=""""/>
<DesignActionGroupRef id="473" groupRef="476"/>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="391">
<children>
<DesignActionMessageBox id="392" msgBoxMsg=""Ticker symbol not found"">
<children>
<DesignActionMessageBoxButton id="393"/>
</children>
</DesignActionMessageBox>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
</children>
</DesignActionOnSuccess>
<DesignActionOnError id="351">
<children>
<DesignActionMessageBox id="352" msgBoxMsg=""DB Error while searching for ticker symbol"">
<children>
<DesignActionMessageBoxButton id="353"/>
</children>
</DesignActionMessageBox>
</children>
</DesignActionOnError>
</children>
</DesignActionReloadData>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="342">
<children>
<DesignActionCondition id="343" condition="$PERSISTENT/Root/Name != """>
<children>
<DesignActionConditionTrue id="344">
<children>
<DesignActionUpdateNode id="364" updAt="$PERSISTENT/Root/CIK" resOf=""""/>
<DesignActionUpdateNode id="339" updAt="$PERSISTENT/Root/Name" resOf="trim-string( upper-case( $PERSISTENT/Root/Name ) ) || "%""/>
<DesignActionReloadData id="367" continueOnError_so="1" reloadRef="379">
<children>
<DesignActionOnSuccess id="368">
<children>
<DesignActionCondition id="394" condition="count( $companies/DB/RowSet/Row ) = 0">
<children>
<DesignActionConditionTrue id="395">
<children>
<DesignActionMessageBox id="396" msgBoxMsg=""No company found that starts with this name"">
<children>
<DesignActionMessageBoxButton id="397"/>
</children>
</DesignActionMessageBox>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="419">
<children>
<DesignActionCondition id="420" condition="count( $companies/DB/RowSet/Row ) = 1">
<children>
<DesignActionConditionTrue id="421">
<children>
<DesignActionUpdateNode id="416" updAt="$PERSISTENT/Root/CIK" resOf="$companies/DB/RowSet/Row/@cikNumber"/>
<DesignActionGroupRef id="474" groupRef="476"/>
</children>
</DesignActionConditionTrue>
</children>
</DesignActionCondition>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
</children>
</DesignActionOnSuccess>
<DesignActionOnError id="369">
<children>
<DesignActionMessageBox id="362" msgBoxMsg=""DB Error while searching for company name"">
<children>
<DesignActionMessageBoxButton id="363"/>
</children>
</DesignActionMessageBox>
</children>
</DesignActionOnError>
</children>
</DesignActionReloadData>
<DesignActionUpdateNode id="370" updAt="$PERSISTENT/Root/Name" resOf=""""/>
</children>
</DesignActionConditionTrue>
</children>
</DesignActionCondition>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignButton>
</children>
</DesignTableRow>
<DesignTableRow id="6421">
<children>
<DesignTableCellEmpty id="6422"/>
<DesignHLine id="6423">
<style name="Horizontal Line15"/>
</DesignHLine>
<DesignTableCellEmpty id="6425"/>
<DesignHLine id="6426">
<style name="Horizontal Line17"/>
</DesignHLine>
<DesignTableCellEmpty id="6428"/>
</children>
</DesignTableRow>
</children>
</DesignTable>
<DesignLabel id="400">
<style name="Label7" text="Please select a company:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium" visible_x="$PERSISTENT/Root/CIK = "" and count( $companies/DB/RowSet/Row ) > 1"/>
</DesignLabel>
<DesignTable id="371">
<style visible_x="$PERSISTENT/Root/CIK = "" and count( $companies/DB/RowSet/Row ) > 1"/>
<children>
<DesignTableCol id="372"/>
<DesignTableRowGroup id="359" pageXML="382">
<style addDelPossible="0"/>
<children>
<DesignTableRow id="360">
<children>
<DesignLabel id="361" pageXML="6430">
<style name="Label4" textColor="black"/>
<controlActions id="373">
<children>
<DesignActionCtrlClick id="374">
<children>
<DesignActionUpdateNode id="375" updAt="$PERSISTENT/Root/CIK" resOf="@cikNumber"/>
<DesignActionGroupRef id="475" groupRef="476"/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
</children>
</DesignTableRow>
</children>
</DesignTableRowGroup>
</children>
</DesignTable>
<DesignTable id="431">
<style visible_x="$PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0"/>
<children>
<DesignTableCol id="432">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableCol id="433"/>
<DesignTableCol id="6377">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableRow id="434">
<children>
<DesignLabel id="428">
<style name="Label8" text="CIK:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignLabel>
<DesignLabel id="426" pageXML="295">
<style name="Label3" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignLabel>
<DesignLabel id="6361">
<style align="left" name="Label614" text="A+" textColor_x="if ( $PERSISTENT/Root/TextSize/Small != "medium" ) then "black" else "gray"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="6378">
<children>
<DesignActionCtrlClick id="6379">
<children>
<DesignActionCondition id="6367" condition="$PERSISTENT/Root/TextSize/Small = "smallest"">
<children>
<DesignActionConditionTrue id="6368">
<children>
<DesignActionUpdateNode id="6363" updAt="$PERSISTENT/Root/TextSize/Small" resOf=""small""/>
<DesignActionUpdateNode id="6364" updAt="$PERSISTENT/Root/TextSize/Medium" resOf=""medium""/>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="6369">
<children>
<DesignActionUpdateNode id="6365" updAt="$PERSISTENT/Root/TextSize/Small" resOf=""medium""/>
<DesignActionUpdateNode id="6366" updAt="$PERSISTENT/Root/TextSize/Medium" resOf=""large""/>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="435">
<children>
<DesignLabel id="429">
<style marginRight="40" name="Label9" text="Company Name:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignLabel>
<DesignLabel id="430" pageXML="189">
<style name="Label10" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
</DesignLabel>
<DesignLabel id="6362">
<style align="left" name="Label615" text="A-" textColor_x="if ( $PERSISTENT/Root/TextSize/Small != "smallest" ) then "black" else "gray"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="6381">
<children>
<DesignActionCtrlClick id="6382">
<children>
<DesignActionCondition id="6370" condition="$PERSISTENT/Root/TextSize/Small = "medium"">
<children>
<DesignActionConditionTrue id="6371">
<children>
<DesignActionUpdateNode id="6372" updAt="$PERSISTENT/Root/TextSize/Small" resOf=""small""/>
<DesignActionUpdateNode id="6373" updAt="$PERSISTENT/Root/TextSize/Medium" resOf=""medium""/>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="6374">
<children>
<DesignActionUpdateNode id="6375" updAt="$PERSISTENT/Root/TextSize/Small" resOf=""smallest""/>
<DesignActionUpdateNode id="6376" updAt="$PERSISTENT/Root/TextSize/Medium" resOf=""small""/>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
</children>
</DesignTableRow>
</children>
</DesignTable>
<DesignTable id="494">
<style visible_x="$PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0"/>
<children>
<DesignTableCol id="495"/>
<DesignTableCol id="496"/>
<DesignTableCol id="497"/>
<DesignTableCol id="498"/>
<DesignTableCol id="499"/>
<DesignTableRow id="500">
<children>
<DesignLabel id="489">
<style name="Label12" text="Income" textColor_x="if ( $PERSISTENT/Root/Selected = "Income" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="517">
<children>
<DesignActionCtrlClick id="518">
<children>
<DesignActionUpdateNode id="519" updAt="$PERSISTENT/Root/Selected" resOf=""Income""/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignLabel id="490">
<style name="Label13" text="Balance" textColor_x="if ( $PERSISTENT/Root/Selected = "Balance" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="513">
<children>
<DesignActionCtrlClick id="514">
<children>
<DesignActionUpdateNode id="515" updAt="$PERSISTENT/Root/Selected" resOf=""Balance""/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignLabel id="491">
<style name="Label14" text="Cash Flow" textColor_x="if ( $PERSISTENT/Root/Selected = "CashFlow" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="509">
<children>
<DesignActionCtrlClick id="510">
<children>
<DesignActionUpdateNode id="511" updAt="$PERSISTENT/Root/Selected" resOf=""CashFlow""/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignLabel id="492">
<style name="Label15" text="Ratios" textColor_x="if ( $PERSISTENT/Root/Selected = "Ratios" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="505">
<children>
<DesignActionCtrlClick id="506">
<children>
<DesignActionUpdateNode id="507" updAt="$PERSISTENT/Root/Selected" resOf=""Ratios""/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignLabel id="493">
<style name="Label16" text="Filings" textColor_x="if ( $PERSISTENT/Root/Selected = "Filings" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Medium"/>
<controlActions id="501">
<children>
<DesignActionCtrlClick id="502">
<children>
<DesignActionUpdateNode id="503" updAt="$PERSISTENT/Root/Selected" resOf=""Filings""/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
</children>
</DesignTableRow>
</children>
</DesignTable>
<DesignTable id="525">
<style visible_x="$PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected != "Filings""/>
<children>
<DesignTableCol id="526">
<style colWidth="15"/>
</DesignTableCol>
<DesignTableCol id="527"/>
<DesignTableCol id="528"/>
<DesignTableCol id="1184">
<style colWidth="20"/>
</DesignTableCol>
<DesignTableRow id="529">
<children>
<DesignLabel id="522">
<style name="Label17" text="View:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="523">
<style name="Label18" text_x="if ( $PERSISTENT/Root/Selected = "Ratios" ) then "Most-recent Quarter" else "Quarterly Data"" textColor_x="if ( $PERSISTENT/Root/View = "Quarterly" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
<controlActions id="533">
<children>
<DesignActionCtrlClick id="534">
<children>
<DesignActionUpdateNode id="535" updAt="$PERSISTENT/Root/View" resOf=""Quarterly""/>
<DesignActionGroupRef id="3083" groupRef="3089"/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignLabel id="524">
<style name="Label19" text_x="if ( $PERSISTENT/Root/Selected = "Ratios" ) then "Trailing Twelve Months" else "Annual Data"" textColor_x="if ( $PERSISTENT/Root/View = "Annual" ) then "teal" else "black"" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
<controlActions id="537">
<children>
<DesignActionCtrlClick id="538">
<children>
<DesignActionUpdateNode id="539" updAt="$PERSISTENT/Root/View" resOf=""Annual""/>
<DesignActionGroupRef id="3084" groupRef="3089"/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignLabel id="1181">
<style align="right" name="Label21" text_x="if ( $PERSISTENT/Root/ShowCharts = "True" ) then "Hide Charts" else "Show Charts"" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
<controlActions id="1185">
<children>
<DesignActionCtrlClick id="1186">
<children>
<DesignActionCondition id="1187" condition="$PERSISTENT/Root/ShowCharts = "True"">
<children>
<DesignActionConditionTrue id="1188">
<children>
<DesignActionUpdateNode id="1182" updAt="$PERSISTENT/Root/ShowCharts" resOf=""False""/>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="1189">
<children>
<DesignActionUpdateNode id="1183" updAt="$PERSISTENT/Root/ShowCharts" resOf=""True""/>
<DesignActionGroupRef id="3085" groupRef="3089"/>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
</children>
</DesignTableRow>
</children>
</DesignTable>
<DesignChart id="3064" chartSettings="3069">
<style chartHeight_x="$MT_CanvasX div 2" chartWidth_x="$MT_CanvasX" name="IncomeStatementChart" visible_x="$PERSISTENT/Root/ShowCharts="True" and $PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected = "Income""/>
</DesignChart>
<DesignChart id="3077" chartSettings="3092">
<style chartHeight_x="$MT_CanvasX div 2" chartWidth_x="$MT_CanvasX" name="BalanceSheetChart" visible_x="$PERSISTENT/Root/ShowCharts="True" and $PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected = "Balance""/>
</DesignChart>
<DesignChart id="5214" chartSettings="5219">
<style chartHeight_x="$MT_CanvasX div 2" chartWidth_x="$MT_CanvasX" name="CashFlowChart" visible_x="$PERSISTENT/Root/ShowCharts="True" and $PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected = "CashFlow""/>
</DesignChart>
<DesignChart id="5783" chartSettings="6019">
<style chartHeight_x="$MT_CanvasX div 2" chartWidth_x="$MT_CanvasX" name="RatiosChart" visible_x="$PERSISTENT/Root/ShowCharts="True" and $PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected = "Ratios""/>
</DesignChart>
<DesignLabel id="3054">
<style align="right" name="Label23" text_x="if ( $PERSISTENT/Root/Divisor = 1000 ) then "US$ in thousands" else "US$ in millions"" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" visible_x="$PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected != "Filings" and $PERSISTENT/Root/Selected != "Ratios""/>
<controlActions id="3055">
<children>
<DesignActionCtrlClick id="3056">
<children>
<DesignActionCondition id="3057" condition="$PERSISTENT/Root/Divisor = 1000">
<children>
<DesignActionConditionTrue id="3058">
<children>
<DesignActionUpdateNode id="3059" updAt="$PERSISTENT/Root/Divisor" resOf="1000000"/>
</children>
</DesignActionConditionTrue>
<DesignActionConditionFalse id="3060">
<children>
<DesignActionUpdateNode id="3061" updAt="$PERSISTENT/Root/Divisor" resOf="1000"/>
</children>
</DesignActionConditionFalse>
</children>
</DesignActionCondition>
<DesignActionGroupRef id="5221" groupRef="3089"/>
</children>
</DesignActionCtrlClick>
</children>
</controlActions>
</DesignLabel>
<DesignTable id="542">
<style visible_x="$PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected = "Income""/>
<children>
<DesignTableCol id="543">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableCol id="544"/>
<DesignTableCol id="545"/>
<DesignTableCol id="546"/>
<DesignTableCol id="547"/>
<DesignTableRow id="548">
<children>
<DesignLabel id="680">
<style name="Label20" text="Period ending:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1126">
<style align="right" format="#,##0" name="Label130" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1130">
<style align="right" format="#,##0" name="Label131" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1132">
<style align="right" format="#,##0" name="Label132" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1134">
<style align="right" format="#,##0" name="Label133" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="554">
<children>
<DesignLabel id="691">
<style align="left" name="Label25" text="Total Revenue " textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="693">
<style align="right" format="#,##0" name="Label26" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@revenueTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1120">
<style align="right" format="#,##0" name="Label27" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@revenueTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1122">
<style align="right" format="#,##0" name="Label28" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@revenueTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1124">
<style align="right" format="#,##0" name="Label29" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@revenueTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="560">
<children>
<DesignLabel id="701">
<style align="left" name="Label30" text="Cost of Revenue" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1136">
<style align="right" format="#,##0" name="Label31" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@costOfRevenue div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1142">
<style align="right" format="#,##0" name="Label32" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@costOfRevenue div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1144">
<style align="right" format="#,##0" name="Label33" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@costOfRevenue div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1146">
<style align="right" format="#,##0" name="Label34" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@costOfRevenue div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="2779">
<children>
<DesignHLine id="2780">
<style colSpan="5" name="Horizontal Line8"/>
</DesignHLine>
</children>
</DesignTableRow>
<DesignTableRow id="566">
<children>
<DesignLabel id="711">
<style align="left" name="Label35" text="Gross Profit" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1138">
<style align="right" format="#,##0" name="Label36" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@profitGross div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1150">
<style align="right" format="#,##0" name="Label37" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@profitGross div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1152">
<style align="right" format="#,##0" name="Label38" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@profitGross div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1154">
<style align="right" format="#,##0" name="Label39" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@profitGross div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="572">
<children>
<DesignLabel id="721">
<style align="left" name="Label40" text=" R&D" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1192">
<style align="right" format="#,##0" name="Label41" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@researchAndDevelopment div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1264">
<style align="right" format="#,##0" name="Label42" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@researchAndDevelopment div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1300">
<style align="right" format="#,##0" name="Label43" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@researchAndDevelopment div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1336">
<style align="right" format="#,##0" name="Label44" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@researchAndDevelopment div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="578">
<children>
<DesignLabel id="731">
<style align="left" name="Label45" text=" Selling Gen. & Adm." textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1194">
<style align="right" format="#,##0" name="Label46" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@sellingGeneralAndAdministrative div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1266">
<style align="right" format="#,##0" name="Label47" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@sellingGeneralAndAdministrative div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1302">
<style align="right" format="#,##0" name="Label48" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@sellingGeneralAndAdministrative div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1338">
<style align="right" format="#,##0" name="Label49" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@sellingGeneralAndAdministrative div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="584">
<children>
<DesignLabel id="741">
<style align="left" name="Label50" text=" Non-recurring" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1196">
<style align="right" format="#,##0" name="Label51" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@nonRecurring div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1268">
<style align="right" format="#,##0" name="Label52" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@nonRecurring div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1304">
<style align="right" format="#,##0" name="Label53" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@nonRecurring div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1340">
<style align="right" format="#,##0" name="Label54" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@nonRecurring div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="590">
<children>
<DesignLabel id="751">
<style align="left" name="Label55" text=" Others" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1198">
<style align="right" format="#,##0" name="Label56" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@operatingExpensesOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1270">
<style align="right" format="#,##0" name="Label57" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@operatingExpensesOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1306">
<style align="right" format="#,##0" name="Label58" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@operatingExpensesOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1342">
<style align="right" format="#,##0" name="Label59" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@operatingExpensesOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="2782">
<children>
<DesignTableCellEmpty id="2783"/>
<DesignHLine id="2777">
<style colSpan="4" name="Horizontal Line9"/>
</DesignHLine>
</children>
</DesignTableRow>
<DesignTableRow id="596">
<children>
<DesignLabel id="761">
<style align="left" italic="1" name="Label60" text=" Total Oper. Exp." textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1200">
<style align="right" format="#,##0" italic="1" name="Label61" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@operatingExpensesTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1272">
<style align="right" format="#,##0" italic="1" name="Label62" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@operatingExpensesTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1308">
<style align="right" format="#,##0" italic="1" name="Label63" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@operatingExpensesTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1344">
<style align="right" format="#,##0" italic="1" name="Label64" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@operatingExpensesTotal div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="2784">
<children>
<DesignHLine id="2785">
<style colSpan="5" name="Horizontal Line10"/>
</DesignHLine>
</children>
</DesignTableRow>
<DesignTableRow id="602">
<children>
<DesignLabel id="771">
<style align="left" name="Label65" text="Operating Income" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1202">
<style align="right" format="#,##0" name="Label66" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@operatingIncome div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1274">
<style align="right" format="#,##0" name="Label67" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@operatingIncome div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1310">
<style align="right" format="#,##0" name="Label68" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@operatingIncome div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1346">
<style align="right" format="#,##0" name="Label69" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@operatingIncome div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="608">
<children>
<DesignLabel id="781">
<style align="left" name="Label70" text=" Other Inc/Exp Net" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1204">
<style align="right" format="#,##0" name="Label71" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@nonOperatingIncomeNetOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1276">
<style align="right" format="#,##0" name="Label72" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@nonOperatingIncomeNetOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1312">
<style align="right" format="#,##0" name="Label73" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@nonOperatingIncomeNetOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1348">
<style align="right" format="#,##0" name="Label74" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@nonOperatingIncomeNetOther div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="614">
<children>
<DesignLabel id="791">
<style align="left" name="Label75" text=" Income bef. Int.&Tax" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1206">
<style align="right" format="#,##0" name="Label76" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@incomeBeforeInterestAndTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1278">
<style align="right" format="#,##0" name="Label77" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@incomeBeforeInterestAndTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1314">
<style align="right" format="#,##0" name="Label78" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@incomeBeforeInterestAndTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1350">
<style align="right" format="#,##0" name="Label79" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@incomeBeforeInterestAndTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="620">
<children>
<DesignLabel id="801">
<style align="left" name="Label80" text=" Interest Expense" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1208">
<style align="right" format="#,##0" name="Label81" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@interestExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1280">
<style align="right" format="#,##0" name="Label82" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@interestExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1316">
<style align="right" format="#,##0" name="Label83" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@interestExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1352">
<style align="right" format="#,##0" name="Label84" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@interestExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="626">
<children>
<DesignLabel id="811">
<style align="left" name="Label85" text=" Income before Tax" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1210">
<style align="right" format="#,##0" name="Label86" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@incomeBeforeTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1282">
<style align="right" format="#,##0" name="Label87" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@incomeBeforeTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1318">
<style align="right" format="#,##0" name="Label88" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@incomeBeforeTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1354">
<style align="right" format="#,##0" name="Label89" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@incomeBeforeTax div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="632">
<children>
<DesignLabel id="821">
<style align="left" name="Label90" text=" Income Tax Expense" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1212">
<style align="right" format="#,##0" name="Label91" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@incomeTaxExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1284">
<style align="right" format="#,##0" name="Label92" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@incomeTaxExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1320">
<style align="right" format="#,##0" name="Label93" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@incomeTaxExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1356">
<style align="right" format="#,##0" name="Label94" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@incomeTaxExpense div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="638">
<children>
<DesignLabel id="831">
<style align="left" name="Label95" text=" Minority Interest" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1214">
<style align="right" format="#,##0" name="Label96" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@minorityInterest div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1286">
<style align="right" format="#,##0" name="Label97" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@minorityInterest div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1322">
<style align="right" format="#,##0" name="Label98" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@minorityInterest div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1358">
<style align="right" format="#,##0" name="Label99" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@minorityInterest div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="2787">
<children>
<DesignTableCellEmpty id="2788"/>
<DesignHLine id="2773">
<style colSpan="4" name="Horizontal Line11"/>
</DesignHLine>
</children>
</DesignTableRow>
<DesignTableRow id="644">
<children>
<DesignLabel id="841">
<style align="left" italic="1" name="Label100" text=" Net Income from Ops" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1216">
<style align="right" format="#,##0" italic="1" name="Label101" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@incomeNetFromContinuingOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1288">
<style align="right" format="#,##0" italic="1" name="Label102" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@incomeNetFromContinuingOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1324">
<style align="right" format="#,##0" italic="1" name="Label103" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@incomeNetFromContinuingOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1360">
<style align="right" format="#,##0" italic="1" name="Label104" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@incomeNetFromContinuingOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="650">
<children>
<DesignLabel id="851">
<style align="left" name="Label105" text=" Discontinued Ops" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1218">
<style align="right" format="#,##0" name="Label106" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@discontinuedOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1290">
<style align="right" format="#,##0" name="Label107" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@discontinuedOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1326">
<style align="right" format="#,##0" name="Label108" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@discontinuedOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1362">
<style align="right" format="#,##0" name="Label109" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@discontinuedOps div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="656">
<children>
<DesignLabel id="861">
<style align="left" name="Label110" text=" Extraordinary Items" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1220">
<style align="right" format="#,##0" name="Label111" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@extraordinaryItems div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1292">
<style align="right" format="#,##0" name="Label112" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@extraordinaryItems div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1328">
<style align="right" format="#,##0" name="Label113" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@extraordinaryItems div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1364">
<style align="right" format="#,##0" name="Label114" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@extraordinaryItems div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="2789">
<children>
<DesignHLine id="2771">
<style colSpan="5" name="Horizontal Line12"/>
</DesignHLine>
</children>
</DesignTableRow>
<DesignTableRow id="662">
<children>
<DesignLabel id="871">
<style align="left" name="Label115" text="Net Income" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1222">
<style align="right" format="#,##0" name="Label116" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@incomeNet div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1294">
<style align="right" format="#,##0" name="Label117" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@incomeNet div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1330">
<style align="right" format="#,##0" name="Label118" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@incomeNet div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1366">
<style align="right" format="#,##0" name="Label119" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@incomeNet div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="668">
<children>
<DesignLabel id="881">
<style align="left" name="Label120" text="Preferred Stock Adj." textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1224">
<style align="right" format="#,##0" name="Label121" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@preferredStockAndOtherAdjustments div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1296">
<style align="right" format="#,##0" name="Label122" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@preferredStockAndOtherAdjustments div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1332">
<style align="right" format="#,##0" name="Label123" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@preferredStockAndOtherAdjustments div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="1368">
<style align="right" format="#,##0" name="Label124" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@preferredStockAndOtherAdjustments div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="2791">
<children>
<DesignHLine id="2792">
<style colSpan="5" name="Horizontal Line13"/>
</DesignHLine>
</children>
</DesignTableRow>
<DesignTableRow id="674">
<children>
<DesignLabel id="891">
<style align="left" name="Label125" text="Net Appl. Com. Sh." textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1226">
<style align="right" format="#,##0" name="Label126" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@incomeNetApplicableToCommonShares div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1298">
<style align="right" format="#,##0" name="Label127" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@incomeNetApplicableToCommonShares div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1334">
<style align="right" format="#,##0" name="Label128" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@incomeNetApplicableToCommonShares div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
<DesignLabel id="1370">
<style align="right" format="#,##0" name="Label129" text_x="$income_statement/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@incomeNetApplicableToCommonShares div $PERSISTENT/Root/Divisor" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small" weight="1"/>
</DesignLabel>
</children>
</DesignTableRow>
</children>
</DesignTable>
<DesignTable id="3574">
<style visible_x="$PERSISTENT/Root/CIK != "" and count( $filings/DB/RowSet/Row ) > 0 and $PERSISTENT/Root/Selected = "Balance""/>
<children>
<DesignTableCol id="3575">
<style colWidth="wrap_content"/>
</DesignTableCol>
<DesignTableCol id="3576"/>
<DesignTableCol id="3577"/>
<DesignTableCol id="3578"/>
<DesignTableCol id="3579"/>
<DesignTableRow id="3580">
<children>
<DesignLabel id="3581">
<style name="Label22" text="Period ending:" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3583">
<style align="right" format="#,##0" name="Label134" text_x="$balance_sheet/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][1]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3585">
<style align="right" format="#,##0" name="Label135" text_x="$balance_sheet/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][2]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3587">
<style align="right" format="#,##0" name="Label136" text_x="$balance_sheet/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][3]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3589">
<style align="right" format="#,##0" name="Label137" text_x="$balance_sheet/DB/RowSet/Row[@duration = (if ( $PERSISTENT/Root/View = "Quarterly" ) then 3 else 12)][4]/@endDate" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="3591">
<children>
<DesignLabel id="3592">
<style align="left" backgroundColor="silver" name="Label243" text="Assets" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3594">
<style align="left" backgroundColor="silver" name="Label245" text=" " textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3596">
<style align="left" backgroundColor="silver" name="Label246" text=" " textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3598">
<style align="left" backgroundColor="silver" name="Label247" text=" " textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignLabel id="3600">
<style align="left" backgroundColor="silver" name="Label248" text=" " textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
</children>
</DesignTableRow>
<DesignTableRow id="3602">
<children>
<DesignLabel id="3603">
<style align="left" name="Label244" text="Current Assets" textColor="black" textSize_x="$PERSISTENT/Root/TextSize/Small"/>
</DesignLabel>
<DesignTableCellEmpty id="3605"/>
<DesignTableCellEmpty id="3606"/>
<DesignTableCellEmpty id="3607"/>