<?xml version="1.0" encoding="UTF-8" ?>
<schema
  targetNamespace='http://www.adobe.com/2006/mxml'
  xmlns:mx='http://www.adobe.com/2006/mxml'
  xmlns='http://www.w3.org/2001/XMLSchema'
  elementFormDefault='qualified'
  attributeFormDefault='unqualified'
>
	<!-- 
A Flex2 version of the Flex1.5 schema. It'll be complete one day, please
fix and checkin/post your changes
		TC 
		tom at-sign falkensweb a-dot com 
		http://falkensweb.com/ 

This is Version 1.2.1 of the file.
	-->
    <!-- 
         This is a fairly strange schema.

         When you use type inheritence in the "normal" way, you get a
         schema that will require documents to specify elements
         attached to base types before elements attached to derived
         types.  Since our type hierachy matches an object hierarchy,
         and containment corresponds to either containment of child
         components or to assignment statements, we need to allow
         child elements in an arbitrary order.

         Convincing the schema system to allow this requires a fair
         amount of non-intuitive wrangling.

         The general idea is to provide an empty hierarchy of types
         (think of it as a bizarre interface inheritance scheme) that
         keeps track of the relationships between types.
         Unfortunately, a parallel hierarchy of empty elements is also
         required, due to the utterly odd way that substitutionGroup
         works.  Anyway, having this hierarchy is what allows you to
         specify a derived type anywhere a base type is required.

         We then define all the "meat" of each definition in a leaf
         type that derives from the interface.  To try to reduce
         repetition, we use a parallel group inheritance hierarchy
         whenever possible.  Because MXML/AS allows a derived class to
         remove the visibility of properties, we will occasionally
         fully "unroll" a type and list all local and base properties,
         minus the newly hidden property.  Also, any patches specified
         to the autogenerated schema will generally cause a type to be
         unrolled.
         
         In either case, the leaf type will contain either a full list
         of all available properties or else it will reaggregate a
         parent group definition with local types into a new group.
         
         All this work to get around the fact that the way that
         "extension" aggregates base type elements with derived type
         elements is via an implicit "sequence".
         
         Now, imagine that instead you did something like this:

              extension base="whatever" group="choice"

         Wouldn't that be nice?
                                         - rg@ieee.org
    -->
	<attributeGroup name="id.attr">
		<attribute name="id" type="ID"/>
		<!-- todo restrict type to valid AS identifiers -->
	</attributeGroup>

    <complexType name="ASPrimitive">
      <simpleContent>
        <extension base="string">
          <attributeGroup ref="mx:id.attr"/>
          <attribute name="source" type="string" />
        </extension>
      </simpleContent>
    </complexType>

    <element name="Model" type="mx:ModelType" substitutionGroup='mx:_X_Object' />
    <complexType name="ModelType" mixed="true">
      <complexContent>
        <extension base='mx:_I_Object'>
          <sequence minOccurs='0' maxOccurs='unbounded'>
              <any namespace="##any" processContents="lax" />
          </sequence>
          <attributeGroup ref="mx:id.attr"/>
          <attribute name="source" type="string"/>
        </extension>
      </complexContent>
    </complexType>

	<element name="Style">
		<complexType mixed="true">
			<attribute name="type" type="mx:ContentType"/>
			<attribute name="media" type="mx:MediaDesc"/>
            <attribute name="source" type="string"/>
			<!--			<attribute ref="xml:space" default="preserve"/> -->
		</complexType>
	</element>

	<element name="Effect">
		<complexType>
			<choice minOccurs="0" maxOccurs="unbounded">
				<any namespace="##any" processContents="lax" />
			</choice>
            <attribute name="name" type="string"/>
		</complexType>
	</element>

    <element name="Metadata">
      <simpleType>
        <restriction base="string"/>
      </simpleType>
    </element>

	<element name="Script">
        <complexType mixed="true">
            <simpleContent>
			    <extension base="mx:ActionScript">
                    <attribute name="source" type="string"/>
                </extension>
            </simpleContent>
        </complexType>
    </element>

	<simpleType name="ContentType">
		<annotation>
			<documentation> media type, as per [RFC2045] </documentation>
		</annotation>
		<list itemType="string"/>
	</simpleType>

	<simpleType name="MediaDesc">
		<annotation>
			<documentation> single or comma-separated list of media descriptors </documentation>
		</annotation>
		<restriction base="string"/>
	</simpleType>

	<simpleType name="ActionScript">
		<annotation>
			<documentation>typedef for a fragment of script</documentation>
		</annotation>
		<restriction base="string"/>
	</simpleType>
	<simpleType name="ActionScript.lvalue">
		<restriction base="mx:ActionScript"/>
	</simpleType>


<element name='_X_Accessibility' type='mx:_I_Accessibility' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Accessibility' type='mx:Accessibility' substitutionGroup='mx:_X_Accessibility'/>
<element name='_X_Accordion' type='mx:_I_mx.containers.Accordion' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='Accordion' type='mx:mx.containers.Accordion' substitutionGroup='mx:_X_Accordion'/>
<element name='_X_AccordionHeader' type='mx:_I_mx.containers.accordionclasses.AccordionHeader' abstract='true' substitutionGroup='mx:_X_Button'/>
<element name='AccordionHeader' type='mx:mx.containers.accordionclasses.AccordionHeader' substitutionGroup='mx:_X_AccordionHeader'/>
<element name='_X_AccordionHeaderSkin' type='mx:_I_mx.skins.halo.AccordionHeaderSkin' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='AccordionHeaderSkin' type='mx:mx.skins.halo.AccordionHeaderSkin' substitutionGroup='mx:_X_AccordionHeaderSkin'/>
<element name='_X_Application' type='mx:_I_mx.core.Application' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='Application' type='mx:mx.core.Application' substitutionGroup='mx:_X_Application'/>
<element name='_X_AreaChart' type='mx:_I_mx.charts.AreaChart' abstract='true' substitutionGroup='mx:_X_CartesianChart'/>
<element name='AreaChart' type='mx:mx.charts.AreaChart' substitutionGroup='mx:_X_AreaChart'/>
<element name='_X_AreaSeries' type='mx:_I_mx.charts.series.AreaSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='AreaSeries' type='mx:mx.charts.series.AreaSeries' substitutionGroup='mx:_X_AreaSeries'/>
<element name='_X_Array' type='mx:_I_Array' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Array' type='mx:Array' substitutionGroup='mx:_X_Array'/>
<element name='_X_AsBroadcaster' type='mx:_I_AsBroadcaster' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='AsBroadcaster' type='mx:AsBroadcaster' substitutionGroup='mx:_X_AsBroadcaster'/>
<element name='_X_AssetRenderer' type='mx:_I_mx.charts.renderers.AssetRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='AssetRenderer' type='mx:mx.charts.renderers.AssetRenderer' substitutionGroup='mx:_X_AssetRenderer'/>
<element name='_X_AxisRenderer' type='mx:_I_mx.charts.AxisRenderer' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.ChartComponent'/>
<element name='AxisRenderer' type='mx:mx.charts.AxisRenderer' substitutionGroup='mx:_X_AxisRenderer'/>
<element name='_X_BarChart' type='mx:_I_mx.charts.BarChart' abstract='true' substitutionGroup='mx:_X_CartesianChart'/>
<element name='BarChart' type='mx:mx.charts.BarChart' substitutionGroup='mx:_X_BarChart'/>
<element name='_X_BarSeries' type='mx:_I_mx.charts.series.BarSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='BarSeries' type='mx:mx.charts.series.BarSeries' substitutionGroup='mx:_X_BarSeries'/>
<element name='_X_Binding' type='mx:_I_mx.binding.Binding' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Binding' type='mx:mx.binding.Binding' substitutionGroup='mx:_X_Binding'/>
<element name='_X_Boolean' type='mx:_I_Boolean' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Boolean' type='mx:Boolean' substitutionGroup='mx:_X_Boolean'/>
<element name='_X_Box' type='mx:_I_mx.containers.Box' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='Box' type='mx:mx.containers.Box' substitutionGroup='mx:_X_Box'/>
<element name='_X_BoxDivider' type='mx:_I_mx.containers.dividedboxclasses.BoxDivider' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='BoxDivider' type='mx:mx.containers.dividedboxclasses.BoxDivider' substitutionGroup='mx:_X_BoxDivider'/>
<element name='_X_BubbleChart' type='mx:_I_mx.charts.BubbleChart' abstract='true' substitutionGroup='mx:_X_CartesianChart'/>
<element name='BubbleChart' type='mx:mx.charts.BubbleChart' substitutionGroup='mx:_X_BubbleChart'/>
<element name='_X_BubbleSeries' type='mx:_I_mx.charts.series.BubbleSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='BubbleSeries' type='mx:mx.charts.series.BubbleSeries' substitutionGroup='mx:_X_BubbleSeries'/>
<element name='_X_Button' type='mx:_I_mx.controls.Button' abstract='true' substitutionGroup='mx:_X_SimpleButton'/>
<element name='Button' type='mx:mx.controls.Button' substitutionGroup='mx:_X_Button'/>
<element name='_X_Camera' type='mx:_I_Camera' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Camera' type='mx:Camera' substitutionGroup='mx:_X_Camera'/>
<element name='_X_Canvas' type='mx:_I_mx.containers.Canvas' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='Canvas' type='mx:mx.containers.Canvas' substitutionGroup='mx:_X_Canvas'/>
<element name='_X_CartesianCanvas' type='mx:_I_mx.charts.chartClasses.CartesianCanvas' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.DataCanvas'/>
<element name='CartesianCanvas' type='mx:mx.charts.chartClasses.CartesianCanvas' substitutionGroup='mx:_X_CartesianCanvas'/>
<element name='_X_CartesianChart' type='mx:_I_mx.charts.chartClasses.CartesianChart' abstract='true' substitutionGroup='mx:_X_ChartBase'/>
<element name='CartesianChart' type='mx:mx.charts.chartClasses.CartesianChart' substitutionGroup='mx:_X_CartesianChart'/>
<element name='_X_CategoryAxis' type='mx:_I_mx.charts.CategoryAxis' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.AxisBase'/>
<element name='CategoryAxis' type='mx:mx.charts.CategoryAxis' substitutionGroup='mx:_X_CategoryAxis'/>
<element name='_X_ChartBase' type='mx:_I_mx.charts.chartClasses.ChartBase' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='ChartBase' type='mx:mx.charts.chartClasses.ChartBase' substitutionGroup='mx:_X_ChartBase'/>
<element name='_X_CheckBox' type='mx:_I_mx.controls.CheckBox' abstract='true' substitutionGroup='mx:_X_Button'/>
<element name='CheckBox' type='mx:mx.controls.CheckBox' substitutionGroup='mx:_X_CheckBox'/>
<element name='_X_CheckBoxAssets' type='mx:_I_mx.skins.halo.CheckBoxIcon' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='CheckBoxAssets' type='mx:mx.skins.halo.CheckBoxIcon' substitutionGroup='mx:_X_CheckBoxAssets'/>
<element name='_X_CircleRenderer' type='mx:_I_mx.charts.renderers.CircleRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='CircleRenderer' type='mx:mx.charts.renderers.CircleRenderer' substitutionGroup='mx:_X_CircleRenderer'/>
<element name='_X_Color' type='mx:_I_Color' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Color' type='mx:Color' substitutionGroup='mx:_X_Color'/>
<element name='_X_ColumnChart' type='mx:_I_mx.charts.ColumnChart' abstract='true' substitutionGroup='mx:_X_CartesianChart'/>
<element name='ColumnChart' type='mx:mx.charts.ColumnChart' substitutionGroup='mx:_X_ColumnChart'/>
<element name='_X_ColumnSeries' type='mx:_I_mx.charts.series.ColumnSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='ColumnSeries' type='mx:mx.charts.series.ColumnSeries' substitutionGroup='mx:_X_ColumnSeries'/>
<element name='_X_ComboAssets' type='mx:_I_mx.skins.halo.ComboBoxArrowSkin' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='ComboAssets' type='mx:mx.skins.halo.ComboBoxArrowSkin' substitutionGroup='mx:_X_ComboAssets'/>
<element name='_X_ComboBox' type='mx:_I_mx.controls.ComboBox' abstract='true' substitutionGroup='mx:_X_mx.controls.ComboBase'/>
<element name='ComboBox' type='mx:mx.controls.ComboBox' substitutionGroup='mx:_X_ComboBox'/>
<element name='_X_ContextMenu' type='mx:_I_ContextMenu' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='ContextMenu' type='mx:ContextMenu' substitutionGroup='mx:_X_ContextMenu'/>
<element name='_X_ContextMenuItem' type='mx:_I_ContextMenuItem' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='ContextMenuItem' type='mx:ContextMenuItem' substitutionGroup='mx:_X_ContextMenuItem'/>
<element name='_X_ControlBar' type='mx:_I_mx.containers.ControlBar' abstract='true' substitutionGroup='mx:_X_HBox'/>
<element name='ControlBar' type='mx:mx.containers.ControlBar' substitutionGroup='mx:_X_ControlBar'/>
<element name='_X_CreditCardValidator' type='mx:_I_mx.validators.CreditCardValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='CreditCardValidator' type='mx:mx.validators.CreditCardValidator' substitutionGroup='mx:_X_CreditCardValidator'/>
<element name='_X_CrossRenderer' type='mx:_I_mx.charts.renderers.CrossRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='CrossRenderer' type='mx:mx.charts.renderers.CrossRenderer' substitutionGroup='mx:_X_CrossRenderer'/>
<element name='_X_CurrencyFormatter' type='mx:_I_mx.formatters.CurrencyFormatter' abstract='true' substitutionGroup='mx:_X_Formatter'/>
<element name='CurrencyFormatter' type='mx:mx.formatters.CurrencyFormatter' substitutionGroup='mx:_X_CurrencyFormatter'/>
<element name='_X_CurrencyValidator' type='mx:_I_mx.validators.CurrencyValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='CurrencyValidator' type='mx:mx.validators.CurrencyValidator' substitutionGroup='mx:_X_CurrencyValidator'/>
<element name='_X_CustomActions' type='mx:_I_CustomActions' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='CustomActions' type='mx:CustomActions' substitutionGroup='mx:_X_CustomActions'/>
<element name='_X_CustomBorder' type='mx:_I_mx.skins.CustomBorder' abstract='true' substitutionGroup='mx:_X_mx.skins.Border'/>
<element name='CustomBorder' type='mx:mx.skins.CustomBorder' substitutionGroup='mx:_X_CustomBorder'/>
<element name='_X_DataGrid' type='mx:_I_mx.controls.DataGrid' abstract='true' substitutionGroup='mx:_X_List'/>
<element name='DataGrid' type='mx:mx.controls.DataGrid' substitutionGroup='mx:_X_DataGrid'/>
<element name='_X_DataGridColumn' type='mx:_I_mx.controls.gridclasses.DataGridColumn' abstract='true' substitutionGroup='mx:_X_mx.styles.CSSStyleDeclaration'/>
<element name='DataGridColumn' type='mx:mx.controls.gridclasses.DataGridColumn' substitutionGroup='mx:_X_DataGridColumn'/>
<element name='_X_Date' type='mx:_I_Date' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Date' type='mx:Date' substitutionGroup='mx:_X_Date'/>
<element name='_X_DateChooser' type='mx:_I_mx.controls.DateChooser' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='DateChooser' type='mx:mx.controls.DateChooser' substitutionGroup='mx:_X_DateChooser'/>
<element name='_X_DateField' type='mx:_I_mx.controls.DateField' abstract='true' substitutionGroup='mx:_X_mx.controls.ComboBase'/>
<element name='DateField' type='mx:mx.controls.DateField' substitutionGroup='mx:_X_DateField'/>
<element name='_X_DateFormatter' type='mx:_I_mx.formatters.DateFormatter' abstract='true' substitutionGroup='mx:_X_Formatter'/>
<element name='DateFormatter' type='mx:mx.formatters.DateFormatter' substitutionGroup='mx:_X_DateFormatter'/>
<element name='_X_DateValidator' type='mx:_I_mx.validators.DateValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='DateValidator' type='mx:mx.validators.DateValidator' substitutionGroup='mx:_X_DateValidator'/>
<element name='_X_DiamondRenderer' type='mx:_I_mx.charts.renderers.DiamondRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='DiamondRenderer' type='mx:mx.charts.renderers.DiamondRenderer' substitutionGroup='mx:_X_DiamondRenderer'/>
<element name='_X_Dissolve' type='mx:_I_mx.effects.Dissolve' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='Dissolve' type='mx:mx.effects.Dissolve' substitutionGroup='mx:_X_Dissolve'/>
<element name='_X_DividedBox' type='mx:_I_mx.containers.DividedBox' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='DividedBox' type='mx:mx.containers.DividedBox' substitutionGroup='mx:_X_DividedBox'/>
<element name='_X_DownloadProgressBar' type='mx:_I_mx.preloaders.DownloadProgressBar' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='DownloadProgressBar' type='mx:mx.preloaders.DownloadProgressBar' substitutionGroup='mx:_X_DownloadProgressBar'/>
<element name='_X_DropShadow' type='mx:_I_mx.skins.halo.DropShadow' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='DropShadow' type='mx:mx.skins.halo.DropShadow' substitutionGroup='mx:_X_DropShadow'/>
<element name='_X_EmailValidator' type='mx:_I_mx.validators.EmailValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='EmailValidator' type='mx:mx.validators.EmailValidator' substitutionGroup='mx:_X_EmailValidator'/>
<element name='_X_Enumeration' type='mx:_I_Enumeration' abstract='true' substitutionGroup='mx:_X_String'/>
<element name='Enumeration' type='mx:Enumeration' substitutionGroup='mx:_X_Enumeration'/>
<element name='_X_Fade' type='mx:_I_mx.effects.Fade' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='Fade' type='mx:mx.effects.Fade' substitutionGroup='mx:_X_Fade'/>
<element name='_X_File' type='mx:_I_File' abstract='true' substitutionGroup='mx:_X_String'/>
<element name='File' type='mx:File' substitutionGroup='mx:_X_File'/>
<element name='_X_FontName' type='mx:_I_FontName' abstract='true' substitutionGroup='mx:_X_String'/>
<element name='FontName' type='mx:FontName' substitutionGroup='mx:_X_FontName'/>
<element name='_X_Form' type='mx:_I_mx.containers.Form' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='Form' type='mx:mx.containers.Form' substitutionGroup='mx:_X_Form'/>
<element name='_X_FormHeading' type='mx:_I_mx.containers.FormHeading' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='FormHeading' type='mx:mx.containers.FormHeading' substitutionGroup='mx:_X_FormHeading'/>
<element name='_X_FormItem' type='mx:_I_mx.containers.FormItem' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='FormItem' type='mx:mx.containers.FormItem' substitutionGroup='mx:_X_FormItem'/>
<element name='_X_FormItemLabel' type='mx:_I_mx.controls.FormItemLabel' abstract='true' substitutionGroup='mx:_X_Label'/>
<element name='FormItemLabel' type='mx:mx.controls.FormItemLabel' substitutionGroup='mx:_X_FormItemLabel'/>
<element name='_X_Formatter' type='mx:_I_mx.formatters.Formatter' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Formatter' type='mx:mx.formatters.Formatter' substitutionGroup='mx:_X_Formatter'/>
<element name='_X_Function' type='mx:_I_Function' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Function' type='mx:Function' substitutionGroup='mx:_X_Function'/>
<element name='_X_FunctionArguments' type='mx:_I_FunctionArguments' abstract='true' substitutionGroup='mx:_X_Array'/>
<element name='FunctionArguments' type='mx:FunctionArguments' substitutionGroup='mx:_X_FunctionArguments'/>
<element name='_X_GradientEntry' type='mx:_I_mx.graphics.GradientEntry' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='GradientEntry' type='mx:mx.graphics.GradientEntry' substitutionGroup='mx:_X_GradientEntry'/>
<element name='_X_Grid' type='mx:_I_mx.containers.Grid' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='Grid' type='mx:mx.containers.Grid' substitutionGroup='mx:_X_Grid'/>
<element name='_X_GridItem' type='mx:_I_mx.containers.GridItem' abstract='true' substitutionGroup='mx:_X_HBox'/>
<element name='GridItem' type='mx:mx.containers.GridItem' substitutionGroup='mx:_X_GridItem'/>
<element name='_X_GridLines' type='mx:_I_mx.charts.GridLines' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.ChartElement'/>
<element name='GridLines' type='mx:mx.charts.GridLines' substitutionGroup='mx:_X_GridLines'/>
<element name='_X_GridRow' type='mx:_I_mx.containers.GridRow' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='GridRow' type='mx:mx.containers.GridRow' substitutionGroup='mx:_X_GridRow'/>
<element name='_X_HBox' type='mx:_I_mx.containers.HBox' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='HBox' type='mx:mx.containers.HBox' substitutionGroup='mx:_X_HBox'/>
<element name='_X_HDividedBox' type='mx:_I_mx.containers.HDividedBox' abstract='true' substitutionGroup='mx:_X_DividedBox'/>
<element name='HDividedBox' type='mx:mx.containers.HDividedBox' substitutionGroup='mx:_X_HDividedBox'/>
<element name='_X_HRule' type='mx:_I_mx.controls.HRule' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='HRule' type='mx:mx.controls.HRule' substitutionGroup='mx:_X_HRule'/>
<element name='_X_HScrollBar' type='mx:_I_mx.controls.HScrollBar' abstract='true' substitutionGroup='mx:_X_mx.controls.scrollClasses.ScrollBar'/>
<element name='HScrollBar' type='mx:mx.controls.HScrollBar' substitutionGroup='mx:_X_HScrollBar'/>
<element name='_X_HSlider' type='mx:_I_mx.controls.HSlider' abstract='true' substitutionGroup='mx:_X_mx.controls.sliderclasses.Slider'/>
<element name='HSlider' type='mx:mx.controls.HSlider' substitutionGroup='mx:_X_HSlider'/>
<element name='_X_HSliderAssets' type='mx:_I_mx.skins.halo.HSliderAssets' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='HSliderAssets' type='mx:mx.skins.halo.HSliderAssets' substitutionGroup='mx:_X_HSliderAssets'/>
<element name='_X_HTTPService' type='mx:_I_mx.servicetags.HTTPService' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='HTTPService' type='mx:mx.servicetags.HTTPService' substitutionGroup='mx:_X_HTTPService'/>
<element name='_X_HaloDefaults' type='mx:_I_mx.charts.styles.HaloDefaults' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='HaloDefaults' type='mx:mx.charts.styles.HaloDefaults' substitutionGroup='mx:_X_HaloDefaults'/>
<element name='_X_HorizontalList' type='mx:_I_mx.controls.HorizontalList' abstract='true' substitutionGroup='mx:_X_mx.controls.listclasses.ItemList'/>
<element name='HorizontalList' type='mx:mx.controls.HorizontalList' substitutionGroup='mx:_X_HorizontalList'/>
<element name='_X_Image' type='mx:_I_mx.controls.Image' abstract='true' substitutionGroup='mx:_X_Loader'/>
<element name='Image' type='mx:mx.controls.Image' substitutionGroup='mx:_X_Image'/>
<element name='_X_Key' type='mx:_I_Key' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Key' type='mx:Key' substitutionGroup='mx:_X_Key'/>
<element name='_X_Label' type='mx:_I_mx.controls.Label' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='Label' type='mx:mx.controls.Label' substitutionGroup='mx:_X_Label'/>
<element name='_X_Legend' type='mx:_I_mx.charts.Legend' abstract='true' substitutionGroup='mx:_X_Tile'/>
<element name='Legend' type='mx:mx.charts.Legend' substitutionGroup='mx:_X_Legend'/>
<element name='_X_LegendItem' type='mx:_I_mx.charts.LegendItem' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='LegendItem' type='mx:mx.charts.LegendItem' substitutionGroup='mx:_X_LegendItem'/>
<element name='_X_LineChart' type='mx:_I_mx.charts.LineChart' abstract='true' substitutionGroup='mx:_X_CartesianChart'/>
<element name='LineChart' type='mx:mx.charts.LineChart' substitutionGroup='mx:_X_LineChart'/>
<element name='_X_LineSeries' type='mx:_I_mx.charts.series.LineSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='LineSeries' type='mx:mx.charts.series.LineSeries' substitutionGroup='mx:_X_LineSeries'/>
<element name='_X_LinearAxis' type='mx:_I_mx.charts.LinearAxis' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.AxisBase'/>
<element name='LinearAxis' type='mx:mx.charts.LinearAxis' substitutionGroup='mx:_X_LinearAxis'/>
<element name='_X_LinearGradient' type='mx:_I_mx.graphics.LinearGradient' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='LinearGradient' type='mx:mx.graphics.LinearGradient' substitutionGroup='mx:_X_LinearGradient'/>
<element name='_X_Link' type='mx:_I_mx.controls.Link' abstract='true' substitutionGroup='mx:_X_Button'/>
<element name='Link' type='mx:mx.controls.Link' substitutionGroup='mx:_X_Link'/>
<element name='_X_LinkBar' type='mx:_I_mx.containers.LinkBar' abstract='true' substitutionGroup='mx:_X_NavBar'/>
<element name='LinkBar' type='mx:mx.containers.LinkBar' substitutionGroup='mx:_X_LinkBar'/>
<element name='_X_LinkSeparator' type='mx:_I_mx.skins.halo.LinkSeparator' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='LinkSeparator' type='mx:mx.skins.halo.LinkSeparator' substitutionGroup='mx:_X_LinkSeparator'/>
<element name='_X_List' type='mx:_I_mx.controls.List' abstract='true' substitutionGroup='mx:_X_mx.controls.listclasses.ScrollSelectList'/>
<element name='List' type='mx:mx.controls.List' substitutionGroup='mx:_X_List'/>
<element name='_X_ListDropIndicator' type='mx:_I_mx.skins.halo.ListDropIndicator' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='ListDropIndicator' type='mx:mx.skins.halo.ListDropIndicator' substitutionGroup='mx:_X_ListDropIndicator'/>
<element name='_X_LoadVars' type='mx:_I_LoadVars' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='LoadVars' type='mx:LoadVars' substitutionGroup='mx:_X_LoadVars'/>
<element name='_X_Loader' type='mx:_I_mx.controls.Loader' abstract='true' substitutionGroup='mx:_X_mx.core.View'/>
<element name='Loader' type='mx:mx.controls.Loader' substitutionGroup='mx:_X_Loader'/>
<element name='_X_LocalConnection' type='mx:_I_LocalConnection' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='LocalConnection' type='mx:LocalConnection' substitutionGroup='mx:_X_LocalConnection'/>
<element name='_X_MediaController' type='mx:_I_mx.controls.MediaController' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='MediaController' type='mx:mx.controls.MediaController' substitutionGroup='mx:_X_MediaController'/>
<element name='_X_MediaDisplay' type='mx:_I_mx.controls.MediaDisplay' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='MediaDisplay' type='mx:mx.controls.MediaDisplay' substitutionGroup='mx:_X_MediaDisplay'/>
<element name='_X_MediaPlayback' type='mx:_I_mx.controls.MediaPlayback' abstract='true' substitutionGroup='mx:_X_mx.core.View'/>
<element name='MediaPlayback' type='mx:mx.controls.MediaPlayback' substitutionGroup='mx:_X_MediaPlayback'/>
<element name='_X_MenuBar' type='mx:_I_mx.controls.MenuBar' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='MenuBar' type='mx:mx.controls.MenuBar' substitutionGroup='mx:_X_MenuBar'/>
<element name='_X_Move' type='mx:_I_mx.effects.Move' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='Move' type='mx:mx.effects.Move' substitutionGroup='mx:_X_Move'/>
<element name='_X_MovieClip' type='mx:_I_MovieClip' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='MovieClip' type='mx:MovieClip' substitutionGroup='mx:_X_MovieClip'/>
<element name='_X_MovieClipLoader' type='mx:_I_MovieClipLoader' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='MovieClipLoader' type='mx:MovieClipLoader' substitutionGroup='mx:_X_MovieClipLoader'/>
<element name='_X_NavBar' type='mx:_I_mx.containers.NavBar' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='NavBar' type='mx:mx.containers.NavBar' substitutionGroup='mx:_X_NavBar'/>
<element name='_X_NetConnection' type='mx:_I_NetConnection' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='NetConnection' type='mx:NetConnection' substitutionGroup='mx:_X_NetConnection'/>
<element name='_X_Number' type='mx:_I_Number' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Number' type='mx:Number' substitutionGroup='mx:_X_Number'/>
<element name='_X_NumberFormatter' type='mx:_I_mx.formatters.NumberFormatter' abstract='true' substitutionGroup='mx:_X_Formatter'/>
<element name='NumberFormatter' type='mx:mx.formatters.NumberFormatter' substitutionGroup='mx:_X_NumberFormatter'/>
<element name='_X_NumberValidator' type='mx:_I_mx.validators.NumberValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='NumberValidator' type='mx:mx.validators.NumberValidator' substitutionGroup='mx:_X_NumberValidator'/>
<element name='_X_NumericStepper' type='mx:_I_mx.controls.NumericStepper' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='NumericStepper' type='mx:mx.controls.NumericStepper' substitutionGroup='mx:_X_NumericStepper'/>
<element name='_X_NumericStepperAssets' type='mx:_I_mx.skins.halo.NumericStepperAssets' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='NumericStepperAssets' type='mx:mx.skins.halo.NumericStepperAssets' substitutionGroup='mx:_X_NumericStepperAssets'/>
<element name='_X_Object' type='mx:_I_Object' abstract='true'/>
<element name='Object' type='mx:Object' substitutionGroup='mx:_X_Object'/>
<element name='_X_ObjectID' type='mx:_I_ObjectID' abstract='true' substitutionGroup='mx:_X_String'/>
<element name='ObjectID' type='mx:ObjectID' substitutionGroup='mx:_X_ObjectID'/>
<element name='_X_Panel' type='mx:_I_mx.containers.Panel' abstract='true' substitutionGroup='mx:_X_VBox'/>
<element name='Panel' type='mx:mx.containers.Panel' substitutionGroup='mx:_X_Panel'/>
<element name='_X_Parallel' type='mx:_I_mx.effects.Parallel' abstract='true' substitutionGroup='mx:_X_mx.effects.CompositeEffect'/>
<element name='Parallel' type='mx:mx.effects.Parallel' substitutionGroup='mx:_X_Parallel'/>
<element name='_X_Pause' type='mx:_I_mx.effects.Pause' abstract='true' substitutionGroup='mx:_X_mx.effects.Effect'/>
<element name='Pause' type='mx:mx.effects.Pause' substitutionGroup='mx:_X_Pause'/>
<element name='_X_PhoneFormatter' type='mx:_I_mx.formatters.PhoneFormatter' abstract='true' substitutionGroup='mx:_X_Formatter'/>
<element name='PhoneFormatter' type='mx:mx.formatters.PhoneFormatter' substitutionGroup='mx:_X_PhoneFormatter'/>
<element name='_X_PhoneNumberValidator' type='mx:_I_mx.validators.PhoneNumberValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='PhoneNumberValidator' type='mx:mx.validators.PhoneNumberValidator' substitutionGroup='mx:_X_PhoneNumberValidator'/>
<element name='_X_PieChart' type='mx:_I_mx.charts.PieChart' abstract='true' substitutionGroup='mx:_X_PolarChart'/>
<element name='PieChart' type='mx:mx.charts.PieChart' substitutionGroup='mx:_X_PieChart'/>
<element name='_X_PieSeries' type='mx:_I_mx.charts.series.PieSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='PieSeries' type='mx:mx.charts.series.PieSeries' substitutionGroup='mx:_X_PieSeries'/>
<element name='_X_PlotChart' type='mx:_I_mx.charts.PlotChart' abstract='true' substitutionGroup='mx:_X_CartesianChart'/>
<element name='PlotChart' type='mx:mx.charts.PlotChart' substitutionGroup='mx:_X_PlotChart'/>
<element name='_X_PlotSeries' type='mx:_I_mx.charts.series.PlotSeries' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.Series'/>
<element name='PlotSeries' type='mx:mx.charts.series.PlotSeries' substitutionGroup='mx:_X_PlotSeries'/>
<element name='_X_Point' type='mx:_I_mx.graphics.Point' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Point' type='mx:mx.graphics.Point' substitutionGroup='mx:_X_Point'/>
<element name='_X_PolarCanvas' type='mx:_I_mx.charts.chartClasses.PolarCanvas' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.DataCanvas'/>
<element name='PolarCanvas' type='mx:mx.charts.chartClasses.PolarCanvas' substitutionGroup='mx:_X_PolarCanvas'/>
<element name='_X_PolarChart' type='mx:_I_mx.charts.chartClasses.PolarChart' abstract='true' substitutionGroup='mx:_X_ChartBase'/>
<element name='PolarChart' type='mx:mx.charts.chartClasses.PolarChart' substitutionGroup='mx:_X_PolarChart'/>
<element name='_X_Preloader' type='mx:_I_mx.preloaders.Preloader' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Preloader' type='mx:mx.preloaders.Preloader' substitutionGroup='mx:_X_Preloader'/>
<element name='_X_ProgressBar' type='mx:_I_mx.controls.ProgressBar' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='ProgressBar' type='mx:mx.controls.ProgressBar' substitutionGroup='mx:_X_ProgressBar'/>
<element name='_X_ProgressBarAssets' type='mx:_I_mx.skins.halo.ProgressBarAssets' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='ProgressBarAssets' type='mx:mx.skins.halo.ProgressBarAssets' substitutionGroup='mx:_X_ProgressBarAssets'/>
<element name='_X_RadialGradient' type='mx:_I_mx.graphics.RadialGradient' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='RadialGradient' type='mx:mx.graphics.RadialGradient' substitutionGroup='mx:_X_RadialGradient'/>
<element name='_X_RadioButton' type='mx:_I_mx.controls.RadioButton' abstract='true' substitutionGroup='mx:_X_Button'/>
<element name='RadioButton' type='mx:mx.controls.RadioButton' substitutionGroup='mx:_X_RadioButton'/>
<element name='_X_RadioButtonAssets' type='mx:_I_mx.skins.halo.RadioButtonIcon' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='RadioButtonAssets' type='mx:mx.skins.halo.RadioButtonIcon' substitutionGroup='mx:_X_RadioButtonAssets'/>
<element name='_X_RadioButtonGroup' type='mx:_I_mx.controls.RadioButtonGroup' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='RadioButtonGroup' type='mx:mx.controls.RadioButtonGroup' substitutionGroup='mx:_X_RadioButtonGroup'/>
<element name='_X_Rect' type='mx:_I_mx.graphics.Rect' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Rect' type='mx:mx.graphics.Rect' substitutionGroup='mx:_X_Rect'/>
<element name='_X_RectBorder' type='mx:_I_mx.skins.halo.RectBorder' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='RectBorder' type='mx:mx.skins.halo.RectBorder' substitutionGroup='mx:_X_RectBorder'/>
<element name='_X_RemoteObject' type='mx:_I_mx.remoting.RemoteObject' abstract='true' substitutionGroup='mx:_X_mx.remoting.Service'/>
<element name='RemoteObject' type='mx:mx.remoting.RemoteObject' substitutionGroup='mx:_X_RemoteObject'/>
<element name='_X_Repeater' type='mx:_I_mx.core.Repeater' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Repeater' type='mx:mx.core.Repeater' substitutionGroup='mx:_X_Repeater'/>
<element name='_X_Resize' type='mx:_I_mx.effects.Resize' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='Resize' type='mx:mx.effects.Resize' substitutionGroup='mx:_X_Resize'/>
<element name='_X_ScrollBarAssets' type='mx:_I_mx.skins.halo.ScrollBarAssets' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='ScrollBarAssets' type='mx:mx.skins.halo.ScrollBarAssets' substitutionGroup='mx:_X_ScrollBarAssets'/>
<element name='_X_Selection' type='mx:_I_Selection' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Selection' type='mx:Selection' substitutionGroup='mx:_X_Selection'/>
<element name='_X_Sequence' type='mx:_I_mx.effects.Sequence' abstract='true' substitutionGroup='mx:_X_mx.effects.CompositeEffect'/>
<element name='Sequence' type='mx:mx.effects.Sequence' substitutionGroup='mx:_X_Sequence'/>
<element name='_X_SeriesInterpolate' type='mx:_I_mx.charts.effects.SeriesInterpolate' abstract='true' substitutionGroup='mx:_X_mx.charts.effects.SeriesEffect'/>
<element name='SeriesInterpolate' type='mx:mx.charts.effects.SeriesInterpolate' substitutionGroup='mx:_X_SeriesInterpolate'/>
<element name='_X_SeriesSlide' type='mx:_I_mx.charts.effects.SeriesSlide' abstract='true' substitutionGroup='mx:_X_mx.charts.effects.SeriesEffect'/>
<element name='SeriesSlide' type='mx:mx.charts.effects.SeriesSlide' substitutionGroup='mx:_X_SeriesSlide'/>
<element name='_X_SeriesZoom' type='mx:_I_mx.charts.effects.SeriesZoom' abstract='true' substitutionGroup='mx:_X_mx.charts.effects.SeriesEffect'/>
<element name='SeriesZoom' type='mx:mx.charts.effects.SeriesZoom' substitutionGroup='mx:_X_SeriesZoom'/>
<element name='_X_ShadowBoxRenderer' type='mx:_I_mx.charts.renderers.ShadowBoxRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='ShadowBoxRenderer' type='mx:mx.charts.renderers.ShadowBoxRenderer' substitutionGroup='mx:_X_ShadowBoxRenderer'/>
<element name='_X_ShadowLineRenderer' type='mx:_I_mx.charts.renderers.ShadowLineRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='ShadowLineRenderer' type='mx:mx.charts.renderers.ShadowLineRenderer' substitutionGroup='mx:_X_ShadowLineRenderer'/>
<element name='_X_ShadowWedgeRenderer' type='mx:_I_mx.charts.renderers.ShadowWedgeRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='ShadowWedgeRenderer' type='mx:mx.charts.renderers.ShadowWedgeRenderer' substitutionGroup='mx:_X_ShadowWedgeRenderer'/>
<element name='_X_SharedObject' type='mx:_I_SharedObject' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='SharedObject' type='mx:SharedObject' substitutionGroup='mx:_X_SharedObject'/>
<element name='_X_SimpleAreaRenderer' type='mx:_I_mx.charts.renderers.SimpleAreaRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='SimpleAreaRenderer' type='mx:mx.charts.renderers.SimpleAreaRenderer' substitutionGroup='mx:_X_SimpleAreaRenderer'/>
<element name='_X_SimpleBoxRenderer' type='mx:_I_mx.charts.renderers.SimpleBoxRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='SimpleBoxRenderer' type='mx:mx.charts.renderers.SimpleBoxRenderer' substitutionGroup='mx:_X_SimpleBoxRenderer'/>
<element name='_X_SimpleButton' type='mx:_I_mx.controls.SimpleButton' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='SimpleButton' type='mx:mx.controls.SimpleButton' substitutionGroup='mx:_X_SimpleButton'/>
<element name='_X_SimpleLineRenderer' type='mx:_I_mx.charts.renderers.SimpleLineRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='SimpleLineRenderer' type='mx:mx.charts.renderers.SimpleLineRenderer' substitutionGroup='mx:_X_SimpleLineRenderer'/>
<element name='_X_SocialSecurityValidator' type='mx:_I_mx.validators.SocialSecurityValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='SocialSecurityValidator' type='mx:mx.validators.SocialSecurityValidator' substitutionGroup='mx:_X_SocialSecurityValidator'/>
<element name='_X_SolidColor' type='mx:_I_mx.graphics.SolidColor' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='SolidColor' type='mx:mx.graphics.SolidColor' substitutionGroup='mx:_X_SolidColor'/>
<element name='_X_Sound' type='mx:_I_Sound' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Sound' type='mx:Sound' substitutionGroup='mx:_X_Sound'/>
<element name='_X_Spacer' type='mx:_I_mx.controls.Spacer' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='Spacer' type='mx:mx.controls.Spacer' substitutionGroup='mx:_X_Spacer'/>
<element name='_X_String' type='mx:_I_String' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='String' type='mx:String' substitutionGroup='mx:_X_String'/>
<element name='_X_StringFormatter' type='mx:_I_mx.formatters.StringFormatter' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='StringFormatter' type='mx:mx.formatters.StringFormatter' substitutionGroup='mx:_X_StringFormatter'/>
<element name='_X_StringValidator' type='mx:_I_mx.validators.StringValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='StringValidator' type='mx:mx.validators.StringValidator' substitutionGroup='mx:_X_StringValidator'/>
<element name='_X_Stroke' type='mx:_I_mx.graphics.Stroke' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Stroke' type='mx:mx.graphics.Stroke' substitutionGroup='mx:_X_Stroke'/>
<element name='_X_StyleSheet' type='mx:_I_TextField.StyleSheet' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='StyleSheet' type='mx:TextField.StyleSheet' substitutionGroup='mx:_X_StyleSheet'/>
<element name='_X_Tab' type='mx:_I_mx.containers.tabclasses.Tab' abstract='true' substitutionGroup='mx:_X_Button'/>
<element name='Tab' type='mx:mx.containers.tabclasses.Tab' substitutionGroup='mx:_X_Tab'/>
<element name='_X_TabBar' type='mx:_I_mx.containers.TabBar' abstract='true' substitutionGroup='mx:_X_NavBar'/>
<element name='TabBar' type='mx:mx.containers.TabBar' substitutionGroup='mx:_X_TabBar'/>
<element name='_X_TabNavigator' type='mx:_I_mx.containers.TabNavigator' abstract='true' substitutionGroup='mx:_X_ViewStack'/>
<element name='TabNavigator' type='mx:mx.containers.TabNavigator' substitutionGroup='mx:_X_TabNavigator'/>
<element name='_X_TabSkin' type='mx:_I_mx.skins.halo.TabSkin' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='TabSkin' type='mx:mx.skins.halo.TabSkin' substitutionGroup='mx:_X_TabSkin'/>
<element name='_X_Text' type='mx:_I_mx.controls.Text' abstract='true' substitutionGroup='mx:_X_Label'/>
<element name='Text' type='mx:mx.controls.Text' substitutionGroup='mx:_X_Text'/>
<element name='_X_TextArea' type='mx:_I_mx.controls.TextArea' abstract='true' substitutionGroup='mx:_X_mx.core.ScrollView'/>
<element name='TextArea' type='mx:mx.controls.TextArea' substitutionGroup='mx:_X_TextArea'/>
<element name='_X_TextField' type='mx:_I_TextField' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='TextField' type='mx:TextField' substitutionGroup='mx:_X_TextField'/>
<element name='_X_TextFormat' type='mx:_I_TextFormat' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='TextFormat' type='mx:TextFormat' substitutionGroup='mx:_X_TextFormat'/>
<element name='_X_TextInput' type='mx:_I_mx.controls.TextInput' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='TextInput' type='mx:mx.controls.TextInput' substitutionGroup='mx:_X_TextInput'/>
<element name='_X_TextSnapshot' type='mx:_I_TextSnapshot' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='TextSnapshot' type='mx:TextSnapshot' substitutionGroup='mx:_X_TextSnapshot'/>
<element name='_X_Tile' type='mx:_I_mx.containers.Tile' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='Tile' type='mx:mx.containers.Tile' substitutionGroup='mx:_X_Tile'/>
<element name='_X_TileList' type='mx:_I_mx.controls.TileList' abstract='true' substitutionGroup='mx:_X_mx.controls.listclasses.ItemList'/>
<element name='TileList' type='mx:mx.controls.TileList' substitutionGroup='mx:_X_TileList'/>
<element name='_X_TitleBackground' type='mx:_I_mx.skins.halo.TitleBackground' abstract='true' substitutionGroup='mx:_X_mx.skins.RectBorder'/>
<element name='TitleBackground' type='mx:mx.skins.halo.TitleBackground' substitutionGroup='mx:_X_TitleBackground'/>
<element name='_X_TitleWindow' type='mx:_I_mx.containers.TitleWindow' abstract='true' substitutionGroup='mx:_X_Panel'/>
<element name='TitleWindow' type='mx:mx.containers.TitleWindow' substitutionGroup='mx:_X_TitleWindow'/>
<element name='_X_Tree' type='mx:_I_mx.controls.Tree' abstract='true' substitutionGroup='mx:_X_List'/>
<element name='Tree' type='mx:mx.controls.Tree' substitutionGroup='mx:_X_Tree'/>
<element name='_X_TriangleRenderer' type='mx:_I_mx.charts.renderers.TriangleRenderer' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='TriangleRenderer' type='mx:mx.charts.renderers.TriangleRenderer' substitutionGroup='mx:_X_TriangleRenderer'/>
<element name='_X_URI' type='mx:_I_URI' abstract='true' substitutionGroup='mx:_X_String'/>
<element name='URI' type='mx:URI' substitutionGroup='mx:_X_URI'/>
<element name='_X_VBox' type='mx:_I_mx.containers.VBox' abstract='true' substitutionGroup='mx:_X_Box'/>
<element name='VBox' type='mx:mx.containers.VBox' substitutionGroup='mx:_X_VBox'/>
<element name='_X_VDividedBox' type='mx:_I_mx.containers.VDividedBox' abstract='true' substitutionGroup='mx:_X_DividedBox'/>
<element name='VDividedBox' type='mx:mx.containers.VDividedBox' substitutionGroup='mx:_X_VDividedBox'/>
<element name='_X_VRule' type='mx:_I_mx.controls.VRule' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='VRule' type='mx:mx.controls.VRule' substitutionGroup='mx:_X_VRule'/>
<element name='_X_VScrollBar' type='mx:_I_mx.controls.VScrollBar' abstract='true' substitutionGroup='mx:_X_mx.controls.scrollClasses.ScrollBar'/>
<element name='VScrollBar' type='mx:mx.controls.VScrollBar' substitutionGroup='mx:_X_VScrollBar'/>
<element name='_X_VSlider' type='mx:_I_mx.controls.VSlider' abstract='true' substitutionGroup='mx:_X_mx.controls.sliderclasses.Slider'/>
<element name='VSlider' type='mx:mx.controls.VSlider' substitutionGroup='mx:_X_VSlider'/>
<element name='_X_VSliderAssets' type='mx:_I_mx.skins.halo.VSliderAssets' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='VSliderAssets' type='mx:mx.skins.halo.VSliderAssets' substitutionGroup='mx:_X_VSliderAssets'/>
<element name='_X_Validator' type='mx:_I_mx.validators.Validator' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='Validator' type='mx:mx.validators.Validator' substitutionGroup='mx:_X_Validator'/>
<element name='_X_ViewStack' type='mx:_I_mx.containers.ViewStack' abstract='true' substitutionGroup='mx:_X_mx.containers.Container'/>
<element name='ViewStack' type='mx:mx.containers.ViewStack' substitutionGroup='mx:_X_ViewStack'/>
<element name='_X_WebService' type='mx:_I_mx.servicetags.Service' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='WebService' type='mx:mx.servicetags.Service' substitutionGroup='mx:_X_WebService'/>
<element name='_X_WindowAssets' type='mx:_I_mx.skins.halo.WindowAssets' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='WindowAssets' type='mx:mx.skins.halo.WindowAssets' substitutionGroup='mx:_X_WindowAssets'/>
<element name='_X_WipeDown' type='mx:_I_mx.effects.WipeDown' abstract='true' substitutionGroup='mx:_X_mx.effects.MaskEffect'/>
<element name='WipeDown' type='mx:mx.effects.WipeDown' substitutionGroup='mx:_X_WipeDown'/>
<element name='_X_WipeLeft' type='mx:_I_mx.effects.WipeLeft' abstract='true' substitutionGroup='mx:_X_mx.effects.MaskEffect'/>
<element name='WipeLeft' type='mx:mx.effects.WipeLeft' substitutionGroup='mx:_X_WipeLeft'/>
<element name='_X_WipeRight' type='mx:_I_mx.effects.WipeRight' abstract='true' substitutionGroup='mx:_X_mx.effects.MaskEffect'/>
<element name='WipeRight' type='mx:mx.effects.WipeRight' substitutionGroup='mx:_X_WipeRight'/>
<element name='_X_WipeUp' type='mx:_I_mx.effects.WipeUp' abstract='true' substitutionGroup='mx:_X_mx.effects.MaskEffect'/>
<element name='WipeUp' type='mx:mx.effects.WipeUp' substitutionGroup='mx:_X_WipeUp'/>
<element name='_X_XML' type='mx:_I_XML' abstract='true' substitutionGroup='mx:_X_XMLNode'/>
<element name='XML' type='mx:XML' substitutionGroup='mx:_X_XML'/>
<element name='_X_XMLNode' type='mx:_I_XMLNode' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='XMLNode' type='mx:XMLNode' substitutionGroup='mx:_X_XMLNode'/>
<element name='_X_XPath' type='mx:_I_XPath' abstract='true' substitutionGroup='mx:_X_String'/>
<element name='XPath' type='mx:XPath' substitutionGroup='mx:_X_XPath'/>
<element name='_X_ZipCodeFormatter' type='mx:_I_mx.formatters.ZipCodeFormatter' abstract='true' substitutionGroup='mx:_X_Formatter'/>
<element name='ZipCodeFormatter' type='mx:mx.formatters.ZipCodeFormatter' substitutionGroup='mx:_X_ZipCodeFormatter'/>
<element name='_X_ZipCodeValidator' type='mx:_I_mx.validators.ZipCodeValidator' abstract='true' substitutionGroup='mx:_X_Validator'/>
<element name='ZipCodeValidator' type='mx:mx.validators.ZipCodeValidator' substitutionGroup='mx:_X_ZipCodeValidator'/>
<element name='_X_Zoom' type='mx:_I_mx.effects.Zoom' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='Zoom' type='mx:mx.effects.Zoom' substitutionGroup='mx:_X_Zoom'/>
<element name='_X_capabilities' type='mx:_I_System.capabilities' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='capabilities' type='mx:System.capabilities' substitutionGroup='mx:_X_capabilities'/>
<element name='_X_mx.charts.chartClasses.AxisBase' type='mx:_I_mx.charts.chartClasses.AxisBase' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='_X_mx.charts.chartClasses.ChartComponent' type='mx:_I_mx.charts.chartClasses.ChartComponent' abstract='true' substitutionGroup='mx:_X_mx.events.EventDispatcher'/>
<element name='_X_mx.charts.chartClasses.ChartElement' type='mx:_I_mx.charts.chartClasses.ChartElement' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.ChartComponent'/>
<element name='_X_mx.charts.chartClasses.DataCanvas' type='mx:_I_mx.charts.chartClasses.DataCanvas' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.ChartComponent'/>
<element name='_X_mx.charts.chartClasses.Series' type='mx:_I_mx.charts.chartClasses.Series' abstract='true' substitutionGroup='mx:_X_mx.charts.chartClasses.ChartElement'/>
<element name='_X_mx.charts.effects.SeriesEffect' type='mx:_I_mx.charts.effects.SeriesEffect' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='_X_mx.containers.Container' type='mx:_I_mx.containers.Container' abstract='true' substitutionGroup='mx:_X_mx.core.View'/>
<element name='_X_mx.controls.ComboBase' type='mx:_I_mx.controls.ComboBase' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='_X_mx.controls.listclasses.ItemList' type='mx:_I_mx.controls.listclasses.ItemList' abstract='true' substitutionGroup='mx:_X_mx.controls.listclasses.ItemScrollSelectList'/>
<element name='_X_mx.controls.listclasses.ItemScrollSelectList' type='mx:_I_mx.controls.listclasses.ItemScrollSelectList' abstract='true' substitutionGroup='mx:_X_mx.core.ScrollView'/>
<element name='_X_mx.controls.listclasses.ScrollSelectList' type='mx:_I_mx.controls.listclasses.ScrollSelectList' abstract='true' substitutionGroup='mx:_X_mx.core.ScrollView'/>
<element name='_X_mx.controls.scrollClasses.ScrollBar' type='mx:_I_mx.controls.scrollClasses.ScrollBar' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='_X_mx.controls.sliderclasses.Slider' type='mx:_I_mx.controls.sliderclasses.Slider' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='_X_mx.core.ScrollView' type='mx:_I_mx.core.ScrollView' abstract='true' substitutionGroup='mx:_X_mx.core.View'/>
<element name='_X_mx.core.UIComponent' type='mx:_I_mx.core.UIComponent' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='_X_mx.core.UIObject' type='mx:_I_mx.core.UIObject' abstract='true' substitutionGroup='mx:_X_MovieClip'/>
<element name='_X_mx.core.View' type='mx:_I_mx.core.View' abstract='true' substitutionGroup='mx:_X_mx.core.UIComponent'/>
<element name='_X_mx.effects.CompositeEffect' type='mx:_I_mx.effects.CompositeEffect' abstract='true' substitutionGroup='mx:_X_mx.effects.Effect'/>
<element name='_X_mx.effects.Effect' type='mx:_I_mx.effects.Effect' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='_X_mx.effects.MaskEffect' type='mx:_I_mx.effects.MaskEffect' abstract='true' substitutionGroup='mx:_X_mx.effects.TweenEffect'/>
<element name='_X_mx.effects.TweenEffect' type='mx:_I_mx.effects.TweenEffect' abstract='true' substitutionGroup='mx:_X_mx.effects.Effect'/>
<element name='_X_mx.events.EventDispatcher' type='mx:_I_mx.events.EventDispatcher' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='_X_mx.remoting.Service' type='mx:_I_mx.remoting.Service' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='_X_mx.skins.Border' type='mx:_I_mx.skins.Border' abstract='true' substitutionGroup='mx:_X_mx.core.UIObject'/>
<element name='_X_mx.skins.RectBorder' type='mx:_I_mx.skins.RectBorder' abstract='true' substitutionGroup='mx:_X_mx.skins.Border'/>
<element name='_X_mx.styles.CSSStyleDeclaration' type='mx:_I_mx.styles.CSSStyleDeclaration' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='_X_security' type='mx:_I_System.security' abstract='true' substitutionGroup='mx:_X_Object'/>
<element name='security' type='mx:System.security' substitutionGroup='mx:_X_security'/>
<complexType mixed='true' name='_I_Accessibility'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Accessibility'>
  <complexContent><extension base='mx:_I_Accessibility' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Array'><complexContent><extension base='mx:_I_Object'></extension></complexContent></complexType>
<complexType mixed='true' name='Array'><complexContent><extension base='mx:_I_Array'>
  <sequence minOccurs='0' maxOccurs='unbounded'><choice>
    <element ref="mx:_X_Object" />
    <any namespace="##other" processContents="lax"/>
  </choice></sequence>
  <attributeGroup ref="mx:id.attr"/>
</extension></complexContent></complexType>

<complexType mixed='true' name='_I_AsBroadcaster'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='AsBroadcaster'>
  <complexContent><extension base='mx:_I_AsBroadcaster' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Boolean'>
  <complexContent>
    <extension base='mx:_I_Object'/>
  </complexContent>
</complexType>
<complexType mixed='true' name='Boolean'>
  <complexContent>
    <extension base='mx:_I_Boolean'>
      <attributeGroup ref="mx:id.attr"/>
    </extension>
  </complexContent>
</complexType>

<complexType mixed='true' name='_I_Camera'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Camera'>
  <complexContent><extension base='mx:_I_Camera' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Color'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Color'>
  <complexContent><extension base='mx:_I_Color' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_ContextMenu'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='ContextMenu'>
  <complexContent><extension base='mx:_I_ContextMenu' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_ContextMenuItem'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='ContextMenuItem'>
  <complexContent><extension base='mx:_I_ContextMenuItem' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_CustomActions'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='CustomActions'>
  <complexContent><extension base='mx:_I_CustomActions' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Date'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Date'>
  <complexContent><extension base='mx:_I_Date' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Effect'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='Effect'>
  <complexContent><extension base='mx:_I_Effect' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Enumeration'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='Enumeration'>
  <complexContent><extension base='mx:_I_Enumeration' /></complexContent>
</complexType>
	<simpleType name="Event">
		<annotation>
			<documentation> event handler </documentation>
		</annotation>
		<restriction base="mx:ActionScript"/>
	</simpleType>



<complexType mixed='true' name='_I_File'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='File'>
  <complexContent><extension base='mx:_I_File' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_FontName'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='FontName'>
  <complexContent><extension base='mx:_I_FontName' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Function'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Function'>
  <complexContent><extension base='mx:_I_Function' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_FunctionArguments'>
  <complexContent><extension base='mx:_I_Array'/></complexContent>
</complexType>
<complexType mixed='true' name='FunctionArguments'>
  <complexContent><extension base='mx:_I_FunctionArguments' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Key'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Key'>
  <complexContent><extension base='mx:_I_Key' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_LoadVars'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='LoadVars'>
  <complexContent><extension base='mx:_I_LoadVars' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_LocalConnection'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='LocalConnection'>
  <complexContent><extension base='mx:_I_LocalConnection' /></complexContent>
</complexType>
<group name='_G_MovieClip'><choice>
  <element name='class' />
  <element name='height' />
  <element name='width' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_MovieClip'>
  <attribute name='class' type='string' />
  <attribute name='height' type='string' />
  <attribute name='width' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_MovieClip'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='MovieClip'>
  <complexContent><extension base='mx:_I_MovieClip'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_MovieClipLoader'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='MovieClipLoader'>
  <complexContent><extension base='mx:_I_MovieClipLoader' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_NetConnection'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='NetConnection'>
  <complexContent><extension base='mx:_I_NetConnection' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Number'>
  <complexContent>
    <extension base='mx:_I_Object'/>
  </complexContent>
</complexType>
<complexType mixed='true' name='Number'>
  <complexContent>
    <extension base='mx:_I_Number'>
      <attributeGroup ref="mx:id.attr"/>
    </extension>
  </complexContent>
</complexType>


<complexType mixed='true' name='_I_Object'></complexType>
<complexType mixed='true' name='Object'><complexContent><extension base='mx:_I_Object'>
  <sequence minOccurs='0' maxOccurs='unbounded'><choice>
    <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  </choice></sequence>
    <anyAttribute namespace="##any" processContents="lax"/>
</extension></complexContent></complexType>

<complexType mixed='true' name='_I_ObjectID'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='ObjectID'>
  <complexContent><extension base='mx:_I_ObjectID' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Selection'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Selection'>
  <complexContent><extension base='mx:_I_Selection' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_SharedObject'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='SharedObject'>
  <complexContent><extension base='mx:_I_SharedObject' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_Sound'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='Sound'>
  <complexContent><extension base='mx:_I_Sound' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_String'>
  <complexContent>
    <extension base='mx:_I_Object'/>
  </complexContent>
</complexType>
<complexType mixed='true' name='String'>
  <complexContent>
    <extension base='mx:_I_String'>
      <attributeGroup ref="mx:id.attr"/>
    </extension>
  </complexContent>
</complexType>

<complexType mixed='true' name='_I_System.capabilities'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='System.capabilities'>
  <complexContent><extension base='mx:_I_System.capabilities' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_System.security'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='System.security'>
  <complexContent><extension base='mx:_I_System.security' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_TextField'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='TextField'>
  <complexContent><extension base='mx:_I_TextField' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_TextField.StyleSheet'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='TextField.StyleSheet'>
  <complexContent><extension base='mx:_I_TextField.StyleSheet' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_TextFormat'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='TextFormat'>
  <complexContent><extension base='mx:_I_TextFormat' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_TextSnapshot'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='TextSnapshot'>
  <complexContent><extension base='mx:_I_TextSnapshot' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_URI'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='URI'>
  <complexContent><extension base='mx:_I_URI' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_XML'>
  <complexContent><extension base='mx:_I_XMLNode'/></complexContent>
</complexType>
<complexType mixed='true' name='XML'>
  <complexContent><extension base='mx:_I_XML' /></complexContent>
</complexType>
  <complexType mixed='true' name='_I_XMLNode'>
    <complexContent>
      <extension base='mx:_I_Object'>
		<sequence>
			<any namespace="##any" processContents="lax" 
                 minOccurs="0" maxOccurs="unbounded"/>
		</sequence>
		<attributeGroup ref="mx:id.attr"/>
		<attribute name="source" type="string"/>
      </extension>
    </complexContent>
  </complexType>
  <complexType mixed='true' name='XMLNode'>
    <complexContent><extension base='mx:_I_XMLNode'/></complexContent>
  </complexType>


<complexType mixed='true' name='_I_XPath'>
  <complexContent><extension base='mx:_I_String'/></complexContent>
</complexType>
<complexType mixed='true' name='XPath'>
  <complexContent><extension base='mx:_I_XPath' /></complexContent>
</complexType>
<group name='_G_mx.binding.Binding'><choice>
  <element name="source" />
  <element name="destination" />

</choice></group>
<attributeGroup name='_A_mx.binding.Binding'>
  <attribute name="source" type="string" />
  <attribute name="destination" type="string" />

  <attributeGroup ref="mx:id.attr"/>

</attributeGroup>
<complexType mixed='true' name='_I_mx.binding.Binding'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.binding.Binding'>
  <complexContent><extension base='mx:_I_mx.binding.Binding'>
    <group ref='mx:_G_mx.binding.Binding' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.binding.Binding' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.AreaChart'><choice>
  <element name='type' />
  <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' />
</choice></group>
<attributeGroup name='_A_mx.charts.AreaChart'>
  <attribute name='type' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.AreaChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.AreaChart'>
  <complexContent><extension base='mx:_I_mx.charts.AreaChart'>
    <group ref='mx:_G_mx.charts.AreaChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.AreaChart' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.AxisRenderer'><choice>
  <element name='axisStroke' />
  <element name='axisTitleStyle' />
  <element name='canDropLabels' />
  <element name='canStagger' />
  <element name='labelGap' />
  <element name='labelRotation' />
  <element name='minorTickDivisions' />
  <element name='minorTickLength' />
  <element name='minorTickPlacement' />
  <element name='minorTickStroke' />
  <element name='showLabels' />
  <element name='showLine' />
  <element name='tickAlignment' />
  <element name='tickLength' />
  <element name='tickPlacement' />
  <element name='tickStroke' />
  <element name='title' />
  <group ref='mx:_G_mx.charts.chartClasses.ChartComponent' />
</choice></group>
<attributeGroup name='_A_mx.charts.AxisRenderer'>
  <attribute name='axisStroke' type='string' />
  <attribute name='axisTitleStyle' type='string' />
  <attribute name='canDropLabels' type='string' />
  <attribute name='canStagger' type='string' />
  <attribute name='labelGap' type='string' />
  <attribute name='labelRotation' type='string' />
  <attribute name='minorTickDivisions' type='string' />
  <attribute name='minorTickLength' type='string' />
  <attribute name='minorTickPlacement' type='string' />
  <attribute name='minorTickStroke' type='string' />
  <attribute name='showLabels' type='string' />
  <attribute name='showLine' type='string' />
  <attribute name='tickAlignment' type='string' />
  <attribute name='tickLength' type='string' />
  <attribute name='tickPlacement' type='string' />
  <attribute name='tickStroke' type='string' />
  <attribute name='title' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.AxisRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.AxisRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.AxisRenderer'>
    <group ref='mx:_G_mx.charts.AxisRenderer' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.AxisRenderer' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.BarChart'><choice>
  <element name='barWidthRatio' />
  <element name='maxBarWidth' />
  <element name='type' />
  <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' />
</choice></group>
<attributeGroup name='_A_mx.charts.BarChart'>
  <attribute name='barWidthRatio' type='string' />
  <attribute name='maxBarWidth' type='string' />
  <attribute name='type' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.BarChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.BarChart'>
  <complexContent><extension base='mx:_I_mx.charts.BarChart'>
    <group ref='mx:_G_mx.charts.BarChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.BarChart' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.BubbleChart'><choice>
  <element name='maxRadius' />
  <element name='radiusAxis' />
  <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' />
</choice></group>
<attributeGroup name='_A_mx.charts.BubbleChart'>
  <attribute name='maxRadius' type='string' />
  <attribute name='radiusAxis' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.BubbleChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.BubbleChart'>
  <complexContent><extension base='mx:_I_mx.charts.BubbleChart'>
    <group ref='mx:_G_mx.charts.BubbleChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.BubbleChart' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.CategoryAxis'><choice>
  <element name='categoryField' />
  <element name='dataProvider' />
  <element name='padding' />
  <group ref='mx:_G_mx.charts.chartClasses.AxisBase' />
</choice></group>
<attributeGroup name='_A_mx.charts.CategoryAxis'>
  <attribute name='categoryField' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='padding' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.AxisBase' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.CategoryAxis'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.AxisBase'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.CategoryAxis'>
  <complexContent><extension base='mx:_I_mx.charts.CategoryAxis'>
    <group ref='mx:_G_mx.charts.CategoryAxis' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.CategoryAxis' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.ColumnChart'><choice>
  <element name='columnWidthRatio' />
  <element name='maxColumnWidth' />
  <element name='type' />
  <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' />
</choice></group>
<attributeGroup name='_A_mx.charts.ColumnChart'>
  <attribute name='columnWidthRatio' type='string' />
  <attribute name='maxColumnWidth' type='string' />
  <attribute name='type' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.ColumnChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.ColumnChart'>
  <complexContent><extension base='mx:_I_mx.charts.ColumnChart'>
    <group ref='mx:_G_mx.charts.ColumnChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.ColumnChart' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.GridLines'><choice>
  <element name='direction' />
  <element name='horizontalAlternateFill' />
  <element name='horizontalChangeCount' />
  <element name='horizontalFill' />
  <element name='horizontalOriginStroke' />
  <element name='horizontalShowOrigin' />
  <element name='horizontalStroke' />
  <element name='horizontalTickAligned' />
  <element name='verticalAlternateFill' />
  <element name='verticalChangeCount' />
  <element name='verticalFill' />
  <element name='verticalOriginStroke' />
  <element name='verticalShowOrigin' />
  <element name='verticalStroke' />
  <element name='verticalTickAligned' />
  <group ref='mx:_G_mx.charts.chartClasses.ChartComponent' />
</choice></group>
<attributeGroup name='_A_mx.charts.GridLines'>
  <attribute name='direction' type='string' />
  <attribute name='horizontalAlternateFill' type='string' />
  <attribute name='horizontalChangeCount' type='string' />
  <attribute name='horizontalFill' type='string' />
  <attribute name='horizontalOriginStroke' type='string' />
  <attribute name='horizontalShowOrigin' type='string' />
  <attribute name='horizontalStroke' type='string' />
  <attribute name='horizontalTickAligned' type='string' />
  <attribute name='verticalAlternateFill' type='string' />
  <attribute name='verticalChangeCount' type='string' />
  <attribute name='verticalFill' type='string' />
  <attribute name='verticalOriginStroke' type='string' />
  <attribute name='verticalShowOrigin' type='string' />
  <attribute name='verticalStroke' type='string' />
  <attribute name='verticalTickAligned' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.GridLines'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartElement'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.GridLines'>
  <complexContent><extension base='mx:_I_mx.charts.GridLines'>
    <group ref='mx:_G_mx.charts.GridLines' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.GridLines' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.HitData'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.HitData'>
  <complexContent><extension base='mx:_I_mx.charts.HitData' /></complexContent>
</complexType>
<group name='_G_mx.charts.Legend'><choice>
  <element name='dataProvider' />
  <element name='itemClick' />
  <element name='itemMouseDown' />
  <element name='itemMouseOut' />
  <element name='itemMouseOver' />
  <element name='itemMouseUp' />
  <element name='labelPlacement' />
  <element name='markerHeight' />
  <element name='markerWidth' />
  <element name='renderer' />
  <element name='stroke' />
  <group ref='mx:_G_mx.containers.Tile' />
</choice></group>
<attributeGroup name='_A_mx.charts.Legend'>
  <attribute name='dataProvider' type='string' />
  <attribute name='itemClick' type='string' />
  <attribute name='itemMouseDown' type='string' />
  <attribute name='itemMouseOut' type='string' />
  <attribute name='itemMouseOver' type='string' />
  <attribute name='itemMouseUp' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='markerHeight' type='string' />
  <attribute name='markerWidth' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='stroke' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Tile' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.Legend'>
  <complexContent><extension base='mx:_I_mx.containers.Tile'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.Legend'>
  <complexContent><extension base='mx:_I_mx.charts.Legend'>
    <group ref='mx:_G_mx.charts.Legend' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.Legend' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.LegendItem'><choice>
  <element name='click' />
  <element name='fill' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='markerHeight' />
  <element name='markerWidth' />
  <element name='renderer' />
  <element name='stroke' />
  <group ref='mx:_G_mx.core.UIObject' />
</choice></group>
<attributeGroup name='_A_mx.charts.LegendItem'>
  <attribute name='click' type='string' />
  <attribute name='fill' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='markerHeight' type='string' />
  <attribute name='markerWidth' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='stroke' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIObject' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.LegendItem'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.LegendItem'>
  <complexContent><extension base='mx:_I_mx.charts.LegendItem'>
    <group ref='mx:_G_mx.charts.LegendItem' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.LegendItem' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.LineChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.LineChart'>
  <complexContent><extension base='mx:_I_mx.charts.LineChart'>
    <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.LinearAxis'><choice>
  <element name='autoAdjust' />
  <element name='baseAtZero' />
  <element name='interval' />
  <element name='maximum' />
  <element name='minimum' />
  <element name='padding' />
  <group ref='mx:_G_mx.charts.chartClasses.AxisBase' />
</choice></group>
<attributeGroup name='_A_mx.charts.LinearAxis'>
  <attribute name='autoAdjust' type='string' />
  <attribute name='baseAtZero' type='string' />
  <attribute name='interval' type='string' />
  <attribute name='maximum' type='string' />
  <attribute name='minimum' type='string' />
  <attribute name='padding' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.AxisBase' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.LinearAxis'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.AxisBase'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.LinearAxis'>
  <complexContent><extension base='mx:_I_mx.charts.LinearAxis'>
    <group ref='mx:_G_mx.charts.LinearAxis' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.LinearAxis' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.PieChart'><choice>
  <element name='innerRadius' />
  <group ref='mx:_G_mx.charts.chartClasses.ChartBase' />
</choice></group>
<attributeGroup name='_A_mx.charts.PieChart'>
  <attribute name='innerRadius' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartBase' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.PieChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.PolarChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.PieChart'>
  <complexContent><extension base='mx:_I_mx.charts.PieChart'>
    <group ref='mx:_G_mx.charts.PieChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.PieChart' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.PlotChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.PlotChart'>
  <complexContent><extension base='mx:_I_mx.charts.PlotChart'>
    <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.Axis'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.Axis'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Axis' /></complexContent>
</complexType>
<group name='_G_mx.charts.chartClasses.AxisBase'><choice>
  <element name='name' />
</choice></group>
<attributeGroup name='_A_mx.charts.chartClasses.AxisBase'>
  <attribute name='name' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.chartClasses.AxisBase'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.AxisBase'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.AxisBase'>
    <group ref='mx:_G_mx.charts.chartClasses.AxisBase' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.AxisBase' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.CartesianCanvas'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.DataCanvas'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.CartesianCanvas'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianCanvas'>
    <group ref='mx:_G_mx.charts.chartClasses.DataCanvas' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.DataCanvas' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.chartClasses.CartesianChart'><choice>
  <element name='axisTitleStyle' />
  <element name='gutterBottom' />
  <element name='gutterLeft' />
  <element name='gutterRight' />
  <element name='gutterTop' />
  <element name='horizontalAxis' />
  <element name='horizontalAxisRenderer' />
  <element name='horizontalAxisStyle' />
  <element name='verticalAxis' />
  <element name='verticalAxisRenderer' />
  <element name='verticalAxisStyle' />
  <group ref='mx:_G_mx.charts.chartClasses.ChartBase' />
</choice></group>
<attributeGroup name='_A_mx.charts.chartClasses.CartesianChart'>
  <attribute name='axisTitleStyle' type='string' />
  <attribute name='gutterBottom' type='string' />
  <attribute name='gutterLeft' type='string' />
  <attribute name='gutterRight' type='string' />
  <attribute name='gutterTop' type='string' />
  <attribute name='horizontalAxis' type='string' />
  <attribute name='horizontalAxisRenderer' type='string' />
  <attribute name='horizontalAxisStyle' type='string' />
  <attribute name='verticalAxis' type='string' />
  <attribute name='verticalAxisRenderer' type='string' />
  <attribute name='verticalAxisStyle' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartBase' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.chartClasses.CartesianChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartBase'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.CartesianChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.CartesianChart'>
    <group ref='mx:_G_mx.charts.chartClasses.CartesianChart' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.CartesianChart' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.chartClasses.ChartBase'><choice>
  <element name='annotationElements' />
  <element name='backgroundElements' />
  <element name='chartSeriesStyles' />
  <element name='clipContent' />
  <element name='dataProvider' />
  <element name='description' />
  <element name='fill' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='mouseClickData' />
  <element name='mouseMoveData' />
  <element name='mouseOutData' />
  <element name='mouseOverData' />
  <element name='mouseSensitivity' />
  <element name='series' />
  <element name='showDataTips' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.charts.chartClasses.ChartBase'>
  <attribute name='annotationElements' type='string' />
  <attribute name='backgroundElements' type='string' />
  <attribute name='chartSeriesStyles' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='description' type='string' />
  <attribute name='fill' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='mouseClickData' type='string' />
  <attribute name='mouseMoveData' type='string' />
  <attribute name='mouseOutData' type='string' />
  <attribute name='mouseOverData' type='string' />
  <attribute name='mouseSensitivity' type='string' />
  <attribute name='series' type='string' />
  <attribute name='showDataTips' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.chartClasses.ChartBase'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.ChartBase'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartBase'>
    <group ref='mx:_G_mx.charts.chartClasses.ChartBase' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartBase' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.chartClasses.ChartComponent'><choice>
  <element name='styleName' />
</choice></group>
<attributeGroup name='_A_mx.charts.chartClasses.ChartComponent'>
  <attribute name='styleName' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.chartClasses.ChartComponent'>
  <complexContent><extension base='mx:_I_mx.events.EventDispatcher'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.ChartComponent'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartComponent'>
    <group ref='mx:_G_mx.charts.chartClasses.ChartComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartComponent' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.ChartElement'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.ChartElement'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartElement'>
    <group ref='mx:_G_mx.charts.chartClasses.ChartComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartComponent' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.ChartPeer'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.ChartPeer'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartPeer'>
    <group ref='mx:_G_mx.core.UIComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIComponent' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.chartClasses.DataCanvas'><choice>
  <element name='legendDataChanged' />
  <group ref='mx:_G_mx.charts.chartClasses.ChartComponent' />
</choice></group>
<attributeGroup name='_A_mx.charts.chartClasses.DataCanvas'>
  <attribute name='legendDataChanged' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.chartClasses.DataCanvas'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.DataCanvas'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.DataCanvas'>
    <group ref='mx:_G_mx.charts.chartClasses.DataCanvas' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.DataCanvas' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.IChartElement'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.IChartElement'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.IChartElement' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.LabelCache'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.LabelCache'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.LabelCache' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.PolarCanvas'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.DataCanvas'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.PolarCanvas'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.PolarCanvas'>
    <group ref='mx:_G_mx.charts.chartClasses.DataCanvas' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.DataCanvas' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.chartClasses.PolarChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartBase'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.PolarChart'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.PolarChart'>
    <group ref='mx:_G_mx.charts.chartClasses.ChartBase' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartBase' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.chartClasses.Series'><choice>
  <element name='fill' />
  <element name='filterData' />
  <element name='hideDataEffect' />
  <element name='interactive' />
  <element name='name' />
  <element name='showDataEffect' />
  <element name='stroke' />
  <group ref='mx:_G_mx.charts.chartClasses.ChartComponent' />
</choice></group>
<attributeGroup name='_A_mx.charts.chartClasses.Series'>
  <attribute name='fill' type='string' />
  <attribute name='filterData' type='string' />
  <attribute name='hideDataEffect' type='string' />
  <attribute name='interactive' type='string' />
  <attribute name='name' type='string' />
  <attribute name='showDataEffect' type='string' />
  <attribute name='stroke' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.ChartComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.chartClasses.Series'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.ChartElement'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.chartClasses.Series'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'>
    <group ref='mx:_G_mx.charts.chartClasses.Series' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.effects.SeriesEffect'><choice>
  <element name='elementOffset' />
  <element name='minimumElementDuration' />
  <element name='offset' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
</choice></group>
<attributeGroup name='_A_mx.charts.effects.SeriesEffect'>
  <attribute name='elementOffset' type='string' />
  <attribute name='minimumElementDuration' type='string' />
  <attribute name='offset' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.effects.SeriesEffect'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.effects.SeriesEffect'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesEffect'>
    <group ref='mx:_G_mx.charts.effects.SeriesEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.effects.SeriesEffect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.effects.SeriesInterpolate'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.effects.SeriesInterpolate'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesInterpolate'>
    <group ref='mx:_G_mx.charts.effects.SeriesEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.effects.SeriesEffect' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.effects.SeriesSlide'><choice>
  <element name='direction' />
  <group ref='mx:_G_mx.charts.effects.SeriesEffect' />
</choice></group>
<attributeGroup name='_A_mx.charts.effects.SeriesSlide'>
  <attribute name='direction' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.effects.SeriesEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.effects.SeriesSlide'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.effects.SeriesSlide'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesSlide'>
    <group ref='mx:_G_mx.charts.effects.SeriesSlide' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.effects.SeriesSlide' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.effects.SeriesZoom'><choice>
  <element name='horizontalFocus' />
  <element name='relativeTo' />
  <element name='verticalFocus' />
  <group ref='mx:_G_mx.charts.effects.SeriesEffect' />
</choice></group>
<attributeGroup name='_A_mx.charts.effects.SeriesZoom'>
  <attribute name='horizontalFocus' type='string' />
  <attribute name='relativeTo' type='string' />
  <attribute name='verticalFocus' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.effects.SeriesEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.effects.SeriesZoom'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.effects.SeriesZoom'>
  <complexContent><extension base='mx:_I_mx.charts.effects.SeriesZoom'>
    <group ref='mx:_G_mx.charts.effects.SeriesZoom' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.effects.SeriesZoom' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.renderers.AssetRenderer'><choice>
  <element name='source' />
</choice></group>
<attributeGroup name='_A_mx.charts.renderers.AssetRenderer'>
  <attribute name='source' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.renderers.AssetRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.AssetRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.AssetRenderer'>
    <group ref='mx:_G_mx.charts.renderers.AssetRenderer' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.renderers.AssetRenderer' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.CircleRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.CircleRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.CircleRenderer' /></complexContent>
</complexType>
<group name='_G_mx.charts.renderers.CrossRenderer'><choice>
  <element name='thickness' />
</choice></group>
<attributeGroup name='_A_mx.charts.renderers.CrossRenderer'>
  <attribute name='thickness' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.renderers.CrossRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.CrossRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.CrossRenderer'>
    <group ref='mx:_G_mx.charts.renderers.CrossRenderer' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.renderers.CrossRenderer' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.DiamondRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.DiamondRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.DiamondRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.ShadowBoxRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.ShadowBoxRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.ShadowBoxRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.ShadowLineRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.ShadowLineRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.ShadowLineRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.ShadowWedgeRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.ShadowWedgeRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.ShadowWedgeRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.SimpleAreaRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.SimpleAreaRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.SimpleAreaRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.SimpleBoxRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.SimpleBoxRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.SimpleBoxRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.SimpleLineRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.SimpleLineRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.SimpleLineRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.TriangleRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.TriangleRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.TriangleRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.interfaces.AreaRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.interfaces.AreaRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.interfaces.AreaRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.interfaces.BoxRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.interfaces.BoxRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.interfaces.BoxRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.interfaces.LineRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.interfaces.LineRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.interfaces.LineRenderer' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.renderers.interfaces.WedgeRenderer'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.renderers.interfaces.WedgeRenderer'>
  <complexContent><extension base='mx:_I_mx.charts.renderers.interfaces.WedgeRenderer' /></complexContent>
</complexType>
<group name='_G_mx.charts.series.AreaSeries'><choice>
  <element name='form' />
  <element name='minField' />
  <element name='pointFill' />
  <element name='pointRadius' />
  <element name='pointRenderer' />
  <element name='pointStroke' />
  <element name='renderer' />
  <element name='xField' />
  <element name='yField' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.AreaSeries'>
  <attribute name='form' type='string' />
  <attribute name='minField' type='string' />
  <attribute name='pointFill' type='string' />
  <attribute name='pointRadius' type='string' />
  <attribute name='pointRenderer' type='string' />
  <attribute name='pointStroke' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='xField' type='string' />
  <attribute name='yField' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.AreaSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.AreaSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.AreaSeries'>
    <group ref='mx:_G_mx.charts.series.AreaSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.AreaSeries' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.series.BarSeries'><choice>
  <element name='barWidthRatio' />
  <element name='maxBarWidth' />
  <element name='minField' />
  <element name='offset' />
  <element name='renderer' />
  <element name='xField' />
  <element name='yField' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.BarSeries'>
  <attribute name='barWidthRatio' type='string' />
  <attribute name='maxBarWidth' type='string' />
  <attribute name='minField' type='string' />
  <attribute name='offset' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='xField' type='string' />
  <attribute name='yField' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.BarSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.BarSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.BarSeries'>
    <group ref='mx:_G_mx.charts.series.BarSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.BarSeries' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.series.BubbleSeries'><choice>
  <element name='radiusField' />
  <element name='renderer' />
  <element name='xField' />
  <element name='yField' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.BubbleSeries'>
  <attribute name='radiusField' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='xField' type='string' />
  <attribute name='yField' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.BubbleSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.BubbleSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.BubbleSeries'>
    <group ref='mx:_G_mx.charts.series.BubbleSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.BubbleSeries' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.series.ColumnSeries'><choice>
  <element name='columnWidthRatio' />
  <element name='maxColumnWidth' />
  <element name='minField' />
  <element name='offset' />
  <element name='renderer' />
  <element name='xField' />
  <element name='yField' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.ColumnSeries'>
  <attribute name='columnWidthRatio' type='string' />
  <attribute name='maxColumnWidth' type='string' />
  <attribute name='minField' type='string' />
  <attribute name='offset' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='xField' type='string' />
  <attribute name='yField' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.ColumnSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.ColumnSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.ColumnSeries'>
    <group ref='mx:_G_mx.charts.series.ColumnSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.ColumnSeries' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.series.LineSeries'><choice>
  <element name='form' />
  <element name='interpolateValues' />
  <element name='pointFill' />
  <element name='pointRadius' />
  <element name='pointRenderer' />
  <element name='pointStroke' />
  <element name='renderer' />
  <element name='xField' />
  <element name='yField' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.LineSeries'>
  <attribute name='form' type='string' />
  <attribute name='interpolateValues' type='string' />
  <attribute name='pointFill' type='string' />
  <attribute name='pointRadius' type='string' />
  <attribute name='pointRenderer' type='string' />
  <attribute name='pointStroke' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='xField' type='string' />
  <attribute name='yField' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.LineSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.LineSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.LineSeries'>
    <group ref='mx:_G_mx.charts.series.LineSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.LineSeries' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.series.PieSeries'><choice>
  <element name='calloutGap' />
  <element name='calloutStroke' />
  <element name='field' />
  <element name='fills' />
  <element name='innerRadius' />
  <element name='insideLabelSizeLimit' />
  <element name='labelFunction' />
  <element name='labelPosition' />
  <element name='nameField' />
  <element name='radialStroke' />
  <element name='renderer' />
  <element name='startAngle' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.PieSeries'>
  <attribute name='calloutGap' type='string' />
  <attribute name='calloutStroke' type='string' />
  <attribute name='field' type='string' />
  <attribute name='fills' type='string' />
  <attribute name='innerRadius' type='string' />
  <attribute name='insideLabelSizeLimit' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='labelPosition' type='string' />
  <attribute name='nameField' type='string' />
  <attribute name='radialStroke' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='startAngle' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.PieSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.PieSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.PieSeries'>
    <group ref='mx:_G_mx.charts.series.PieSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.PieSeries' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.charts.series.PlotSeries'><choice>
  <element name='radius' />
  <element name='renderer' />
  <element name='xField' />
  <element name='yField' />
  <group ref='mx:_G_mx.charts.chartClasses.Series' />
</choice></group>
<attributeGroup name='_A_mx.charts.series.PlotSeries'>
  <attribute name='radius' type='string' />
  <attribute name='renderer' type='string' />
  <attribute name='xField' type='string' />
  <attribute name='yField' type='string' />
  <attributeGroup ref='mx:_A_mx.charts.chartClasses.Series' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.charts.series.PlotSeries'>
  <complexContent><extension base='mx:_I_mx.charts.chartClasses.Series'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.series.PlotSeries'>
  <complexContent><extension base='mx:_I_mx.charts.series.PlotSeries'>
    <group ref='mx:_G_mx.charts.series.PlotSeries' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.charts.series.PlotSeries' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.charts.styles.HaloDefaults'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.charts.styles.HaloDefaults'>
  <complexContent><extension base='mx:_I_mx.charts.styles.HaloDefaults' /></complexContent>
</complexType>
<group name='_G_mx.containers.Accordion'><choice>
  <element name='change' />
  <element name='childIcons' />
  <element name='childLabels' />
  <element name='childNames' />
  <element name='childSymbols' />
  <element name='headerClass' />
  <element name='headerHeight' />
  <element name='historyManagement' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='openDuration' />
  <element name='openEasing' />
  <element name='selectedIndex' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <group ref='mx:_G_mx.containers.Container' />
</choice></group>
<attributeGroup name='_A_mx.containers.Accordion'>
  <attribute name='change' type='string' />
  <attribute name='childIcons' type='string' />
  <attribute name='childLabels' type='string' />
  <attribute name='childNames' type='string' />
  <attribute name='childSymbols' type='string' />
  <attribute name='headerClass' type='string' />
  <attribute name='headerHeight' type='string' />
  <attribute name='historyManagement' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='openDuration' type='string' />
  <attribute name='openEasing' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Container' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Accordion'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Accordion'>
  <complexContent><extension base='mx:_I_mx.containers.Accordion'>
    <group ref='mx:_G_mx.containers.Accordion' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Accordion' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.Box'><choice>
  <element name='direction' />
  <element name='horizontalAlign' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='verticalAlign' />
  <group ref='mx:_G_mx.containers.Container' />
</choice></group>
<attributeGroup name='_A_mx.containers.Box'>
  <attribute name='direction' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Container' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Box'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Box'>
  <complexContent><extension base='mx:_I_mx.containers.Box'>
    <group ref='mx:_G_mx.containers.Box' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Box' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.containers.Canvas'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Canvas'>
  <complexContent><extension base='mx:_I_mx.containers.Canvas'>
    <group ref='mx:_G_mx.containers.Container' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Container' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.Container'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.Container'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Container'>
  <complexContent><extension base='mx:_I_mx.core.View'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Container'>
  <complexContent><extension base='mx:_I_mx.containers.Container'>
    <group ref='mx:_G_mx.containers.Container' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Container' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.ControlBar'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.ControlBar'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.ControlBar'>
  <complexContent><extension base='mx:_I_mx.containers.HBox'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.ControlBar'>
  <complexContent><extension base='mx:_I_mx.containers.ControlBar'>
    <group ref='mx:_G_mx.containers.ControlBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.ControlBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.DividedBox'><choice>
  <element name='dividerAffordance' />
  <element name='dividerColor' />
  <element name='dividerDragged' />
  <element name='dividerPressed' />
  <element name='dividerReleased' />
  <element name='dividerThickness' />
  <element name='liveDragging' />
  <group ref='mx:_G_mx.containers.Box' />
</choice></group>
<attributeGroup name='_A_mx.containers.DividedBox'>
  <attribute name='dividerAffordance' type='string' />
  <attribute name='dividerColor' type='string' />
  <attribute name='dividerDragged' type='string' />
  <attribute name='dividerPressed' type='string' />
  <attribute name='dividerReleased' type='string' />
  <attribute name='dividerThickness' type='string' />
  <attribute name='liveDragging' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Box' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.DividedBox'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.DividedBox'>
  <complexContent><extension base='mx:_I_mx.containers.DividedBox'>
    <group ref='mx:_G_mx.containers.DividedBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.DividedBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.Form'><choice>
  <element name='indicatorGap' />
  <element name='labelWidth' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <group ref='mx:_G_mx.containers.Container' />
</choice></group>
<attributeGroup name='_A_mx.containers.Form'>
  <attribute name='indicatorGap' type='string' />
  <attribute name='labelWidth' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Container' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Form'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Form'>
  <complexContent><extension base='mx:_I_mx.containers.Form'>
    <group ref='mx:_G_mx.containers.Form' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Form' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.FormHeading'><choice>
  <element name='indicatorGap' />
  <element name='label' />
  <element name='labelWidth' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.containers.FormHeading'>
  <attribute name='indicatorGap' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelWidth' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.FormHeading'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.FormHeading'>
  <complexContent><extension base='mx:_I_mx.containers.FormHeading'>
    <group ref='mx:_G_mx.containers.FormHeading' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.FormHeading' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.FormItem'><choice>
  <element name='direction' />
  <element name='horizontalAlign' />
  <element name='indicatorGap' />
  <element name='labelWidth' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='required' />
  <group ref='mx:_G_mx.containers.Container' />
</choice></group>
<attributeGroup name='_A_mx.containers.FormItem'>
  <attribute name='direction' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='indicatorGap' type='string' />
  <attribute name='labelWidth' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='required' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Container' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.FormItem'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.FormItem'>
  <complexContent><extension base='mx:_I_mx.containers.FormItem'>
    <group ref='mx:_G_mx.containers.FormItem' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.FormItem' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.Grid'><choice>
  <element name='columnWidths' />
  <element name='rowHeights' />
  <group ref='mx:_G_mx.containers.Box' />
</choice></group>
<attributeGroup name='_A_mx.containers.Grid'>
  <attribute name='columnWidths' type='string' />
  <attribute name='rowHeights' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Box' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Grid'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Grid'>
  <complexContent><extension base='mx:_I_mx.containers.Grid'>
    <group ref='mx:_G_mx.containers.Grid' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Grid' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.GridItem'><choice>
  <element name='colSpan' />
  <element name='rowSpan' />
  <group ref='mx:_G_mx.containers.HBox' />
</choice></group>
<attributeGroup name='_A_mx.containers.GridItem'>
  <attribute name='colSpan' type='string' />
  <attribute name='rowSpan' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.HBox' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.GridItem'>
  <complexContent><extension base='mx:_I_mx.containers.HBox'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.GridItem'>
  <complexContent><extension base='mx:_I_mx.containers.GridItem'>
    <group ref='mx:_G_mx.containers.GridItem' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.GridItem' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.GridRow'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='columnWidths' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='direction' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='rowHeights' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.GridRow'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='columnWidths' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='direction' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='rowHeights' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.GridRow'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.GridRow'>
  <complexContent><extension base='mx:_I_mx.containers.GridRow'>
    <group ref='mx:_G_mx.containers.GridRow' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.GridRow' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.HBox'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.HBox'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.HBox'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.HBox'>
  <complexContent><extension base='mx:_I_mx.containers.HBox'>
    <group ref='mx:_G_mx.containers.HBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.HBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.HDividedBox'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dividerAffordance' />
  <element name='dividerColor' />
  <element name='dividerDragged' />
  <element name='dividerPressed' />
  <element name='dividerReleased' />
  <element name='dividerThickness' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveDragging' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.HDividedBox'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dividerAffordance' type='string' />
  <attribute name='dividerColor' type='string' />
  <attribute name='dividerDragged' type='string' />
  <attribute name='dividerPressed' type='string' />
  <attribute name='dividerReleased' type='string' />
  <attribute name='dividerThickness' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveDragging' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.HDividedBox'>
  <complexContent><extension base='mx:_I_mx.containers.DividedBox'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.HDividedBox'>
  <complexContent><extension base='mx:_I_mx.containers.HDividedBox'>
    <group ref='mx:_G_mx.containers.HDividedBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.HDividedBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.LinkBar'><choice>
  <element name='rollOverColor' />
  <element name='selectionColor' />
  <element name='strokeColor' />
  <element name='strokeWidth' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <group ref='mx:_G_mx.containers.NavBar' />
  <element name='itemClick' />
</choice></group>
<attributeGroup name='_A_mx.containers.LinkBar'>
  <attribute name='rollOverColor' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='strokeColor' type='string' />
  <attribute name='strokeWidth' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.NavBar' />
  <attribute name='itemClick' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.LinkBar'>
  <complexContent><extension base='mx:_I_mx.containers.NavBar'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.LinkBar'>
  <complexContent><extension base='mx:_I_mx.containers.LinkBar'>
    <group ref='mx:_G_mx.containers.LinkBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.LinkBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.NavBar'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='click' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='dataProvider' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='direction' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='labelField' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.NavBar'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='click' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='direction' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.NavBar'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.NavBar'>
  <complexContent><extension base='mx:_I_mx.containers.NavBar'>
    <group ref='mx:_G_mx.containers.NavBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.NavBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.Panel'><choice>
  <element name='click' />
  <element name='footerColors' />
  <element name='headerColors' />
  <element name='headerHeight' />
  <element name='mouseDownOutside' />
  <element name='panelBorderStyle' />
  <element name='resizeEndEffect' />
  <element name='resizeStartEffect' />
  <element name='status' />
  <element name='statusStyleDeclaration' />
  <element name='title' />
  <element name='titleStyleDeclaration' />
  <group ref='mx:_G_mx.containers.VBox' />
</choice></group>
<attributeGroup name='_A_mx.containers.Panel'>
  <attribute name='click' type='string' />
  <attribute name='footerColors' type='string' />
  <attribute name='headerColors' type='string' />
  <attribute name='headerHeight' type='string' />
  <attribute name='mouseDownOutside' type='string' />
  <attribute name='panelBorderStyle' type='string' />
  <attribute name='resizeEndEffect' type='string' />
  <attribute name='resizeStartEffect' type='string' />
  <attribute name='status' type='string' />
  <attribute name='statusStyleDeclaration' type='string' />
  <attribute name='title' type='string' />
  <attribute name='titleStyleDeclaration' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.VBox' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Panel'>
  <complexContent><extension base='mx:_I_mx.containers.VBox'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Panel'>
  <complexContent><extension base='mx:_I_mx.containers.Panel'>
    <group ref='mx:_G_mx.containers.Panel' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Panel' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.TabBar'><choice>
  <element name='activeTabStyleDeclaration' />
  <element name='selectedIndex' />
  <element name='tabHeight' />
  <element name='tabWidth' />
  <group ref='mx:_G_mx.containers.NavBar' />
</choice></group>
<attributeGroup name='_A_mx.containers.TabBar'>
  <attribute name='activeTabStyleDeclaration' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='tabHeight' type='string' />
  <attribute name='tabWidth' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.NavBar' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.TabBar'>
  <complexContent><extension base='mx:_I_mx.containers.NavBar'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.TabBar'>
  <complexContent><extension base='mx:_I_mx.containers.TabBar'>
    <group ref='mx:_G_mx.containers.TabBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.TabBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.TabNavigator'><choice>
  <element name='activeTabStyleDeclaration' />
  <element name='horizontalAlign' />
  <element name='tabHeight' />
  <element name='tabWidth' />
  <group ref='mx:_G_mx.containers.ViewStack' />
</choice></group>
<attributeGroup name='_A_mx.containers.TabNavigator'>
  <attribute name='activeTabStyleDeclaration' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='tabHeight' type='string' />
  <attribute name='tabWidth' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.ViewStack' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.TabNavigator'>
  <complexContent><extension base='mx:_I_mx.containers.ViewStack'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.TabNavigator'>
  <complexContent><extension base='mx:_I_mx.containers.TabNavigator'>
    <group ref='mx:_G_mx.containers.TabNavigator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.TabNavigator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.Tile'><choice>
  <element name='direction' />
  <element name='horizontalAlign' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='tileHeight' />
  <element name='tileWidth' />
  <element name='verticalAlign' />
  <group ref='mx:_G_mx.containers.Container' />
</choice></group>
<attributeGroup name='_A_mx.containers.Tile'>
  <attribute name='direction' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='tileHeight' type='string' />
  <attribute name='tileWidth' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Container' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.Tile'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.Tile'>
  <complexContent><extension base='mx:_I_mx.containers.Tile'>
    <group ref='mx:_G_mx.containers.Tile' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.Tile' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.TitleWindow'><choice>
  <element name='closeButton' />
  <group ref='mx:_G_mx.containers.Panel' />
</choice></group>
<attributeGroup name='_A_mx.containers.TitleWindow'>
  <attribute name='closeButton' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Panel' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.TitleWindow'>
  <complexContent><extension base='mx:_I_mx.containers.Panel'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.TitleWindow'>
  <complexContent><extension base='mx:_I_mx.containers.TitleWindow'>
    <group ref='mx:_G_mx.containers.TitleWindow' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.TitleWindow' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.VBox'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.VBox'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.VBox'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.VBox'>
  <complexContent><extension base='mx:_I_mx.containers.VBox'>
    <group ref='mx:_G_mx.containers.VBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.VBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.VDividedBox'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dividerAffordance' />
  <element name='dividerColor' />
  <element name='dividerDragged' />
  <element name='dividerPressed' />
  <element name='dividerReleased' />
  <element name='dividerThickness' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveDragging' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.containers.VDividedBox'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dividerAffordance' type='string' />
  <attribute name='dividerColor' type='string' />
  <attribute name='dividerDragged' type='string' />
  <attribute name='dividerPressed' type='string' />
  <attribute name='dividerReleased' type='string' />
  <attribute name='dividerThickness' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveDragging' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.VDividedBox'>
  <complexContent><extension base='mx:_I_mx.containers.DividedBox'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.VDividedBox'>
  <complexContent><extension base='mx:_I_mx.containers.VDividedBox'>
    <group ref='mx:_G_mx.containers.VDividedBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.VDividedBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.ViewStack'><choice>
  <element name='change' />
  <element name='changeEffect' />
  <element name='historyManagement' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='selectedIndex' />
  <group ref='mx:_G_mx.containers.Container' />
</choice></group>
<attributeGroup name='_A_mx.containers.ViewStack'>
  <attribute name='change' type='string' />
  <attribute name='changeEffect' type='string' />
  <attribute name='historyManagement' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attributeGroup ref='mx:_A_mx.containers.Container' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.ViewStack'>
  <complexContent><extension base='mx:_I_mx.containers.Container'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.ViewStack'>
  <complexContent><extension base='mx:_I_mx.containers.ViewStack'>
    <group ref='mx:_G_mx.containers.ViewStack' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.ViewStack' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.containers.accordionclasses.AccordionHeader'>
  <complexContent><extension base='mx:_I_mx.controls.Button'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.accordionclasses.AccordionHeader'>
  <complexContent><extension base='mx:_I_mx.containers.accordionclasses.AccordionHeader'>
    <group ref='mx:_G_mx.controls.Button' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Button' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.containers.dividedboxclasses.BoxDivider'><choice>
  <element name='dividerAffordance' />
  <element name='dividerColor' />
  <element name='dividerThickness' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.containers.dividedboxclasses.BoxDivider'>
  <attribute name='dividerAffordance' type='string' />
  <attribute name='dividerColor' type='string' />
  <attribute name='dividerThickness' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.containers.dividedboxclasses.BoxDivider'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.dividedboxclasses.BoxDivider'>
  <complexContent><extension base='mx:_I_mx.containers.dividedboxclasses.BoxDivider'>
    <group ref='mx:_G_mx.containers.dividedboxclasses.BoxDivider' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.containers.dividedboxclasses.BoxDivider' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.containers.tabclasses.Tab'>
  <complexContent><extension base='mx:_I_mx.controls.Button'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.containers.tabclasses.Tab'>
  <complexContent><extension base='mx:_I_mx.containers.tabclasses.Tab'>
    <group ref='mx:_G_mx.controls.Button' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Button' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Button'><choice>
  <element name='icon' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <group ref='mx:_G_mx.controls.SimpleButton' />
</choice></group>
<attributeGroup name='_A_mx.controls.Button'>
  <attribute name='icon' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.SimpleButton' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Button'>
  <complexContent><extension base='mx:_I_mx.controls.SimpleButton'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Button'>
  <complexContent><extension base='mx:_I_mx.controls.Button'>
    <group ref='mx:_G_mx.controls.Button' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Button' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.CalendarLayout'><choice>
  <element name='dayNames' />
  <element name='displayedMonth' />
  <element name='displayedYear' />
  <element name='dragSelectMode' />
  <element name='firstDayOfWeek' />
  <element name='selectedDate' />
  <element name='showToday' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.CalendarLayout'>
  <attribute name='dayNames' type='string' />
  <attribute name='displayedMonth' type='string' />
  <attribute name='displayedYear' type='string' />
  <attribute name='dragSelectMode' type='string' />
  <attribute name='firstDayOfWeek' type='string' />
  <attribute name='selectedDate' type='string' />
  <attribute name='showToday' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.CalendarLayout'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.CalendarLayout'>
  <complexContent><extension base='mx:_I_mx.controls.CalendarLayout'>
    <group ref='mx:_G_mx.controls.CalendarLayout' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.CalendarLayout' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.CheckBox'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='buttonDown' />
  <element name='buttonDragOut' />
  <element name='class' />
  <element name='click' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selected' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toggle' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.CheckBox'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='buttonDown' type='string' />
  <attribute name='buttonDragOut' type='string' />
  <attribute name='class' type='string' />
  <attribute name='click' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selected' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toggle' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.CheckBox'>
  <complexContent><extension base='mx:_I_mx.controls.Button'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.CheckBox'>
  <complexContent><extension base='mx:_I_mx.controls.CheckBox'>
    <group ref='mx:_G_mx.controls.CheckBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.CheckBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.ComboBase'><choice>
  <element name='editable' />
  <element name='restrict' />
  <element name='text' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.ComboBase'>
  <attribute name='editable' type='string' />
  <attribute name='restrict' type='string' />
  <attribute name='text' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.ComboBase'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.ComboBase'>
  <complexContent><extension base='mx:_I_mx.controls.ComboBase'>
    <group ref='mx:_G_mx.controls.ComboBase' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.ComboBase' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.ComboBox'><choice>
  <element name='alpha' />
  <element name='alternatingRowColors' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='change' />
  <element name='class' />
  <element name='close' />
  <element name='closeDuration' />
  <element name='closeEasing' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dataProvider' />
  <element name='defaultIcon' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='dropdownBorderColor' />
  <element name='dropdownWidth' />
  <element name='editable' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='enter' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='labels' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='modelChanged' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='open' />
  <element name='openDuration' />
  <element name='openEasing' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='prompt' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='restrict' />
  <element name='rollOverColor' />
  <element name='rowCount' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='selectedIndex' />
  <element name='selectedItem' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='text' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textDisabledColor' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.ComboBox'>
  <attribute name='alpha' type='string' />
  <attribute name='alternatingRowColors' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='change' type='string' />
  <attribute name='class' type='string' />
  <attribute name='close' type='string' />
  <attribute name='closeDuration' type='string' />
  <attribute name='closeEasing' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='dropdownBorderColor' type='string' />
  <attribute name='dropdownWidth' type='string' />
  <attribute name='editable' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='enter' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='labels' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='modelChanged' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='open' type='string' />
  <attribute name='openDuration' type='string' />
  <attribute name='openEasing' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='prompt' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='restrict' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='rowCount' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='text' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.ComboBox'>
  <complexContent><extension base='mx:_I_mx.controls.ComboBase'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.ComboBox'>
  <complexContent><extension base='mx:_I_mx.controls.ComboBox'>
    <group ref='mx:_G_mx.controls.ComboBox' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.ComboBox' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.CustomButton'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='buttonDown' />
  <element name='buttonDragOut' />
  <element name='class' />
  <element name='click' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selected' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toggle' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.CustomButton'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='buttonDown' type='string' />
  <attribute name='buttonDragOut' type='string' />
  <attribute name='class' type='string' />
  <attribute name='click' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selected' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toggle' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.CustomButton'>
  <complexContent><extension base='mx:_I_mx.controls.Button'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.CustomButton'>
  <complexContent><extension base='mx:_I_mx.controls.CustomButton'>
    <group ref='mx:_G_mx.controls.CustomButton' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.CustomButton' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.DataGrid'><choice>
  <element name='alpha' />
  <element name='alternatingRowColors' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='cellEdit' />
  <element name='cellFocusIn' />
  <element name='cellFocusOut' />
  <element name='click' />
  <element name='cellRenderer' />
  <element name='change' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='class' />
  <element name='color' />
  <element name='dataField' />
  <element name='columnStretch' />
  <element name='columns' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='defaultAction' />
  <element name='defaultIcon' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnabled' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='editable' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='focusedCell' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hGridLineColor' />
  <element name='hGridLines' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='headerColor' />
  <element name='headerColors' />
  <element name='headerHeight' />
  <element name='headerRelease' />
  <element name='headerStyle' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveScrolling' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHPosition' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='multipleSelection' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resizableColumns' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='rollOverColor' />
  <element name='rowCount' />
  <element name='rowHeight' />
  <element name='rowRenderer' />
  <element name='scroll' />
  <element name='scrollTipFunction' />
  <element name='scrollTrackColor' />
  <element name='selectable' />
  <element name='selectedFillColors' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showDataTips' />
  <element name='showEffect' />
  <element name='showHeaders' />
  <element name='showScrollTips' />
  <element name='showToolTip' />
  <element name='sortableColumns' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textDisabledColor' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='useRollOver' />
  <element name='vGridLineColor' />
  <element name='vGridLines' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='variableRowHeight' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='wordWrap' />
  <element name='x' />
  <element name='y' />
  <element name="draggableColumns"/>
  <element name="dropEnabled"/>
  <element name="dragMoveEnabled"/>
  <element name="itemClick"/>
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.DataGrid'>
  <attribute name='alpha' type='string' />
  <attribute name='alternatingRowColors' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='cellEdit' type='string' />
  <attribute name='cellFocusIn' type='string' />
  <attribute name='cellFocusOut' type='string' />
  <attribute name='click' type='string' />
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='dataField' type='string' />
  <attribute name='columnStretch' type='string' />
  <attribute name='columns' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='editable' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='focusedCell' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hGridLineColor' type='string' />
  <attribute name='hGridLines' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='headerColor' type='string' />
  <attribute name='headerColors' type='string' />
  <attribute name='headerHeight' type='string' />
  <attribute name='headerRelease' type='string' />
  <attribute name='headerStyle' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveScrolling' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHPosition' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resizableColumns' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='rowCount' type='string' />
  <attribute name='rowHeight' type='string' />
  <attribute name='rowRenderer' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTipFunction' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showHeaders' type='string' />
  <attribute name='showScrollTips' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='sortableColumns' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='useRollOver' type='string' />
  <attribute name='vGridLineColor' type='string' />
  <attribute name='vGridLines' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='variableRowHeight' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='wordWrap' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attribute name='draggableColumns' type='string'/>
  <attribute name='dropEnabled' type='string'/>
  <attribute name='dragMoveEnabled' type='string'/>
  <attribute name='itemClick' type='string'/>
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.DataGrid'>
  <complexContent><extension base='mx:_I_mx.controls.List'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.DataGrid'>
  <complexContent><extension base='mx:_I_mx.controls.DataGrid'>
    <group ref='mx:_G_mx.controls.DataGrid' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.DataGrid' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.DateChooser'><choice>
  <element name='change' />
  <element name='dayNames' />
  <element name='disabledDays' />
  <element name='disabledRanges' />
  <element name='displayedMonth' />
  <element name='displayedYear' />
  <element name='firstDayOfWeek' />
  <element name='headerColor' />
  <element name='headerColors' />
  <element name='monthNames' />
  <element name='rollOverColor' />
  <element name='scroll' />
  <element name='selectableRange' />
  <element name='selectedDate' />
  <element name='selectionColor' />
  <element name='showToday' />
  <element name='todayColor' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.DateChooser'>
  <attribute name='change' type='string' />
  <attribute name='dayNames' type='string' />
  <attribute name='disabledDays' type='string' />
  <attribute name='disabledRanges' type='string' />
  <attribute name='displayedMonth' type='string' />
  <attribute name='displayedYear' type='string' />
  <attribute name='firstDayOfWeek' type='string' />
  <attribute name='headerColor' type='string' />
  <attribute name='headerColors' type='string' />
  <attribute name='monthNames' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='selectableRange' type='string' />
  <attribute name='selectedDate' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='showToday' type='string' />
  <attribute name='todayColor' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.DateChooser'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.DateChooser'>
  <complexContent><extension base='mx:_I_mx.controls.DateChooser'>
    <group ref='mx:_G_mx.controls.DateChooser' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.DateChooser' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.DateField'><choice>
  <element name='change' />
  <element name='close' />
  <element name='formatString' />
  <element name='dayNames' />
  <element name='disabledDays' />
  <element name='disabledRanges' />
  <element name='displayedMonth' />
  <element name='displayedYear' />
  <element name='firstDayOfWeek' />
  <element name='headerColor' />
  <element name='headerColors' />
  <element name='monthNames' />
  <element name='open' />
  <element name='rollOverColor' />
  <element name='scroll' />
  <element name='selectableRange' />
  <element name='selectedDate' />
  <element name='selectionColor' />
  <element name='showToday' />
  <element name='todayColor' />
  <element name='yearNavigationEnabled' />
  <element name='minYear' />
  <element name='maxYear' />
  <group ref='mx:_G_mx.controls.ComboBase' />
</choice></group>
<attributeGroup name='_A_mx.controls.DateField'>
  <attribute name='change' type='string' />
  <attribute name='close' type='string' />
  <attribute name='formatString' type='string' />
  <attribute name='dayNames' type='string' />
  <attribute name='disabledDays' type='string' />
  <attribute name='disabledRanges' type='string' />
  <attribute name='displayedMonth' type='string' />
  <attribute name='displayedYear' type='string' />
  <attribute name='firstDayOfWeek' type='string' />
  <attribute name='headerColor' type='string' />
  <attribute name='headerColors' type='string' />
  <attribute name='monthNames' type='string' />
  <attribute name='open' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='selectableRange' type='string' />
  <attribute name='selectedDate' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='showToday' type='string' />
  <attribute name='todayColor' type='string' />
  <attribute name='yearNavigationEnabled' type='string' />
  <attribute name='minYear' type='string' />
  <attribute name='maxYear' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.ComboBase' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.DateField'>
  <complexContent><extension base='mx:_I_mx.controls.ComboBase'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.DateField'>
  <complexContent><extension base='mx:_I_mx.controls.DateField'>
    <group ref='mx:_G_mx.controls.DateField' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.DateField' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.FormItemLabel'>
  <complexContent><extension base='mx:_I_mx.controls.Label'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.FormItemLabel'>
  <complexContent><extension base='mx:_I_mx.controls.FormItemLabel'>
    <group ref='mx:_G_mx.controls.Label' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Label' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.HRule'><choice>
  <element name='strokeWidth' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.HRule'>
  <attribute name='strokeWidth' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.HRule'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.HRule'>
  <complexContent><extension base='mx:_I_mx.controls.HRule'>
    <group ref='mx:_G_mx.controls.HRule' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.HRule' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.HScrollBar'><choice>
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='scroll' />
  <group ref='mx:_G_mx.controls.scrollClasses.ScrollBar' />
</choice></group>
<attributeGroup name='_A_mx.controls.HScrollBar'>
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='scroll' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.scrollClasses.ScrollBar' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.HScrollBar'>
  <complexContent><extension base='mx:_I_mx.controls.scrollClasses.ScrollBar'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.HScrollBar'>
  <complexContent><extension base='mx:_I_mx.controls.HScrollBar'>
    <group ref='mx:_G_mx.controls.HScrollBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.HScrollBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.HSlider'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='change' />
  <element name='class' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelOffset' />
  <element name='labels' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveDragging' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='maximum' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='minimum' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='slideDuration' />
  <element name='slideEasing' />
  <element name='snapInterval' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='thumbCount' />
  <element name='thumbDrag' />
  <element name='thumbOffset' />
  <element name='thumbPress' />
  <element name='thumbRelease' />
  <element name='tickColor' />
  <element name='tickInterval' />
  <element name='tickLength' />
  <element name='tickOffset' />
  <element name='tickThickness' />
  <element name='toolTip' />
  <element name='toolTipOffset' />
  <element name='toolTipPlacement' />
  <element name='toolTipPrecision' />
  <element name='trackColor' />
  <element name='trackColors' />
  <element name='trackHighlight' />
  <element name='trackMargin' />
  <element name='unload' />
  <element name='valid' />
  <element name='value' />
  <element name='values' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element name='dataTipFormatFunction' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.HSlider'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='change' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelOffset' type='string' />
  <attribute name='labels' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveDragging' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='maximum' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='minimum' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='slideDuration' type='string' />
  <attribute name='slideEasing' type='string' />
  <attribute name='snapInterval' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='thumbCount' type='string' />
  <attribute name='thumbDrag' type='string' />
  <attribute name='thumbOffset' type='string' />
  <attribute name='thumbPress' type='string' />
  <attribute name='thumbRelease' type='string' />
  <attribute name='tickColor' type='string' />
  <attribute name='tickInterval' type='string' />
  <attribute name='tickLength' type='string' />
  <attribute name='tickOffset' type='string' />
  <attribute name='tickThickness' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='toolTipOffset' type='string' />
  <attribute name='toolTipPlacement' type='string' />
  <attribute name='toolTipPrecision' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='trackColors' type='string' />
  <attribute name='trackHighlight' type='string' />
  <attribute name='trackMargin' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='value' type='string' />
  <attribute name='values' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attribute name='dataTipFormatFunction' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.HSlider'>
  <complexContent><extension base='mx:_I_mx.controls.sliderclasses.Slider'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.HSlider'>
  <complexContent><extension base='mx:_I_mx.controls.HSlider'>
    <group ref='mx:_G_mx.controls.HSlider' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.HSlider' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.HorizontalList'><choice>
  <element name='alpha' />
  <element name='alternatingItemColors' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='cellRenderer' />
  <element name='change' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='class' />
  <element name='color' />
  <element name='columnCount' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='defaultAction' />
  <element name='defaultIcon' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnabled' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='itemRenderer' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='itemWidth' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveScrolling' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHPosition' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='multipleSelection' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='rollOverColor' />
  <element name='sampleItem' />
  <element name='scroll' />
  <element name='scrollTipFunction' />
  <element name='scrollTrackColor' />
  <element name='selectable' />
  <element name='selectedFillColors' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showDataTips' />
  <element name='showEffect' />
  <element name='showScrollTips' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textDisabledColor' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='useRollOver' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.HorizontalList'>
  <attribute name='alpha' type='string' />
  <attribute name='alternatingItemColors' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='columnCount' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='itemRenderer' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='itemWidth' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveScrolling' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHPosition' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='sampleItem' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTipFunction' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showScrollTips' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='useRollOver' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.HorizontalList'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ItemList'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.HorizontalList'>
  <complexContent><extension base='mx:_I_mx.controls.HorizontalList'>
    <group ref='mx:_G_mx.controls.HorizontalList' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.HorizontalList' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.Image'>
  <complexContent><extension base='mx:_I_mx.controls.Loader'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Image'>
  <complexContent><extension base='mx:_I_mx.controls.Image'>
    <group ref='mx:_G_mx.controls.Loader' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Loader' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Label'><choice>
  <element name='autoSize' />
  <element name='disabledColor' />
  <element name='html' />
  <element name='htmlText' />
  <element name='text' />
  <group ref='mx:_G_mx.core.UIObject' />
</choice></group>
<attributeGroup name='_A_mx.controls.Label'>
  <attribute name='autoSize' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='html' type='string' />
  <attribute name='htmlText' type='string' />
  <attribute name='text' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIObject' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Label'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Label'>
  <complexContent><extension base='mx:_I_mx.controls.Label'>
    <group ref='mx:_G_mx.controls.Label' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Label' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Link'><choice>
  <element name='rollOverColor' />
  <element name='selectionColor' />
  <group ref='mx:_G_mx.controls.Button' />
</choice></group>
<attributeGroup name='_A_mx.controls.Link'>
  <attribute name='rollOverColor' type='string' />
  <attribute name='selectionColor' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.Button' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Link'>
  <complexContent><extension base='mx:_I_mx.controls.Button'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Link'>
  <complexContent><extension base='mx:_I_mx.controls.Link'>
    <group ref='mx:_G_mx.controls.Link' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Link' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.List'><choice>
  <element name='alternatingRowColors' />
  <element name='defaultIcon' />
  <element name='marginBottom' />
  <element name='marginTop' />
  <element name='rollOverColor' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='textDisabledColor' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='useRollOver' />
  <element name="labelField"/>
  <group ref='mx:_G_mx.controls.listclasses.ScrollSelectList' />
</choice></group>
<attributeGroup name='_A_mx.controls.List'>
  <attribute name='alternatingRowColors' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='useRollOver' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.listclasses.ScrollSelectList' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.List'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ScrollSelectList'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.List'>
  <complexContent><extension base='mx:_I_mx.controls.List'>
    <group ref='mx:_G_mx.controls.List' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.List' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Loader'><choice>
  <element name='autoLoad' />
  <element name='brokenImage' />
  <element name='complete' />
  <element name='contentPath' />
  <element name='horizontalAlign' />
  <element name='maintainAspectRatio' />
  <element name='progress' />
  <element name='scaleContent' />
  <element name='showBusyCursor' />
  <element name='source' />
  <element name='verticalAlign' />
  <element name='rollOverEffect'/>
  <element name='rollOutEffect'/>
  <group ref='mx:_G_mx.core.View' />
</choice></group>
<attributeGroup name='_A_mx.controls.Loader'>
  <attribute name='autoLoad' type='string' />
  <attribute name='brokenImage' type='string' />
  <attribute name='complete' type='string' />
  <attribute name='contentPath' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='maintainAspectRatio' type='string' />
  <attribute name='progress' type='string' />
  <attribute name='scaleContent' type='string' />
  <attribute name='showBusyCursor' type='string' />
  <attribute name='source' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='rollOverEffect' type='string'/>
  <attribute name='rollOutEffect' type='string'/>
  <attributeGroup ref='mx:_A_mx.core.View' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Loader'>
  <complexContent><extension base='mx:_I_mx.core.View'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Loader'>
  <complexContent><extension base='mx:_I_mx.controls.Loader'>
    <group ref='mx:_G_mx.controls.Loader' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Loader' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.MediaController'><choice>
  <element name='activePlayControl' />
  <element name='associatedDisplay' />
  <element name='backgroundStyle' />
  <element name='click' />
  <element name='controllerPolicy' />
  <element name='horizontal' />
  <element name='playheadChange' />
  <element name='scrubbing' />
  <element name='volume' />
  <element name='volumeChange' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.MediaController'>
  <attribute name='activePlayControl' type='string' />
  <attribute name='associatedDisplay' type='string' />
  <attribute name='backgroundStyle' type='string' />
  <attribute name='click' type='string' />
  <attribute name='controllerPolicy' type='string' />
  <attribute name='horizontal' type='string' />
  <attribute name='playheadChange' type='string' />
  <attribute name='scrubbing' type='string' />
  <attribute name='volume' type='string' />
  <attribute name='volumeChange' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.MediaController'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.MediaController'>
  <complexContent><extension base='mx:_I_mx.controls.MediaController'>
    <group ref='mx:_G_mx.controls.MediaController' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.MediaController' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.MediaDisplay'><choice>
  <element name='aspectRatio' />
  <element name='associatedController' />
  <element name='autoPlay' />
  <element name='autoSize' />
  <element name='change' />
  <element name='complete' />
  <element name='contentPath' />
  <element name='cuePoint' />
  <element name='cuePoints' />
  <element name='fps' />
  <element name='initCuePointNames' />
  <element name='initCuePointTimes' />
  <element name='mediaType' />
  <element name='playheadTime' />
  <element name='progress' />
  <element name='resizeVideo' />
  <element name='showBusyCursor' />
  <element name='start' />
  <element name='totalTime' />
  <element name='totalTimeUpdated' />
  <element name='volume' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.MediaDisplay'>
  <attribute name='aspectRatio' type='string' />
  <attribute name='associatedController' type='string' />
  <attribute name='autoPlay' type='string' />
  <attribute name='autoSize' type='string' />
  <attribute name='change' type='string' />
  <attribute name='complete' type='string' />
  <attribute name='contentPath' type='string' />
  <attribute name='cuePoint' type='string' />
  <attribute name='cuePoints' type='string' />
  <attribute name='fps' type='string' />
  <attribute name='initCuePointNames' type='string' />
  <attribute name='initCuePointTimes' type='string' />
  <attribute name='mediaType' type='string' />
  <attribute name='playheadTime' type='string' />
  <attribute name='progress' type='string' />
  <attribute name='resizeVideo' type='string' />
  <attribute name='showBusyCursor' type='string' />
  <attribute name='start' type='string' />
  <attribute name='totalTime' type='string' />
  <attribute name='totalTimeUpdated' type='string' />
  <attribute name='volume' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.MediaDisplay'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.MediaDisplay'>
  <complexContent><extension base='mx:_I_mx.controls.MediaDisplay'>
    <group ref='mx:_G_mx.controls.MediaDisplay' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.MediaDisplay' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.MediaPlayback'><choice>
  <element name='aspectRatio' />
  <element name='autoPlay' />
  <element name='autoSize' />
  <element name='change' />
  <element name='click' />
  <element name='complete' />
  <element name='contentPath' />
  <element name='controlPlacement' />
  <element name='controllerPolicy' />
  <element name='cuePoint' />
  <element name='cuePoints' />
  <element name='fps' />
  <element name='initCuePointNames' />
  <element name='initCuePointTimes' />
  <element name='mediaType' />
  <element name='pause' />
  <element name='play' />
  <element name='playheadChange' />
  <element name='playheadTime' />
  <element name='progress' />
  <element name='resizeVideo' />
  <element name='showBusyCursor' />
  <element name='start' />
  <element name='totalTime' />
  <element name='totalTimeUpdated' />
  <element name='volume' />
  <element name='volumeChange' />
  <group ref='mx:_G_mx.core.View' />
</choice></group>
<attributeGroup name='_A_mx.controls.MediaPlayback'>
  <attribute name='aspectRatio' type='string' />
  <attribute name='autoPlay' type='string' />
  <attribute name='autoSize' type='string' />
  <attribute name='change' type='string' />
  <attribute name='click' type='string' />
  <attribute name='complete' type='string' />
  <attribute name='contentPath' type='string' />
  <attribute name='controlPlacement' type='string' />
  <attribute name='controllerPolicy' type='string' />
  <attribute name='cuePoint' type='string' />
  <attribute name='cuePoints' type='string' />
  <attribute name='fps' type='string' />
  <attribute name='initCuePointNames' type='string' />
  <attribute name='initCuePointTimes' type='string' />
  <attribute name='mediaType' type='string' />
  <attribute name='pause' type='string' />
  <attribute name='play' type='string' />
  <attribute name='playheadChange' type='string' />
  <attribute name='playheadTime' type='string' />
  <attribute name='progress' type='string' />
  <attribute name='resizeVideo' type='string' />
  <attribute name='showBusyCursor' type='string' />
  <attribute name='start' type='string' />
  <attribute name='totalTime' type='string' />
  <attribute name='totalTimeUpdated' type='string' />
  <attribute name='volume' type='string' />
  <attribute name='volumeChange' type='string' />
  <attributeGroup ref='mx:_A_mx.core.View' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.MediaPlayback'>
  <complexContent><extension base='mx:_I_mx.core.View'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.MediaPlayback'>
  <complexContent><extension base='mx:_I_mx.controls.MediaPlayback'>
    <group ref='mx:_G_mx.controls.MediaPlayback' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.MediaPlayback' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Menu'><choice>
  <element name='alpha' />
  <element name='alternatingRowColors' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='cellRenderer' />
  <element name='change' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='class' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='defaultAction' />
  <element name='defaultIcon' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnabled' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveScrolling' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHPosition' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='menuHide' />
  <element name='menuShow' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='multipleSelection' />
  <element name='popupDuration' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='rollOut' />
  <element name='rollOver' />
  <element name='rollOverColor' />
  <element name='rowCount' />
  <element name='rowHeight' />
  <element name='rowRenderer' />
  <element name='scroll' />
  <element name='scrollTipFunction' />
  <element name='scrollTrackColor' />
  <element name='selectable' />
  <element name='selectedFillColors' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showDataTips' />
  <element name='showEffect' />
  <element name='showScrollTips' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textDisabledColor' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='useRollOver' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='variableRowHeight' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='wordWrap' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.Menu'>
  <attribute name='alpha' type='string' />
  <attribute name='alternatingRowColors' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveScrolling' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHPosition' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='menuHide' type='string' />
  <attribute name='menuShow' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='popupDuration' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='rollOut' type='string' />
  <attribute name='rollOver' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='rowCount' type='string' />
  <attribute name='rowHeight' type='string' />
  <attribute name='rowRenderer' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTipFunction' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showScrollTips' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='useRollOver' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='variableRowHeight' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='wordWrap' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Menu'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ScrollSelectList'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Menu'>
  <complexContent><extension base='mx:_I_mx.controls.Menu'>
    <group ref='mx:_G_mx.controls.Menu' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Menu' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.MenuBar'><choice>
  <element name='change' />
  <element name='dataProvider' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='menuHide' />
  <element name='menuShow' />
  <element name='rollOut' />
  <element name='rollOver' />
  <element name='rollOverColor' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='textDisabledColor' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='useRollOver' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.MenuBar'>
  <attribute name='change' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='menuHide' type='string' />
  <attribute name='menuShow' type='string' />
  <attribute name='rollOut' type='string' />
  <attribute name='rollOver' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='useRollOver' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.MenuBar'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.MenuBar'>
  <complexContent><extension base='mx:_I_mx.controls.MenuBar'>
    <group ref='mx:_G_mx.controls.MenuBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.MenuBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.NumericStepper'><choice>
  <element name='change' />
  <element name='maxChars' />
  <element name='maximum' />
  <element name='minimum' />
  <element name='stepSize' />
  <element name='value' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.NumericStepper'>
  <attribute name='change' type='string' />
  <attribute name='maxChars' type='string' />
  <attribute name='maximum' type='string' />
  <attribute name='minimum' type='string' />
  <attribute name='stepSize' type='string' />
  <attribute name='value' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.NumericStepper'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.NumericStepper'>
  <complexContent><extension base='mx:_I_mx.controls.NumericStepper'>
    <group ref='mx:_G_mx.controls.NumericStepper' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.NumericStepper' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.ProgressBar'><choice>
  <element name='complete' />
  <element name='conversion' />
  <element name='direction' />
  <element name='indeterminate' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='maximum' />
  <element name='minimum' />
  <element name='mode' />
  <element name='progress' />
  <element name='source' />
  <element name='themeColor' />
  <element name='trackColors' />
  <group ref='mx:_G_mx.core.UIObject' />
</choice></group>
<attributeGroup name='_A_mx.controls.ProgressBar'>
  <attribute name='complete' type='string' />
  <attribute name='conversion' type='string' />
  <attribute name='direction' type='string' />
  <attribute name='indeterminate' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='maximum' type='string' />
  <attribute name='minimum' type='string' />
  <attribute name='mode' type='string' />
  <attribute name='progress' type='string' />
  <attribute name='source' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='trackColors' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIObject' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.ProgressBar'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.ProgressBar'>
  <complexContent><extension base='mx:_I_mx.controls.ProgressBar'>
    <group ref='mx:_G_mx.controls.ProgressBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.ProgressBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.RadioButton'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='buttonDown' />
  <element name='buttonDragOut' />
  <element name='class' />
  <element name='click' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='data' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='groupName' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selected' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toggle' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.RadioButton'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='buttonDown' type='string' />
  <attribute name='buttonDragOut' type='string' />
  <attribute name='class' type='string' />
  <attribute name='click' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='data' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='groupName' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selected' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toggle' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.RadioButton'>
  <complexContent><extension base='mx:_I_mx.controls.Button'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.RadioButton'>
  <complexContent><extension base='mx:_I_mx.controls.RadioButton'>
    <group ref='mx:_G_mx.controls.RadioButton' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.RadioButton' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.RadioButtonGroup'><choice>
  <element name='change' />
  <element name='click' />
  <element name='enabled' />
  <element name='groupName' />
  <element name='labelPlacement' />
  <element name='selectedData' />
  <element name='selection' />
</choice></group>
<attributeGroup name='_A_mx.controls.RadioButtonGroup'>
  <attribute name='change' type='string' />
  <attribute name='click' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='groupName' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='selectedData' type='string' />
  <attribute name='selection' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.RadioButtonGroup'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.RadioButtonGroup'>
  <complexContent><extension base='mx:_I_mx.controls.RadioButtonGroup'>
    <group ref='mx:_G_mx.controls.RadioButtonGroup' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.RadioButtonGroup' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.SimpleButton'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='buttonDown' />
  <element name='buttonDragOut' />
  <element name='class' />
  <element name='click' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selected' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toggle' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.SimpleButton'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='buttonDown' type='string' />
  <attribute name='buttonDragOut' type='string' />
  <attribute name='class' type='string' />
  <attribute name='click' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selected' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toggle' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.SimpleButton'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.SimpleButton'>
  <complexContent><extension base='mx:_I_mx.controls.SimpleButton'>
    <group ref='mx:_G_mx.controls.SimpleButton' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.SimpleButton' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.Spacer'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Spacer'>
  <complexContent><extension base='mx:_I_mx.controls.Spacer'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Text'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='html' />
  <element name='htmlText' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='selectable' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='text' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.Text'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='html' type='string' />
  <attribute name='htmlText' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='text' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Text'>
  <complexContent><extension base='mx:_I_mx.controls.Label'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Text'>
  <complexContent><extension base='mx:_I_mx.controls.Text'>
    <group ref='mx:_G_mx.controls.Text' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Text' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.TextArea'><choice>
  <element name='change' />
  <element name='editable' />
  <element name='html' />
  <element name='htmlText' />
  <element name='maxChars' />
  <element name='password' />
  <element name='restrict' />
  <element name='text' />
  <element name='wordWrap' />
  <group ref='mx:_G_mx.core.ScrollView' />
</choice></group>
<attributeGroup name='_A_mx.controls.TextArea'>
  <attribute name='change' type='string' />
  <attribute name='editable' type='string' />
  <attribute name='html' type='string' />
  <attribute name='htmlText' type='string' />
  <attribute name='maxChars' type='string' />
  <attribute name='password' type='string' />
  <attribute name='restrict' type='string' />
  <attribute name='text' type='string' />
  <attribute name='wordWrap' type='string' />
  <attributeGroup ref='mx:_A_mx.core.ScrollView' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.TextArea'>
  <complexContent><extension base='mx:_I_mx.core.ScrollView'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.TextArea'>
  <complexContent><extension base='mx:_I_mx.controls.TextArea'>
    <group ref='mx:_G_mx.controls.TextArea' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.TextArea' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.TextInput'><choice>
  <element name='change' />
  <element name='editable' />
  <element name='enter' />
  <element name='hPosition' />
  <element name='html' />
  <element name='htmlText' />
  <element name='maxChars' />
  <element name='password' />
  <element name='restrict' />
  <element name='text' />
  <element name='data' />
  <element name='displayAsPassword'/>
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.TextInput'>
  <attribute name='change' type='string' />
  <attribute name='editable' type='string' />
  <attribute name='enter' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='html' type='string' />
  <attribute name='htmlText' type='string' />
  <attribute name='maxChars' type='string' />
  <attribute name='password' type='string' />
  <attribute name='restrict' type='string' />
  <attribute name='text' type='string' />
  <attribute name='data' type='string' />
  <attribute name='displayAsPassword' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.TextInput'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.TextInput'>
  <complexContent><extension base='mx:_I_mx.controls.TextInput'>
    <group ref='mx:_G_mx.controls.TextInput' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.TextInput' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.TileList'><choice>
  <element name='alpha' />
  <element name='alternatingItemColors' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='cellRenderer' />
  <element name='change' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='class' />
  <element name='color' />
  <element name='columnCount' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='defaultAction' />
  <element name='defaultIcon' />
  <element name='direction' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnabled' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='itemHeight' />
  <element name='itemRenderer' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='itemWidth' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveScrolling' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHPosition' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='multipleSelection' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='rollOverColor' />
  <element name='rowCount' />
  <element name='sampleItem' />
  <element name='scroll' />
  <element name='scrollTipFunction' />
  <element name='scrollTrackColor' />
  <element name='selectable' />
  <element name='selectedFillColors' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showDataTips' />
  <element name='showEffect' />
  <element name='showScrollTips' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textDisabledColor' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='useRollOver' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.TileList'>
  <attribute name='alpha' type='string' />
  <attribute name='alternatingItemColors' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='columnCount' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='direction' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='itemHeight' type='string' />
  <attribute name='itemRenderer' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='itemWidth' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveScrolling' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHPosition' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='rowCount' type='string' />
  <attribute name='sampleItem' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTipFunction' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showScrollTips' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='useRollOver' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.TileList'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ItemList'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.TileList'>
  <complexContent><extension base='mx:_I_mx.controls.TileList'>
    <group ref='mx:_G_mx.controls.TileList' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.TileList' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.ToolTip'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.ToolTip'>
  <complexContent><extension base='mx:_I_mx.controls.ToolTip'>
    <group ref='mx:_G_mx.core.UIComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIComponent' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.Tree'><choice>
  <element name='alpha' />
  <element name='alternatingRowColors' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='cellEdit' />
  <element name='cellFocusIn' />
  <element name='cellFocusOut' />
  <element name='cellPress' />
  <element name='cellRenderer' />
  <element name='change' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='class' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='defaultAction' />
  <element name='defaultIcon' />
  <element name='defaultLeafIcon' />
  <element name='depthColors' />
  <element name='disabledColor' />
  <element name='disclosureClosedIcon' />
  <element name='disclosureOpenIcon' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnabled' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='editable' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='firstVisibleNode' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='folderClosedIcon' />
  <element name='folderOpenIcon' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='indentation' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveScrolling' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHPosition' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='multipleSelection' />
  <element name='nodeClose' />
  <element name='nodeOpen' />
  <element name='openDuration' />
  <element name='openEasing' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='rollOverColor' />
  <element name='rowCount' />
  <element name='rowHeight' />
  <element name='rowRenderer' />
  <element name='scroll' />
  <element name='scrollTipFunction' />
  <element name='scrollTrackColor' />
  <element name='selectable' />
  <element name='selectedFillColors' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showDataTips' />
  <element name='showEffect' />
  <element name='showScrollTips' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textDisabledColor' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='useRollOver' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='variableRowHeight' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='wordWrap' />
  <element name='x' />
  <element name='y' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.Tree'>
  <attribute name='alpha' type='string' />
  <attribute name='alternatingRowColors' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='cellEdit' type='string' />
  <attribute name='cellFocusIn' type='string' />
  <attribute name='cellFocusOut' type='string' />
  <attribute name='cellPress' type='string' />
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='defaultLeafIcon' type='string' />
  <attribute name='depthColors' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='disclosureClosedIcon' type='string' />
  <attribute name='disclosureOpenIcon' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='editable' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='firstVisibleNode' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='folderClosedIcon' type='string' />
  <attribute name='folderOpenIcon' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='indentation' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveScrolling' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHPosition' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='nodeClose' type='string' />
  <attribute name='nodeOpen' type='string' />
  <attribute name='openDuration' type='string' />
  <attribute name='openEasing' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='rowCount' type='string' />
  <attribute name='rowHeight' type='string' />
  <attribute name='rowRenderer' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTipFunction' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showScrollTips' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='useRollOver' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='variableRowHeight' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='wordWrap' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.Tree'>
  <complexContent><extension base='mx:_I_mx.controls.List'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.Tree'>
  <complexContent><extension base='mx:_I_mx.controls.Tree'>
    <group ref='mx:_G_mx.controls.Tree' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.Tree' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.VRule'><choice>
  <element name='strokeWidth' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.VRule'>
  <attribute name='strokeWidth' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.VRule'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.VRule'>
  <complexContent><extension base='mx:_I_mx.controls.VRule'>
    <group ref='mx:_G_mx.controls.VRule' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.VRule' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.VScrollBar'><choice>
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='scroll' />
  <group ref='mx:_G_mx.controls.scrollClasses.ScrollBar' />
</choice></group>
<attributeGroup name='_A_mx.controls.VScrollBar'>
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='scroll' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.scrollClasses.ScrollBar' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.VScrollBar'>
  <complexContent><extension base='mx:_I_mx.controls.scrollClasses.ScrollBar'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.VScrollBar'>
  <complexContent><extension base='mx:_I_mx.controls.VScrollBar'>
    <group ref='mx:_G_mx.controls.VScrollBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.VScrollBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.VSlider'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='change' />
  <element name='class' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelOffset' />
  <element name='labels' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveDragging' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='maximum' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='minimum' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='slideDuration' />
  <element name='slideEasing' />
  <element name='snapInterval' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='thumbCount' />
  <element name='thumbDrag' />
  <element name='thumbOffset' />
  <element name='thumbPress' />
  <element name='thumbRelease' />
  <element name='tickColor' />
  <element name='tickInterval' />
  <element name='tickLength' />
  <element name='tickOffset' />
  <element name='tickThickness' />
  <element name='toolTip' />
  <element name='toolTipOffset' />
  <element name='toolTipPlacement' />
  <element name='toolTipPrecision' />
  <element name='trackColor' />
  <element name='trackColors' />
  <element name='trackHighlight' />
  <element name='trackMargin' />
  <element name='unload' />
  <element name='valid' />
  <element name='value' />
  <element name='values' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element name='dataTipFormatFunction' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.VSlider'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='change' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelOffset' type='string' />
  <attribute name='labels' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveDragging' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='maximum' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='minimum' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='slideDuration' type='string' />
  <attribute name='slideEasing' type='string' />
  <attribute name='snapInterval' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='thumbCount' type='string' />
  <attribute name='thumbDrag' type='string' />
  <attribute name='thumbOffset' type='string' />
  <attribute name='thumbPress' type='string' />
  <attribute name='thumbRelease' type='string' />
  <attribute name='tickColor' type='string' />
  <attribute name='tickInterval' type='string' />
  <attribute name='tickLength' type='string' />
  <attribute name='tickOffset' type='string' />
  <attribute name='tickThickness' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='toolTipOffset' type='string' />
  <attribute name='toolTipPlacement' type='string' />
  <attribute name='toolTipPrecision' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='trackColors' type='string' />
  <attribute name='trackHighlight' type='string' />
  <attribute name='trackMargin' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='value' type='string' />
  <attribute name='values' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attribute name='dataTipFormatFunction' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.VSlider'>
  <complexContent><extension base='mx:_I_mx.controls.sliderclasses.Slider'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.VSlider'>
  <complexContent><extension base='mx:_I_mx.controls.VSlider'>
    <group ref='mx:_G_mx.controls.VSlider' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.VSlider' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.gridclasses.DataGridColumn'><choice>
  <element name='backgroundColor' />
  <element name='itemRenderer' />
  <element name='color' />
  <element name='dataField' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='editable' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='headerRenderer' />
  <element name='headerStyle' />
  <element name='headerText' />
  <element name='labelFunction' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='resizable' />
  <element name='showDataTips' />
  <element name='sortCompareFunction' />
  <element name='sortOnHeaderRelease' />
  <element name='sortable' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='width' />
  <element name='wordWrap' />
  <element name='visible' /><element name='includeInLayout' />
</choice></group>
<attributeGroup name='_A_mx.controls.gridclasses.DataGridColumn'>
  <attribute name='backgroundColor' type='string' />
  <attribute name='itemRenderer' type='string' />
  <attribute name='color' type='string' />
  <attribute name='dataField' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='editable' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='headerRenderer' type='string' />
  <attribute name='headerStyle' type='string' />
  <attribute name='headerText' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='resizable' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='sortCompareFunction' type='string' />
  <attribute name='sortOnHeaderRelease' type='string' />
  <attribute name='sortable' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='width' type='string' />
  <attribute name='wordWrap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.gridclasses.DataGridColumn'>
  <complexContent><extension base='mx:_I_mx.styles.CSSStyleDeclaration'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.gridclasses.DataGridColumn'>
  <complexContent><extension base='mx:_I_mx.controls.gridclasses.DataGridColumn'>
    <group ref='mx:_G_mx.controls.gridclasses.DataGridColumn' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.gridclasses.DataGridColumn' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.listclasses.ItemList'><choice>
  <element name='alternatingItemColors' />
  <element name='defaultIcon' />
  <element name='rollOverColor' />
  <element name='selectionColor' />
  <element name='selectionDisabledColor' />
  <element name='selectionDuration' />
  <element name='selectionEasing' />
  <element name='textDisabledColor' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='useRollOver' />
  <group ref='mx:_G_mx.controls.listclasses.ItemScrollSelectList' />
</choice></group>
<attributeGroup name='_A_mx.controls.listclasses.ItemList'>
  <attribute name='alternatingItemColors' type='string' />
  <attribute name='defaultIcon' type='string' />
  <attribute name='rollOverColor' type='string' />
  <attribute name='selectionColor' type='string' />
  <attribute name='selectionDisabledColor' type='string' />
  <attribute name='selectionDuration' type='string' />
  <attribute name='selectionEasing' type='string' />
  <attribute name='textDisabledColor' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='useRollOver' type='string' />
  <attributeGroup ref='mx:_A_mx.controls.listclasses.ItemScrollSelectList' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.listclasses.ItemList'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ItemScrollSelectList'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.listclasses.ItemList'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ItemList'>
    <group ref='mx:_G_mx.controls.listclasses.ItemList' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.listclasses.ItemList' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.listclasses.ItemScrollSelectList'><choice>
  <element name='cellRenderer' />
  <element name='change' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='dragEnabled' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='itemRenderer' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='multipleSelection' />
  <element name='sampleItem' />
  <element name='selectable' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='showDataTips' />
  <element name='verticalAlign' />
  <group ref='mx:_G_mx.core.ScrollView' />
</choice></group>
<attributeGroup name='_A_mx.controls.listclasses.ItemScrollSelectList'>
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='itemRenderer' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='sampleItem' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attributeGroup ref='mx:_A_mx.core.ScrollView' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.listclasses.ItemScrollSelectList'>
  <complexContent><extension base='mx:_I_mx.core.ScrollView'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.listclasses.ItemScrollSelectList'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ItemScrollSelectList'>
    <group ref='mx:_G_mx.controls.listclasses.ItemScrollSelectList' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.listclasses.ItemScrollSelectList' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.listclasses.ListLayout'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.listclasses.ListLayout'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ListLayout' /></complexContent>
</complexType>
<group name='_G_mx.controls.listclasses.ScrollSelectList'><choice>
  <element name='cellRenderer' />
  <element name='change' />
  <element name='dataProvider' />
  <element name='dataTipField' />
  <element name='dataTipFunction' />
  <element name='dragEnabled' />
  <element name='iconField' />
  <element name='iconFunction' />
  <element name='itemRollOut' />
  <element name='itemRollOver' />
  <element name='labelField' />
  <element name='labelFunction' />
  <element name='multipleSelection' />
  <element name='rowCount' />
  <element name='rowHeight' />
  <element name='rowRenderer' />
  <element name='selectable' />
  <element name='selectedIndex' />
  <element name='selectedIndices' />
  <element name='selectedItem' />
  <element name='selectedItems' />
  <element name='showDataTips' />
  <element name='variableRowHeight' />
  <element name='verticalAlign' />
  <element name='wordWrap' />
  <group ref='mx:_G_mx.core.ScrollView' />
</choice></group>
<attributeGroup name='_A_mx.controls.listclasses.ScrollSelectList'>
  <attribute name='cellRenderer' type='string' />
  <attribute name='change' type='string' />
  <attribute name='dataProvider' type='string' />
  <attribute name='dataTipField' type='string' />
  <attribute name='dataTipFunction' type='string' />
  <attribute name='dragEnabled' type='string' />
  <attribute name='iconField' type='string' />
  <attribute name='iconFunction' type='string' />
  <attribute name='itemRollOut' type='string' />
  <attribute name='itemRollOver' type='string' />
  <attribute name='labelField' type='string' />
  <attribute name='labelFunction' type='string' />
  <attribute name='multipleSelection' type='string' />
  <attribute name='rowCount' type='string' />
  <attribute name='rowHeight' type='string' />
  <attribute name='rowRenderer' type='string' />
  <attribute name='selectable' type='string' />
  <attribute name='selectedIndex' type='string' />
  <attribute name='selectedIndices' type='string' />
  <attribute name='selectedItem' type='string' />
  <attribute name='selectedItems' type='string' />
  <attribute name='showDataTips' type='string' />
  <attribute name='variableRowHeight' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='wordWrap' type='string' />
  <attributeGroup ref='mx:_A_mx.core.ScrollView' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.listclasses.ScrollSelectList'>
  <complexContent><extension base='mx:_I_mx.core.ScrollView'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.listclasses.ScrollSelectList'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.ScrollSelectList'>
    <group ref='mx:_G_mx.controls.listclasses.ScrollSelectList' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.listclasses.ScrollSelectList' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.listclasses.SelectableItem'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.listclasses.SelectableItem'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.SelectableItem'>
    <group ref='mx:_G_mx.core.UIComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIComponent' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.listclasses.VSelectableItem'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.SelectableItem'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.listclasses.VSelectableItem'>
  <complexContent><extension base='mx:_I_mx.controls.listclasses.VSelectableItem'>
    <group ref='mx:_G_mx.core.UIComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIComponent' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.menuclasses.MenuBarItem'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.menuclasses.MenuBarItem'>
  <complexContent><extension base='mx:_I_mx.controls.menuclasses.MenuBarItem'>
    <group ref='mx:_G_mx.core.UIComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIComponent' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.scrollClasses.ScrollBar'><choice>
  <element name='trackColors' />
  <group ref='mx:_G_mx.core.UIComponent' />
</choice></group>
<attributeGroup name='_A_mx.controls.scrollClasses.ScrollBar'>
  <attribute name='trackColors' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.scrollClasses.ScrollBar'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.scrollClasses.ScrollBar'>
  <complexContent><extension base='mx:_I_mx.controls.scrollClasses.ScrollBar'>
    <group ref='mx:_G_mx.controls.scrollClasses.ScrollBar' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.scrollClasses.ScrollBar' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.scrollClasses.ScrollThumb'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='buttonDown' />
  <element name='buttonDragOut' />
  <element name='class' />
  <element name='click' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='icon' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='label' />
  <element name='labelPlacement' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='repeatDelay' />
  <element name='repeatInterval' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selected' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='textRollOverColor' />
  <element name='textSelectedColor' />
  <element name='themeColor' />
  <element name='toggle' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.scrollClasses.ScrollThumb'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='buttonDown' type='string' />
  <attribute name='buttonDragOut' type='string' />
  <attribute name='class' type='string' />
  <attribute name='click' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='icon' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='label' type='string' />
  <attribute name='labelPlacement' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='repeatDelay' type='string' />
  <attribute name='repeatInterval' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selected' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='textRollOverColor' type='string' />
  <attribute name='textSelectedColor' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toggle' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.scrollClasses.ScrollThumb'>
  <complexContent><extension base='mx:_I_mx.controls.CustomButton'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.scrollClasses.ScrollThumb'>
  <complexContent><extension base='mx:_I_mx.controls.scrollClasses.ScrollThumb'>
    <group ref='mx:_G_mx.controls.scrollClasses.ScrollThumb' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.scrollClasses.ScrollThumb' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.controls.sliderclasses.Slider'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='change' />
  <element name='class' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='direction' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelOffset' />
  <element name='labels' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='liveDragging' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='maximum' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='minimum' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='slideDuration' />
  <element name='slideEasing' />
  <element name='snapInterval' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='thumbCount' />
  <element name='thumbDragged' />
  <element name='thumbOffset' />
  <element name='thumbPressed' />
  <element name='thumbReleased' />
  <element name='tickColor' />
  <element name='tickInterval' />
  <element name='tickLength' />
  <element name='tickOffset' />
  <element name='tickThickness' />
  <element name='toolTip' />
  <element name='toolTipOffset' />
  <element name='toolTipPrecision' />
  <element name='trackColor' />
  <element name='trackColors' />
  <element name='trackHighlight' />
  <element name='trackMargin' />
  <element name='unload' />
  <element name='valid' />
  <element name='value' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.controls.sliderclasses.Slider'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='change' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='direction' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelOffset' type='string' />
  <attribute name='labels' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='liveDragging' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='maximum' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='minimum' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='slideDuration' type='string' />
  <attribute name='slideEasing' type='string' />
  <attribute name='snapInterval' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='thumbCount' type='string' />
  <attribute name='thumbDragged' type='string' />
  <attribute name='thumbOffset' type='string' />
  <attribute name='thumbPressed' type='string' />
  <attribute name='thumbReleased' type='string' />
  <attribute name='tickColor' type='string' />
  <attribute name='tickInterval' type='string' />
  <attribute name='tickLength' type='string' />
  <attribute name='tickOffset' type='string' />
  <attribute name='tickThickness' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='toolTipOffset' type='string' />
  <attribute name='toolTipPrecision' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='trackColors' type='string' />
  <attribute name='trackHighlight' type='string' />
  <attribute name='trackMargin' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='value' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.controls.sliderclasses.Slider'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.sliderclasses.Slider'>
  <complexContent><extension base='mx:_I_mx.controls.sliderclasses.Slider'>
    <group ref='mx:_G_mx.controls.sliderclasses.Slider' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.controls.sliderclasses.Slider' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.controls.streamingmedia.CuePoint'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.controls.streamingmedia.CuePoint'>
  <complexContent><extension base='mx:_I_mx.controls.streamingmedia.CuePoint' /></complexContent>
</complexType>
<group name='_G_mx.core.Application'><choice>
  <element name='alpha' />
  <element name='autoLayout' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='childrenCreated' />
  <element name='childrenCreationComplete' />
  <element name='childrenCreationCompleteEffect' />
  <element name='class' />
  <element name='clipContent' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='creationIndex' />
  <element name='creationPolicy' />
  <element name='defaultAction' />
  <element name='defaultButton' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='frameRate' />
  <element name='hLineScrollSize' />
  <element name='hPageScrollSize' />
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalAlign' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='labelChanged' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginBottom' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='marginTop' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='pageTitle' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='preloader' />
  <element name='resetHistory' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scriptRecursionLimit' />
  <element name='scriptTimeLimit' />
  <element name='scroll' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='selfContained' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='theme' />
  <element name='themeColor' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='usePreloader' />
  <element name='vLineScrollSize' />
  <element name='vPageScrollSize' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalAlign' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='paddingTop' />
  <element name='paddingBottom' />
  <element name='paddingLeft' />
  <element name='paddingRight' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.core.Application'>
  <attribute name='alpha' type='string' />
  <attribute name='autoLayout' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='childrenCreated' type='string' />
  <attribute name='childrenCreationComplete' type='string' />
  <attribute name='childrenCreationCompleteEffect' type='string' />
  <attribute name='class' type='string' />
  <attribute name='clipContent' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='creationIndex' type='string' />
  <attribute name='creationPolicy' type='string' />
  <attribute name='defaultAction' type='string' />
  <attribute name='defaultButton' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='frameRate' type='string' />
  <attribute name='hLineScrollSize' type='string' />
  <attribute name='hPageScrollSize' type='string' />
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalAlign' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='labelChanged' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginBottom' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='marginTop' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='pageTitle' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='preloader' type='string' />
  <attribute name='resetHistory' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scriptRecursionLimit' type='string' />
  <attribute name='scriptTimeLimit' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='selfContained' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='theme' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='usePreloader' type='string' />
  <attribute name='vLineScrollSize' type='string' />
  <attribute name='vPageScrollSize' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalAlign' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='paddingTop' />
  <attribute name='paddingBottom' />
  <attribute name='paddingLeft' />
  <attribute name='paddingRight' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.core.Application'>
  <complexContent><extension base='mx:_I_mx.containers.Box'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.Application'>
  <complexContent><extension base='mx:_I_mx.core.Application'>
    <group ref='mx:_G_mx.core.Application' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.Application' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.core.Repeater'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.Repeater'>
  <complexContent><extension base='mx:_I_mx.core.Repeater'>
    <sequence minOccurs='0' maxOccurs='unbounded'>
      <any namespace="##any" processContents="lax" />
    </sequence>
    <attribute name='count' type='string' />
    <attribute name='dataProvider' type='string' />
    <attribute name='recycleChildren' type='string' />
    <attribute name='repeat' type='string' />
    <attribute name='startingIndex' type='string' />
    <attribute name='id' type='string' />
  </extension></complexContent>
</complexType>

<group name='_G_mx.core.ScrollView'><choice>
  <element name='hPosition' />
  <element name='hScrollPolicy' />
  <element name='liveScrolling' />
  <element name='maxHPosition' />
  <element name='scroll' />
  <element name='scrollTipFunction' />
  <element name='showScrollTips' />
  <element name='vPosition' />
  <element name='vScrollPolicy' />
  <group ref='mx:_G_mx.core.View' />
</choice></group>
<attributeGroup name='_A_mx.core.ScrollView'>
  <attribute name='hPosition' type='string' />
  <attribute name='hScrollPolicy' type='string' />
  <attribute name='liveScrolling' type='string' />
  <attribute name='maxHPosition' type='string' />
  <attribute name='scroll' type='string' />
  <attribute name='scrollTipFunction' type='string' />
  <attribute name='showScrollTips' type='string' />
  <attribute name='vPosition' type='string' />
  <attribute name='vScrollPolicy' type='string' />
  <attributeGroup ref='mx:_A_mx.core.View' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.core.ScrollView'>
  <complexContent><extension base='mx:_I_mx.core.View'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.ScrollView'>
  <complexContent><extension base='mx:_I_mx.core.ScrollView'>
    <group ref='mx:_G_mx.core.ScrollView' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.ScrollView' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.core.UIComponent'><choice>
  <element name='alpha' />
  <element name='backgroundAlpha' />
  <element name='backgroundColor' />
  <element name='backgroundDisabledColor' />
  <element name='backgroundImage' />
  <element name='backgroundSize' />
  <element name='barColor' />
  <element name='borderCapColor' />
  <element name='borderColor' />
  <element name='borderSides' />
  <element name='borderStyle' />
  <element name='borderThickness' />
  <element name='buttonColor' />
  <element name='class' />
  <element name='color' />
  <element name='cornerRadius' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='disabledColor' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='dropShadow' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='enabled' />
  <element name='errorColor' />
  <element name='fillColors' />
  <element name='focusIn' />
  <element name='focusInEffect' />
  <element name='focusOut' />
  <element name='focusOutEffect' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='highlightColor' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='invalid' />
  <element name='keyDown' />
  <element name='keyUp' />
  <element name='leading' />
  <element name='lineHeight' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='modalTransparency' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='scrollTrackColor' />
  <element name='selectedFillColors' />
  <element name='shadowCapColor' />
  <element name='shadowColor' />
  <element name='shadowDirection' />
  <element name='shadowDistance' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='symbolBackgroundColor' />
  <element name='symbolBackgroundDisabledColor' />
  <element name='symbolBackgroundPressedColor' />
  <element name='symbolColor' />
  <element name='symbolDisabledColor' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='themeColor' />
  <element name='toolTip' />
  <element name='trackColor' />
  <element name='unload' />
  <element name='valid' />
  <element name='valueCommitted' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.core.UIComponent'>
  <attribute name='alpha' type='string' />
  <attribute name='backgroundAlpha' type='string' />
  <attribute name='backgroundColor' type='string' />
  <attribute name='backgroundDisabledColor' type='string' />
  <attribute name='backgroundImage' type='string' />
  <attribute name='backgroundSize' type='string' />
  <attribute name='barColor' type='string' />
  <attribute name='borderCapColor' type='string' />
  <attribute name='borderColor' type='string' />
  <attribute name='borderSides' type='string' />
  <attribute name='borderStyle' type='string' />
  <attribute name='borderThickness' type='string' />
  <attribute name='buttonColor' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='cornerRadius' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='disabledColor' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='dropShadow' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='enabled' type='string' />
  <attribute name='errorColor' type='string' />
  <attribute name='fillColors' type='string' />
  <attribute name='focusIn' type='string' />
  <attribute name='focusInEffect' type='string' />
  <attribute name='focusOut' type='string' />
  <attribute name='focusOutEffect' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='highlightColor' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='invalid' type='string' />
  <attribute name='keyDown' type='string' />
  <attribute name='keyUp' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='lineHeight' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='modalTransparency' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='scrollTrackColor' type='string' />
  <attribute name='selectedFillColors' type='string' />
  <attribute name='shadowCapColor' type='string' />
  <attribute name='shadowColor' type='string' />
  <attribute name='shadowDirection' type='string' />
  <attribute name='shadowDistance' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='symbolBackgroundColor' type='string' />
  <attribute name='symbolBackgroundDisabledColor' type='string' />
  <attribute name='symbolBackgroundPressedColor' type='string' />
  <attribute name='symbolColor' type='string' />
  <attribute name='symbolDisabledColor' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='themeColor' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='trackColor' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='valid' type='string' />
  <attribute name='valueCommitted' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.core.UIComponent'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.UIComponent'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'>
    <group ref='mx:_G_mx.core.UIComponent' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIComponent' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.core.UIObject'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.core.UIObject'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.core.UIObject'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.UIObject'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.core.UIObjectDescriptor'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.UIObjectDescriptor'>
  <complexContent><extension base='mx:_I_mx.core.UIObjectDescriptor' /></complexContent>
</complexType>
<group name='_G_mx.core.View'><choice>
  <element name='childCreated' />
  <element name='childDestroyed' />
  <element name='childIndexChanged' />
  <element name='defaultAction' />
  <group ref='mx:_G_mx.core.UIComponent' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_MovieClip"/>
  <element ref="mx:Style"/>
  <element ref="mx:Model"/>
  <element ref="mx:Effect"/>
  <element ref="mx:Script"/>
  <element ref="mx:_X_WebService"/>
  <element ref="mx:_X_HTTPService"/>
  <element ref="mx:_X_XMLNode"/>

</choice></group>
<attributeGroup name='_A_mx.core.View'>
  <attribute name='childCreated' type='string' />
  <attribute name='childDestroyed' type='string' />
  <attribute name='childIndexChanged' type='string' />
  <attribute name='defaultAction' type='string' />
  <attributeGroup ref='mx:_A_mx.core.UIComponent' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.core.View'>
  <complexContent><extension base='mx:_I_mx.core.UIComponent'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.core.View'>
  <complexContent><extension base='mx:_I_mx.core.View'>
    <group ref='mx:_G_mx.core.View' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.View' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.CompositeEffect'>
  <complexContent><extension base='mx:_I_mx.effects.Effect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.CompositeEffect'>
  <complexContent><extension base='mx:_I_mx.effects.CompositeEffect'>
    <group ref='mx:_G_mx.effects.Effect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Effect' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.Dissolve'><choice>
  <element name='alphaFrom' />
  <element name='alphaTo' />
  <element name='color' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
</choice></group>
<attributeGroup name='_A_mx.effects.Dissolve'>
  <attribute name='alphaFrom' type='string' />
  <attribute name='alphaTo' type='string' />
  <attribute name='color' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.Dissolve'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Dissolve'>
  <complexContent><extension base='mx:_I_mx.effects.Dissolve'>
    <group ref='mx:_G_mx.effects.Dissolve' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Dissolve' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.Effect'><choice>
  <element name='duration' />
  <any namespace="##other" processContents="lax"/>
  <element ref="mx:_X_mx.effects.Effect" />

</choice></group>
<attributeGroup name='_A_mx.effects.Effect'>
  <attribute name='duration' type='string' />
  <attribute name="id" type="ID" />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.Effect'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Effect'>
  <complexContent><extension base='mx:_I_mx.effects.Effect'>
    <group ref='mx:_G_mx.effects.Effect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Effect' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.Fade'><choice>
  <element name='alphaFrom' />
  <element name='alphaTo' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
</choice></group>
<attributeGroup name='_A_mx.effects.Fade'>
  <attribute name='alphaFrom' type='string' />
  <attribute name='alphaTo' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.Fade'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Fade'>
  <complexContent><extension base='mx:_I_mx.effects.Fade'>
    <group ref='mx:_G_mx.effects.Fade' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Fade' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.MaskEffect'><choice>
  <element name='show' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
</choice></group>
<attributeGroup name='_A_mx.effects.MaskEffect'>
  <attribute name='show' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.MaskEffect'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.MaskEffect'>
  <complexContent><extension base='mx:_I_mx.effects.MaskEffect'>
    <group ref='mx:_G_mx.effects.MaskEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.MaskEffect' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.Move'><choice>
  <element name='xBy' />
  <element name='xFrom' />
  <element name='xTo' />
  <element name='yBy' />
  <element name='yFrom' />
  <element name='yTo' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
</choice></group>
<attributeGroup name='_A_mx.effects.Move'>
  <attribute name='xBy' type='string' />
  <attribute name='xFrom' type='string' />
  <attribute name='xTo' type='string' />
  <attribute name='yBy' type='string' />
  <attribute name='yFrom' type='string' />
  <attribute name='yTo' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.Move'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Move'>
  <complexContent><extension base='mx:_I_mx.effects.Move'>
    <group ref='mx:_G_mx.effects.Move' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Move' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.Parallel'>
  <complexContent><extension base='mx:_I_mx.effects.CompositeEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Parallel'>
  <complexContent><extension base='mx:_I_mx.effects.Parallel'>
    <group ref='mx:_G_mx.effects.Effect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Effect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.Pause'>
  <complexContent><extension base='mx:_I_mx.effects.Effect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Pause'>
  <complexContent><extension base='mx:_I_mx.effects.Pause'>
    <group ref='mx:_G_mx.effects.Effect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Effect' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.Resize'><choice>
  <element name='heightBy' />
  <element name='heightFrom' />
  <element name='heightTo' />
  <element name='hideChildren' />
  <element name='widthBy' />
  <element name='widthFrom' />
  <element name='widthTo' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
</choice></group>
<attributeGroup name='_A_mx.effects.Resize'>
  <attribute name='heightBy' type='string' />
  <attribute name='heightFrom' type='string' />
  <attribute name='heightTo' type='string' />
  <attribute name='hideChildren' type='string' />
  <attribute name='widthBy' type='string' />
  <attribute name='widthFrom' type='string' />
  <attribute name='widthTo' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.Resize'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Resize'>
  <complexContent><extension base='mx:_I_mx.effects.Resize'>
    <group ref='mx:_G_mx.effects.Resize' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Resize' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.Sequence'>
  <complexContent><extension base='mx:_I_mx.effects.CompositeEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Sequence'>
  <complexContent><extension base='mx:_I_mx.effects.Sequence'>
    <group ref='mx:_G_mx.effects.Effect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Effect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.Tween'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Tween'>
  <complexContent><extension base='mx:_I_mx.effects.Tween' /></complexContent>
</complexType>
<group name='_G_mx.effects.TweenEffect'><choice>
  <element name='easing' />
  <group ref='mx:_G_mx.effects.Effect' />
</choice></group>
<attributeGroup name='_A_mx.effects.TweenEffect'>
  <attribute name='easing' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.Effect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.TweenEffect'>
  <complexContent><extension base='mx:_I_mx.effects.Effect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.TweenEffect'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'>
    <group ref='mx:_G_mx.effects.TweenEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.WipeDown'>
  <complexContent><extension base='mx:_I_mx.effects.MaskEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.WipeDown'>
  <complexContent><extension base='mx:_I_mx.effects.WipeDown'>
    <group ref='mx:_G_mx.effects.MaskEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.MaskEffect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.WipeLeft'>
  <complexContent><extension base='mx:_I_mx.effects.MaskEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.WipeLeft'>
  <complexContent><extension base='mx:_I_mx.effects.WipeLeft'>
    <group ref='mx:_G_mx.effects.MaskEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.MaskEffect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.WipeRight'>
  <complexContent><extension base='mx:_I_mx.effects.MaskEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.WipeRight'>
  <complexContent><extension base='mx:_I_mx.effects.WipeRight'>
    <group ref='mx:_G_mx.effects.MaskEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.MaskEffect' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.effects.WipeUp'>
  <complexContent><extension base='mx:_I_mx.effects.MaskEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.WipeUp'>
  <complexContent><extension base='mx:_I_mx.effects.WipeUp'>
    <group ref='mx:_G_mx.effects.MaskEffect' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.MaskEffect' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.effects.Zoom'><choice>
  <element name='zoomWidthFrom' />
  <element name='zoomWidthTo' />
  <group ref='mx:_G_mx.effects.TweenEffect' />
  <element name="ZoomHeightTo"></element>
  <element name="ZoomWidthTo"></element>
</choice></group>
<attributeGroup name='_A_mx.effects.Zoom'>
  <attribute name='zoomWidthFrom' type='string' />
  <attribute name='zoomWidthTo' type='string' />
  <attribute name='zoomHeightFrom' type='string' />
  <attribute name='zoomHeightTo' type='string' />
  <attributeGroup ref='mx:_A_mx.effects.TweenEffect' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.effects.Zoom'>
  <complexContent><extension base='mx:_I_mx.effects.TweenEffect'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.effects.Zoom'>
  <complexContent><extension base='mx:_I_mx.effects.Zoom'>
    <group ref='mx:_G_mx.effects.Zoom' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.effects.Zoom' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.events.EventDispatcher'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.events.EventDispatcher'>
  <complexContent><extension base='mx:_I_mx.events.EventDispatcher' /></complexContent>
</complexType>
<group name='_G_mx.formatters.CurrencyFormatter'><choice>
  <element name='alignSymbol' />
  <element name='currencySymbol' />
  <element name='decimalSeparatorFrom' />
  <element name='decimalSeparatorTo' />
  <element name='precision' />
  <element name='rounding' />
  <element name='thousandsSeparatorFrom' />
  <element name='thousandsSeparatorTo' />
  <element name='useNegativeSign' />
  <element name='useThousandsSeparator' />
  <group ref='mx:_G_mx.formatters.Formatter' />
</choice></group>
<attributeGroup name='_A_mx.formatters.CurrencyFormatter'>
  <attribute name='alignSymbol' type='string' />
  <attribute name='currencySymbol' type='string' />
  <attribute name='decimalSeparatorFrom' type='string' />
  <attribute name='decimalSeparatorTo' type='string' />
  <attribute name='precision' type='string' />
  <attribute name='rounding' type='string' />
  <attribute name='thousandsSeparatorFrom' type='string' />
  <attribute name='thousandsSeparatorTo' type='string' />
  <attribute name='useNegativeSign' type='string' />
  <attribute name='useThousandsSeparator' type='string' />
  <attributeGroup ref='mx:_A_mx.formatters.Formatter' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.formatters.CurrencyFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.Formatter'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.CurrencyFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.CurrencyFormatter'>
    <group ref='mx:_G_mx.formatters.CurrencyFormatter' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.formatters.CurrencyFormatter' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.formatters.DateFormatter'><choice>
  <element name='formatString' />
  <group ref='mx:_G_mx.formatters.Formatter' />
</choice></group>
<attributeGroup name='_A_mx.formatters.DateFormatter'>
  <attribute name='formatString' type='string' />
  <attributeGroup ref='mx:_A_mx.formatters.Formatter' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.formatters.DateFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.Formatter'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.DateFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.DateFormatter'>
    <group ref='mx:_G_mx.formatters.DateFormatter' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.formatters.DateFormatter' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.formatters.Formatter'><choice>
</choice></group>
<attributeGroup name='_A_mx.formatters.Formatter'>
  <attributeGroup ref="mx:id.attr"/>

</attributeGroup>
<complexType mixed='true' name='_I_mx.formatters.Formatter'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.Formatter'>
  <complexContent><extension base='mx:_I_mx.formatters.Formatter'>
    <group ref='mx:_G_mx.formatters.Formatter' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.formatters.Formatter' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.formatters.NumberFormatter'><choice>
  <element name='decimalSeparatorFrom' />
  <element name='decimalSeparatorTo' />
  <element name='precision' />
  <element name='rounding' />
  <element name='thousandsSeparatorFrom' />
  <element name='thousandsSeparatorTo' />
  <element name='useNegativeSign' />
  <element name='useThousandsSeparator' />
  <group ref='mx:_G_mx.formatters.Formatter' />
</choice></group>
<attributeGroup name='_A_mx.formatters.NumberFormatter'>
  <attribute name='decimalSeparatorFrom' type='string' />
  <attribute name='decimalSeparatorTo' type='string' />
  <attribute name='precision' type='string' />
  <attribute name='rounding' type='string' />
  <attribute name='thousandsSeparatorFrom' type='string' />
  <attribute name='thousandsSeparatorTo' type='string' />
  <attribute name='useNegativeSign' type='string' />
  <attribute name='useThousandsSeparator' type='string' />
  <attributeGroup ref='mx:_A_mx.formatters.Formatter' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.formatters.NumberFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.Formatter'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.NumberFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.NumberFormatter'>
    <group ref='mx:_G_mx.formatters.NumberFormatter' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.formatters.NumberFormatter' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.formatters.PhoneFormatter'><choice>
  <element name='areaCode' />
  <element name='areaCodeFormat' />
  <element name='formatString' />
  <element name='numberSymbol' />
  <element name='validPatternChars' />
  <group ref='mx:_G_mx.formatters.Formatter' />
</choice></group>
<attributeGroup name='_A_mx.formatters.PhoneFormatter'>
  <attribute name='areaCode' type='string' />
  <attribute name='areaCodeFormat' type='string' />
  <attribute name='formatString' type='string' />
  <attribute name='numberSymbol' type='string' />
  <attribute name='validPatternChars' type='string' />
  <attributeGroup ref='mx:_A_mx.formatters.Formatter' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.formatters.PhoneFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.Formatter'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.PhoneFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.PhoneFormatter'>
    <group ref='mx:_G_mx.formatters.PhoneFormatter' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.formatters.PhoneFormatter' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.formatters.StringFormatter'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.StringFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.StringFormatter' /></complexContent>
</complexType>
<group name='_G_mx.formatters.ZipCodeFormatter'><choice>
  <element name='formatString' />
  <group ref='mx:_G_mx.formatters.Formatter' />
</choice></group>
<attributeGroup name='_A_mx.formatters.ZipCodeFormatter'>
  <attribute name='formatString' type='string' />
  <attributeGroup ref='mx:_A_mx.formatters.Formatter' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.formatters.ZipCodeFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.Formatter'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.formatters.ZipCodeFormatter'>
  <complexContent><extension base='mx:_I_mx.formatters.ZipCodeFormatter'>
    <group ref='mx:_G_mx.formatters.ZipCodeFormatter' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.formatters.ZipCodeFormatter' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.graphics.Fill'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.Fill'>
  <complexContent><extension base='mx:_I_mx.graphics.Fill' /></complexContent>
</complexType>
<group name='_G_mx.graphics.GradientEntry'><choice>
  <element name='alpha' />
  <element name='color' />
  <element name='ratio' />
</choice></group>
<attributeGroup name='_A_mx.graphics.GradientEntry'>
  <attribute name='alpha' type='string' />
  <attribute name='color' type='string' />
  <attribute name='ratio' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.graphics.GradientEntry'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.GradientEntry'>
  <complexContent><extension base='mx:_I_mx.graphics.GradientEntry'>
    <group ref='mx:_G_mx.graphics.GradientEntry' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.graphics.GradientEntry' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.graphics.LinearGradient'><choice>
  <element name='angle' />
  <element name='entries' />
</choice></group>
<attributeGroup name='_A_mx.graphics.LinearGradient'>
  <attribute name='angle' type='string' />
  <attribute name='entries' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.graphics.LinearGradient'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.LinearGradient'>
  <complexContent><extension base='mx:_I_mx.graphics.LinearGradient'>
    <group ref='mx:_G_mx.graphics.LinearGradient' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.graphics.LinearGradient' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.graphics.Point'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.Point'>
  <complexContent><extension base='mx:_I_mx.graphics.Point' /></complexContent>
</complexType>
<group name='_G_mx.graphics.RadialGradient'><choice>
  <element name='entries' />
</choice></group>
<attributeGroup name='_A_mx.graphics.RadialGradient'>
  <attribute name='entries' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.graphics.RadialGradient'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.RadialGradient'>
  <complexContent><extension base='mx:_I_mx.graphics.RadialGradient'>
    <group ref='mx:_G_mx.graphics.RadialGradient' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.graphics.RadialGradient' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.graphics.Rect'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.Rect'>
  <complexContent><extension base='mx:_I_mx.graphics.Rect' /></complexContent>
</complexType>
<group name='_G_mx.graphics.SolidColor'><choice>
  <element name='alpha' />
  <element name='color' />
</choice></group>
<attributeGroup name='_A_mx.graphics.SolidColor'>
  <attribute name='alpha' type='string' />
  <attribute name='color' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.graphics.SolidColor'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.SolidColor'>
  <complexContent><extension base='mx:_I_mx.graphics.SolidColor'>
    <group ref='mx:_G_mx.graphics.SolidColor' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.graphics.SolidColor' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.graphics.Stroke'><choice>
  <element name='alpha' />
  <element name='color' />
  <element name='weight' />
</choice></group>
<attributeGroup name='_A_mx.graphics.Stroke'>
  <attribute name='alpha' type='string' />
  <attribute name='color' type='string' />
  <attribute name='weight' type='string' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.graphics.Stroke'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.graphics.Stroke'>
  <complexContent><extension base='mx:_I_mx.graphics.Stroke'>
    <group ref='mx:_G_mx.graphics.Stroke' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.graphics.Stroke' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.preloaders.DownloadProgressBar'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.preloaders.DownloadProgressBar'>
  <complexContent><extension base='mx:_I_mx.preloaders.DownloadProgressBar'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.preloaders.Preloader'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.preloaders.Preloader'>
  <complexContent><extension base='mx:_I_mx.preloaders.Preloader' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.remoting.Connection'>
  <complexContent><extension base='mx:_I_NetConnection'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.remoting.Connection'>
  <complexContent><extension base='mx:_I_mx.remoting.Connection' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.remoting.RemoteObject'>
  <complexContent><extension base='mx:_I_mx.remoting.Service'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.remoting.RemoteObject'>
  <complexContent><extension base='mx:_I_mx.remoting.RemoteObject' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.remoting.Service'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.remoting.Service'>
  <complexContent><extension base='mx:_I_mx.remoting.Service' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.rpc.Responder'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.rpc.Responder'>
  <complexContent><extension base='mx:_I_mx.rpc.Responder' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.Log'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.Log'>
  <complexContent><extension base='mx:_I_mx.services.Log' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.WSDL'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.WSDL'>
  <complexContent><extension base='mx:_I_mx.services.WSDL' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.WSDLConstants'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.WSDLConstants'>
  <complexContent><extension base='mx:_I_mx.services.WSDLConstants' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.WebService'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.WebService'>
  <complexContent><extension base='mx:_I_mx.services.WebService' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.WebServiceProxy'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.WebServiceProxy'>
  <complexContent><extension base='mx:_I_mx.services.WebServiceProxy' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.XMLDecoderConfig'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.XMLDecoderConfig'>
  <complexContent><extension base='mx:_I_mx.services.XMLDecoderConfig' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.services.XMLEncoderConfig'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.services.XMLEncoderConfig'>
  <complexContent><extension base='mx:_I_mx.services.XMLEncoderConfig' /></complexContent>
</complexType>
<group name='_G_mx.servicetags.HTTPService'><choice>
<element name="request" minOccurs="0" maxOccurs="1">
                    <complexType>
                        <sequence>
                            <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
                        </sequence>
                    </complexType>
                </element></choice></group>
<attributeGroup name='_A_mx.servicetags.HTTPService'>
<attributeGroup ref="mx:id.attr"/>
            <attribute name="url" type="string" />
            <attribute name="serviceName" type="string"/>
            <attribute name="method">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="GET" />
                        <enumeration value="POST" />
                    </restriction>
                </simpleType>
            </attribute>
            <attribute name="fault" type="mx:Event"/>
            <attribute name="result" type="mx:Event"/>
            <attribute name="concurrency">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="single"/>
                        <enumeration value="last"/>
                        <enumeration value="multiple"/>
                    </restriction>
                </simpleType>
            </attribute>
            <attribute name="resultFormat">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="xml"/>
                        <enumeration value="object"/>
                        <enumeration value="flashvars"/>
                        <enumeration value="text"/>
                    </restriction>
                </simpleType>
            </attribute>
            <attribute name="showBusyCursor" type="string" />
            <attribute name="xmlDecode" type="string" />
            <attribute name="xmlEncode" type="string" /></attributeGroup>
<complexType mixed='true' name='_I_mx.servicetags.HTTPService'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.servicetags.HTTPService'>
  <complexContent><extension base='mx:_I_mx.servicetags.HTTPService'>
    <group ref='mx:_G_mx.servicetags.HTTPService' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.servicetags.HTTPService' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.servicetags.RemoteObject'><choice>
<element name="method" minOccurs="0" maxOccurs="unbounded">
                    <complexType>
                        <sequence>
                            <element name="arguments" minOccurs="0">
                                <complexType>
                                    <sequence>
                                        <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
                                    </sequence>
                                </complexType>
                            </element>
                        </sequence>
                   </complexType>
                </element></choice></group>
<attributeGroup name='_A_mx.servicetags.RemoteObject'>
<attributeGroup ref="mx:id.attr"/>
            <attribute name="named" type="string"/>
            <attribute name="source" type="string"/>
            <attribute name="type">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="stateful-class"/>
                        <enumeration value="stateless-class"/>
                        <enumeration value="jndi"/>
                        <enumeration value="ejb"/>
                    </restriction>
                </simpleType>
            </attribute>
            <attribute name="fault" type="mx:Event"/>
            <attribute name="result" type="mx:Event"/>
            <attribute name="concurrency">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="single"/>
                        <enumeration value="last"/>
                        <enumeration value="multiple"/>
                    </restriction>
                </simpleType>
            </attribute>
            <attribute name="showBusyCursor" type="boolean" />
            <attribute name="encoding">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="amf" />
                    </restriction>
                </simpleType>
            </attribute></attributeGroup>
<complexType mixed='true' name='_I_mx.servicetags.RemoteObject'>
  <complexContent><extension base='mx:_I_mx.servicetags.Service'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.servicetags.RemoteObject'>
  <complexContent><extension base='mx:_I_mx.servicetags.RemoteObject'>
    <group ref='mx:_G_mx.servicetags.RemoteObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.servicetags.RemoteObject' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.servicetags.Service'><choice>
<element name="operation" minOccurs="0" maxOccurs="unbounded">
					<complexType>
						<sequence>
							<element name="request" minOccurs="0">
								<complexType>
									<sequence>
                                        <any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
									</sequence>
                                    <attribute name="literal" type="boolean"/>
								</complexType>
							</element>
						</sequence>
					</complexType>
  </element></choice></group>
<attributeGroup name='_A_mx.servicetags.Service'>
<attributeGroup ref="mx:id.attr"/>
			<attribute name="load" type="mx:ActionScript"/>
			<attribute name="wsdl" type="string"/>
			<attribute name="fault" type="mx:Event"/>
			<attribute name="result" type="mx:Event"/>
			<attribute name="service" type="string"/>
			<attribute name="port" type="string"/>
			<attribute name="serviceName" type="string"/>
            <attribute name="concurrency">
                <simpleType>
                    <restriction base="string">
                        <enumeration value="single"/>
                        <enumeration value="last"/>
                        <enumeration value="multiple"/>
                    </restriction>
                </simpleType>
            </attribute>
            <attribute name="showBusyCursor" type="boolean" /></attributeGroup>
<complexType mixed='true' name='_I_mx.servicetags.Service'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.servicetags.Service'>
  <complexContent><extension base='mx:_I_mx.servicetags.Service'>
    <group ref='mx:_G_mx.servicetags.Service' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.servicetags.Service' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.Border'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.Border'>
  <complexContent><extension base='mx:_I_mx.skins.Border'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.skins.CustomBorder'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.skins.CustomBorder'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.skins.CustomBorder'>
  <complexContent><extension base='mx:_I_mx.skins.Border'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.CustomBorder'>
  <complexContent><extension base='mx:_I_mx.skins.CustomBorder'>
    <group ref='mx:_G_mx.skins.CustomBorder' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.skins.CustomBorder' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.RectBorder'>
  <complexContent><extension base='mx:_I_mx.skins.Border'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.RectBorder'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.SkinElement'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.SkinElement'>
  <complexContent><extension base='mx:_I_mx.skins.SkinElement'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.skins.halo.AccordionHeaderSkin'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.skins.halo.AccordionHeaderSkin'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.skins.halo.AccordionHeaderSkin'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.AccordionHeaderSkin'>
  <complexContent><extension base='mx:_I_mx.skins.halo.AccordionHeaderSkin'>
    <group ref='mx:_G_mx.skins.halo.AccordionHeaderSkin' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.skins.halo.AccordionHeaderSkin' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.CheckBoxIcon'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.CheckBoxIcon'>
  <complexContent><extension base='mx:_I_mx.skins.halo.CheckBoxIcon'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.ComboBoxArrowSkin'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.ComboBoxArrowSkin'>
  <complexContent><extension base='mx:_I_mx.skins.halo.ComboBoxArrowSkin'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.DropShadow'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.DropShadow'>
  <complexContent><extension base='mx:_I_mx.skins.halo.DropShadow'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.HSliderAssets'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.HSliderAssets'>
  <complexContent><extension base='mx:_I_mx.skins.halo.HSliderAssets'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.skins.halo.LinkSeparator'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.skins.halo.LinkSeparator'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.skins.halo.LinkSeparator'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.LinkSeparator'>
  <complexContent><extension base='mx:_I_mx.skins.halo.LinkSeparator'>
    <group ref='mx:_G_mx.skins.halo.LinkSeparator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.skins.halo.LinkSeparator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.skins.halo.ListDropIndicator'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='height' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='width' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.skins.halo.ListDropIndicator'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='height' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='width' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.skins.halo.ListDropIndicator'>
  <complexContent><extension base='mx:_I_mx.core.UIObject'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.ListDropIndicator'>
  <complexContent><extension base='mx:_I_mx.skins.halo.ListDropIndicator'>
    <group ref='mx:_G_mx.skins.halo.ListDropIndicator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.skins.halo.ListDropIndicator' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.NumericStepperAssets'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.NumericStepperAssets'>
  <complexContent><extension base='mx:_I_mx.skins.halo.NumericStepperAssets'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.ProgressBarAssets'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.ProgressBarAssets'>
  <complexContent><extension base='mx:_I_mx.skins.halo.ProgressBarAssets'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.RadioButtonIcon'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.RadioButtonIcon'>
  <complexContent><extension base='mx:_I_mx.skins.halo.RadioButtonIcon'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.RectBorder'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.RectBorder'>
  <complexContent><extension base='mx:_I_mx.skins.halo.RectBorder'>
    <group ref='mx:_G_mx.core.UIObject' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.core.UIObject' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.ScrollBarAssets'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.ScrollBarAssets'>
  <complexContent><extension base='mx:_I_mx.skins.halo.ScrollBarAssets'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.skins.halo.TabSkin'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.skins.halo.TabSkin'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.skins.halo.TabSkin'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.TabSkin'>
  <complexContent><extension base='mx:_I_mx.skins.halo.TabSkin'>
    <group ref='mx:_G_mx.skins.halo.TabSkin' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.skins.halo.TabSkin' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.skins.halo.TitleBackground'><choice>
  <element name='alpha' />
  <element name='class' />
  <element name='color' />
  <element name='creationComplete' />
  <element name='creationCompleteEffect' />
  <element name='dragComplete' />
  <element name='dragDrop' />
  <element name='dragEnter' />
  <element name='dragExit' />
  <element name='dragOver' />
  <element name='draw' />
  <element name='effectEnd' />
  <element name='effectStart' />
  <element name='fontFamily' />
  <element name='fontSize' />
  <element name='fontStyle' />
  <element name='fontWeight' />
  <element name='heightFlex' />
  <element name='hide' />
  <element name='hideEffect' />
  <element name='hideToolTip' />
  <element name='horizontalGap' />
  <element name='initialize' />
  <element name='leading' />
  <element name='load' />
  <element name='marginLeft' />
  <element name='marginRight' />
  <element name='maxHeight' />
  <element name='maxWidth' />
  <element name='minHeight' />
  <element name='minWidth' />
  <element name='mouseChangeSomewhere' />
  <element name='mouseDown' />
  <element name='mouseDownEffect' />
  <element name='mouseDownSomewhere' />
  <element name='mouseMove' />
  <element name='mouseMoveSomewhere' />
  <element name='mouseOut' />
  <element name='mouseOutEffect' />
  <element name='mouseOver' />
  <element name='mouseOverEffect' />
  <element name='mouseUp' />
  <element name='mouseUpEffect' />
  <element name='mouseUpSomewhere' />
  <element name='move' />
  <element name='moveEffect' />
  <element name='preferredHeight' />
  <element name='preferredWidth' />
  <element name='resize' />
  <element name='resizeEffect' />
  <element name='show' />
  <element name='showEffect' />
  <element name='showToolTip' />
  <element name='styleName' />
  <element name='tabEnabled' />
  <element name='textAlign' />
  <element name='textDecoration' />
  <element name='textIndent' />
  <element name='toolTip' />
  <element name='unload' />
  <element name='verticalGap' />
  <element name='visible' /><element name='includeInLayout' />
  <element name='widthFlex' />
  <element name='x' />
  <element name='y' />
  <element ref="mx:_X_Repeater" />
  <element ref="mx:_X_Binding" />
  <element ref="mx:_X_RadioButtonGroup" />

  <element ref="mx:_X_String" />
  <element ref="mx:_X_Boolean" />
  <element ref="mx:_X_Array" />
  <element ref="mx:_X_Number" />
  <element ref="mx:_X_Formatter" />
  <element ref="mx:_X_Validator" />
  <element ref="mx:Metadata"/>

</choice></group>
<attributeGroup name='_A_mx.skins.halo.TitleBackground'>
  <attribute name='alpha' type='string' />
  <attribute name='class' type='string' />
  <attribute name='color' type='string' />
  <attribute name='creationComplete' type='string' />
  <attribute name='creationCompleteEffect' type='string' />
  <attribute name='dragComplete' type='string' />
  <attribute name='dragDrop' type='string' />
  <attribute name='dragEnter' type='string' />
  <attribute name='dragExit' type='string' />
  <attribute name='dragOver' type='string' />
  <attribute name='draw' type='string' />
  <attribute name='effectEnd' type='string' />
  <attribute name='effectStart' type='string' />
  <attribute name='fontFamily' type='string' />
  <attribute name='fontSize' type='string' />
  <attribute name='fontStyle' type='string' />
  <attribute name='fontWeight' type='string' />
  <attribute name='heightFlex' type='string' />
  <attribute name='hide' type='string' />
  <attribute name='hideEffect' type='string' />
  <attribute name='hideToolTip' type='string' />
  <attribute name='horizontalGap' type='string' />
  <attribute name='initialize' type='string' />
  <attribute name='leading' type='string' />
  <attribute name='load' type='string' />
  <attribute name='marginLeft' type='string' />
  <attribute name='marginRight' type='string' />
  <attribute name='maxHeight' type='string' />
  <attribute name='maxWidth' type='string' />
  <attribute name='minHeight' type='string' />
  <attribute name='minWidth' type='string' />
  <attribute name='mouseChangeSomewhere' type='string' />
  <attribute name='mouseDown' type='string' />
  <attribute name='mouseDownEffect' type='string' />
  <attribute name='mouseDownSomewhere' type='string' />
  <attribute name='mouseMove' type='string' />
  <attribute name='mouseMoveSomewhere' type='string' />
  <attribute name='mouseOut' type='string' />
  <attribute name='mouseOutEffect' type='string' />
  <attribute name='mouseOver' type='string' />
  <attribute name='mouseOverEffect' type='string' />
  <attribute name='mouseUp' type='string' />
  <attribute name='mouseUpEffect' type='string' />
  <attribute name='mouseUpSomewhere' type='string' />
  <attribute name='move' type='string' />
  <attribute name='moveEffect' type='string' />
  <attribute name='preferredHeight' type='string' />
  <attribute name='preferredWidth' type='string' />
  <attribute name='resize' type='string' />
  <attribute name='resizeEffect' type='string' />
  <attribute name='show' type='string' />
  <attribute name='showEffect' type='string' />
  <attribute name='showToolTip' type='string' />
  <attribute name='styleName' type='string' />
  <attribute name='tabEnabled' type='string' />
  <attribute name='textAlign' type='string' />
  <attribute name='textDecoration' type='string' />
  <attribute name='textIndent' type='string' />
  <attribute name='toolTip' type='string' />
  <attribute name='unload' type='string' />
  <attribute name='verticalGap' type='string' />
  <attribute name='visible' type='string' /><attribute name='includeInLayout' type='string' />
  <attribute name='widthFlex' type='string' />
  <attribute name='x' type='string' />
  <attribute name='y' type='string' />
  <attributeGroup ref="mx:id.attr" />

</attributeGroup>
<complexType mixed='true' name='_I_mx.skins.halo.TitleBackground'>
  <complexContent><extension base='mx:_I_mx.skins.RectBorder'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.TitleBackground'>
  <complexContent><extension base='mx:_I_mx.skins.halo.TitleBackground'>
    <group ref='mx:_G_mx.skins.halo.TitleBackground' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.skins.halo.TitleBackground' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.VSliderAssets'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.VSliderAssets'>
  <complexContent><extension base='mx:_I_mx.skins.halo.VSliderAssets'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.skins.halo.WindowAssets'>
  <complexContent><extension base='mx:_I_MovieClip'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.skins.halo.WindowAssets'>
  <complexContent><extension base='mx:_I_mx.skins.halo.WindowAssets'>
    <group ref='mx:_G_MovieClip' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_MovieClip' />
  </extension></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.styles.CSSStyleDeclaration'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.styles.CSSStyleDeclaration'>
  <complexContent><extension base='mx:_I_mx.styles.CSSStyleDeclaration' /></complexContent>
</complexType>
<complexType mixed='true' name='_I_mx.styles.CSSStyleSheet'>
  <complexContent><extension base='mx:_I_Array'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.styles.CSSStyleSheet'>
  <complexContent><extension base='mx:_I_mx.styles.CSSStyleSheet' /></complexContent>
</complexType>
<group name='_G_mx.validators.CreditCardValidator'><choice>
  <element name='allowedFormatChars' />
  <element name='invalidCharError' />
  <element name='invalidFormatCharsError' />
  <element name='invalidNumberError' />
  <element name='noNumError' />
  <element name='noTypeError' />
  <element name='wrongLengthError' />
  <element name='wrongTypeError' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.CreditCardValidator'>
  <attribute name='allowedFormatChars' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='invalidNumberError' type='string' />
  <attribute name='noNumError' type='string' />
  <attribute name='noTypeError' type='string' />
  <attribute name='wrongLengthError' type='string' />
  <attribute name='wrongTypeError' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.CreditCardValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.CreditCardValidator'>
  <complexContent><extension base='mx:_I_mx.validators.CreditCardValidator'>
    <group ref='mx:_G_mx.validators.CreditCardValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.CreditCardValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.CurrencyValidator'><choice>
  <element name='alignSymbol' />
  <element name='allowNegative' />
  <element name='currencySymbol' />
  <element name='currencySymbolError' />
  <element name='decimalPointCountError' />
  <element name='decimalSeparator' />
  <element name='exceedsMaxError' />
  <element name='invalidCharError' />
  <element name='invalidFormatCharsError' />
  <element name='lowerThanMinError' />
  <element name='maxValue' />
  <element name='minValue' />
  <element name='negativeError' />
  <element name='precision' />
  <element name='precisionError' />
  <element name='separationError' />
  <element name='thousandsSeparator' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.CurrencyValidator'>
  <attribute name='alignSymbol' type='string' />
  <attribute name='allowNegative' type='string' />
  <attribute name='currencySymbol' type='string' />
  <attribute name='currencySymbolError' type='string' />
  <attribute name='decimalPointCountError' type='string' />
  <attribute name='decimalSeparator' type='string' />
  <attribute name='exceedsMaxError' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='lowerThanMinError' type='string' />
  <attribute name='maxValue' type='string' />
  <attribute name='minValue' type='string' />
  <attribute name='negativeError' type='string' />
  <attribute name='precision' type='string' />
  <attribute name='precisionError' type='string' />
  <attribute name='separationError' type='string' />
  <attribute name='thousandsSeparator' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.CurrencyValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.CurrencyValidator'>
  <complexContent><extension base='mx:_I_mx.validators.CurrencyValidator'>
    <group ref='mx:_G_mx.validators.CurrencyValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.CurrencyValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.DateValidator'><choice>
  <element name='allowedFormatChars' />
  <element name='formatError' />
  <element name='inputFormat' />
  <element name='invalidCharError' />
  <element name='invalidFormatCharsError' />
  <element name='validateAsString' />
  <element name='wrongDayError' />
  <element name='wrongLengthError' />
  <element name='wrongMonthError' />
  <element name='wrongYearError' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.DateValidator'>
  <attribute name='allowedFormatChars' type='string' />
  <attribute name='formatError' type='string' />
  <attribute name='inputFormat' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='validateAsString' type='string' />
  <attribute name='wrongDayError' type='string' />
  <attribute name='wrongLengthError' type='string' />
  <attribute name='wrongMonthError' type='string' />
  <attribute name='wrongYearError' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.DateValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.DateValidator'>
  <complexContent><extension base='mx:_I_mx.validators.DateValidator'>
    <group ref='mx:_G_mx.validators.DateValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.DateValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.EmailValidator'><choice>
  <element name='invalidCharError' />
  <element name='invalidDomainError' />
  <element name='invalidIPDomainError' />
  <element name='invalidPeriodsInDomainError' />
  <element name='missingAtSignError' />
  <element name='missingPeriodInDomainError' />
  <element name='missingUsernameError' />
  <element name='tooManyAtSignsError' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.EmailValidator'>
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidDomainError' type='string' />
  <attribute name='invalidIPDomainError' type='string' />
  <attribute name='invalidPeriodsInDomainError' type='string' />
  <attribute name='missingAtSignError' type='string' />
  <attribute name='missingPeriodInDomainError' type='string' />
  <attribute name='missingUsernameError' type='string' />
  <attribute name='tooManyAtSignsError' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.EmailValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.EmailValidator'>
  <complexContent><extension base='mx:_I_mx.validators.EmailValidator'>
    <group ref='mx:_G_mx.validators.EmailValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.EmailValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.NumberValidator'><choice>
  <element name='allowNegative' />
  <element name='decimalPointCountError' />
  <element name='decimalSeparator' />
  <element name='domain' />
  <element name='exceedsMaxError' />
  <element name='field' />
  <element name='integerError' />
  <element name='invalidCharError' />
  <element name='invalidFormatCharsError' />
  <element name='listener' />
  <element name='lowerThanMinError' />
  <element name='maxValue' />
  <element name='minValue' />
  <element name='negativeError' />
  <element name='precision' />
  <element name='precisionError' />
  <element name='requiredFieldError' />
  <element name='separationError' />
  <element name='thousandsSeparator' />
  <element name='validate' />
</choice></group>
<attributeGroup name='_A_mx.validators.NumberValidator'>
  <attribute name='allowNegative' type='string' />
  <attribute name='decimalPointCountError' type='string' />
  <attribute name='decimalSeparator' type='string' />
  <attribute name='domain' type='string' />
  <attribute name='exceedsMaxError' type='string' />
  <attribute name='field' type='string' />
  <attribute name='integerError' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='listener' type='string' />
  <attribute name='lowerThanMinError' type='string' />
  <attribute name='maxValue' type='string' />
  <attribute name='minValue' type='string' />
  <attribute name='negativeError' type='string' />
  <attribute name='precision' type='string' />
  <attribute name='precisionError' type='string' />
  <attribute name='requiredFieldError' type='string' />
  <attribute name='separationError' type='string' />
  <attribute name='thousandsSeparator' type='string' />
  <attribute name='validate' type='string' />
  <attributeGroup ref="mx:id.attr"/>

</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.NumberValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.NumberValidator'>
  <complexContent><extension base='mx:_I_mx.validators.NumberValidator'>
    <group ref='mx:_G_mx.validators.NumberValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.NumberValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.PhoneNumberValidator'><choice>
  <element name='allowedFormatChars' />
  <element name='invalidCharError' />
  <element name='invalidFormatCharsError' />
  <element name='wrongLengthError' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.PhoneNumberValidator'>
  <attribute name='allowedFormatChars' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='wrongLengthError' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.PhoneNumberValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.PhoneNumberValidator'>
  <complexContent><extension base='mx:_I_mx.validators.PhoneNumberValidator'>
    <group ref='mx:_G_mx.validators.PhoneNumberValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.PhoneNumberValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.SocialSecurityValidator'><choice>
  <element name='allowedFormatChars' />
  <element name='invalidCharError' />
  <element name='invalidFormatCharsError' />
  <element name='wrongFormatError' />
  <element name='zeroStartError' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.SocialSecurityValidator'>
  <attribute name='allowedFormatChars' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='wrongFormatError' type='string' />
  <attribute name='zeroStartError' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.SocialSecurityValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.SocialSecurityValidator'>
  <complexContent><extension base='mx:_I_mx.validators.SocialSecurityValidator'>
    <group ref='mx:_G_mx.validators.SocialSecurityValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.SocialSecurityValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.StringValidator'><choice>
  <element name='maxLength' />
  <element name='minLength' />
  <element name='tooLongError' />
  <element name='tooShortError' />
  <element name='property' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.StringValidator'>
  <attribute name='maxLength' type='string' />
  <attribute name='minLength' type='string' />
  <attribute name='tooLongError' type='string' />
  <attribute name='tooShortError' type='string' />
  <attribute name='property' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.StringValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.StringValidator'>
  <complexContent><extension base='mx:_I_mx.validators.StringValidator'>
    <group ref='mx:_G_mx.validators.StringValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.StringValidator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.Validator'><choice>
  <element name='source' />
  <element name='listener' />
  <element name='requiredFieldError' />
  <element name='required' />
</choice></group>
<attributeGroup name='_A_mx.validators.Validator'>
  <attribute name='source' type='string' />
  <attribute name='listener' type='string' />
  <attribute name='requiredFieldError' type='string' />
  <attribute name='required' type='string' />
  <attributeGroup ref="mx:id.attr"/>

</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.Validator'>
  <complexContent><extension base='mx:_I_Object'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.Validator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'>
    <group ref='mx:_G_mx.validators.Validator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.Validator' />
  </extension></complexContent>
</complexType>
<group name='_G_mx.validators.ZipCodeValidator'><choice>
  <element name='allowedFormatChars' />
  <element name='domain' />
  <element name='invalidCharError' />
  <element name='invalidDomainError' />
  <element name='invalidFormatCharsError' />
  <element name='wrongCAFormatError' />
  <element name='wrongLengthError' />
  <element name='wrongUSFormatError' />
  <group ref='mx:_G_mx.validators.Validator' />
</choice></group>
<attributeGroup name='_A_mx.validators.ZipCodeValidator'>
  <attribute name='allowedFormatChars' type='string' />
  <attribute name='domain' type='string' />
  <attribute name='invalidCharError' type='string' />
  <attribute name='invalidDomainError' type='string' />
  <attribute name='invalidFormatCharsError' type='string' />
  <attribute name='wrongCAFormatError' type='string' />
  <attribute name='wrongLengthError' type='string' />
  <attribute name='wrongUSFormatError' type='string' />
  <attributeGroup ref='mx:_A_mx.validators.Validator' />
</attributeGroup>
<complexType mixed='true' name='_I_mx.validators.ZipCodeValidator'>
  <complexContent><extension base='mx:_I_mx.validators.Validator'/></complexContent>
</complexType>
<complexType mixed='true' name='mx.validators.ZipCodeValidator'>
  <complexContent><extension base='mx:_I_mx.validators.ZipCodeValidator'>
    <group ref='mx:_G_mx.validators.ZipCodeValidator' minOccurs='0' maxOccurs='unbounded' />
    <attributeGroup ref='mx:_A_mx.validators.ZipCodeValidator' />
  </extension></complexContent>
</complexType>
</schema>

