Re: ARIA Graphics Module -- proposed roles hierarchy & data properties

I have a couple of observations on Amelia's example charts. I think the way
Amelia defines scales is imaginative and a good thing for a group
discussion.  As far as units go, I have seen "currency" used rather than $.

I worry about using of aria-owns in charts, I don't think it will provide
much value and is easy to mess up. I don't think Amelia's example of using
aria-owns works. Since the tick marks and grid lines are not marked as
semantically important, they shouldn't appear in the accessibility tree, so
the example may have broken references in the aria-owns on the ticks.

Where aria-owns can provide information is when relationships exist that
don't follow the structure. For example, axis/grids and node/edges in
network charts have relationships that don't follow structure. In the case
of axes, if a grid is semantically important, then aria-labeledby would
convey the same relationship. aria-owns has potential for expressing
relationships when linking edges and nodes (since we won't have connectors
in SVG 2). However, an element may not have two owners, thus aria-owns
couldn't be used to tie edges to nodes - as several edges may wish to "own"
the same node. Also, an edge "owning" a node may imply flow direction in
the edge and may not be appropriate for bidirectional connections.

Unless we can find examples where aria-owns provides information that can't
be conveyed by an aria property (aria-labeledby, aria-describedby) we
should not encourage it's use.
                                                              
                                                              
                    Regards,                     Fred         
                                                              
                   Fred Esch                                  
     Accessibility Focal, Watson Solutions                    
    AARB Complex Visualization Working Group                  
                     Chair                                    
        W3C SVG Accessibility Task Force                      
                   IBM Watson                                 
                                                              
                                                              





From:	Amelia Bellamy-Royds <amelia.bellamy.royds@gmail.com>
To:	public-svg-a11y@w3.org
Date:	09/01/2015 04:38 PM
Subject:	Re: ARIA Graphics Module -- proposed roles hierarchy & data
            properties



As promised, I've worked through a couple examples using the proposed data
properties.  Both graphics are adapted from Fred's SVG samples (the zip
file is on the wiki [1]), so you can compare.

Overall notes on the taxonomy and roles, based on trying to put them to
use:
      I've been using Fred's "graphics-dataitem" role name instead of
      "graphics-datapoint".  I decided that "point" might be confusing for
      non-statistical users when talking about bar charts and pie graphs.
      However, I have still been using the more limited definition, only
      applying the role to individual data entries and not to data summary
      features.

      For the issue of multiple variables expressed on the same scale or
      axis (as described in a previous email [2]), I have introduced a new
      property, which I'm currently calling aria-datavariablenames (data
      variable names; suggestions for shorter alternatives welcome).  The
      `aria-datascales` property for a data group or data item would
      reference the scales by id, with repeats.  The data variable names
      property would provide human-readable names for each variable.  If
      not provided, the name of the variable would be the name of the
      scale.  This allows you to have "min temp" and "max temp" variable
      both measured on your "temperature" axis.

      As discussed in that email, I also added an `aria-dataunits` property
      to complement `aria-datatype` on each axis/scale.

      These two examples don't deal with the nested groups issue (also
      described in [2]), but I'm leaning towards using an array-queue
      approach, where the group can define all variables, but only set data
      for some of them, and then any data assigned on the individual items
      is associated with the remaining variables in order.

      I found that I very often didn't have to use the `aria-valuenow` and
      `aria-valuetext` properties on axis ticks and categories: the default
      of using the plain text content was often enough.

Notes on histogram.svg:
      The graphic is a histogram (bar chart representing counts for
      different values in a continuous range).  Fred's descriptive text
      interprets this as a distribution of the ages of users of some
      unknown product (a product that must be oriented to children, since
      the age peaks in the 5-10 range).  There is a smoothed-curve trend
      line superimposed on the bars.  I don't have information on how the
      trend was calculated, but it looks like a running average of some
      sort.

      I made some minor changes to the chart appearance, and cleaned up the
      markup a bit to remove redundant attributes.  However, the major
      changes are in the metadata and alternative text.

      Fred had assigned detailed descriptions of each data entry in title
      elements.  I've replaced that with short tooltips that would be
      appropriate for visual users to complement the graph.  Normally, this
      would mean adding aria-label to create a good accessible text, but
      I'm assuming that an AT in this case would use the ARIA chart
      properties to create the accessible descriptions.

      I still have detailed alternative text for more complex features,
      such as the trend line.  The line is also marked up with
      `role="graphics-datasummary"`.

      I've encode the x-axis (the age ranges) as a continuous numerical
      axis.  Each individual bars has max and min age variables.
      Alternatively, of course, I could have used named ordered categories
      for each age range.

      The y-axis (the number of users in each age range) is a "count"
      datatype.

      I've followed Fred's pattern and used an `aria-datagroup` role to
      collect all the bars together. Although there is only the one group
      in the entire chart, this allows me to assign the `aria-datascales`
      and `aria-datavariablenames` attributes once for the entire group.
      The scales are id-refs, with a duplicate reference to the x-axis.
      The variable names are what would be read to the user: min age, max
      age, count.

      The individual bars have `role="aria-dataitem"` and an
      `aria-datavalues` attribute with three comma-separated numbers.

      Both axes use the `aria-orientation` property to define vertical vs
      horizontal.  The use `aria-valuemin` and `aria-valuemax` to define
      the range displayed on the axis (not the range of the data).  The age
      axis uses `aria-dataunit="years"`.  The count axis does not need a
      unit.  The axis titles are associated with the axis using
      `aria-labelledby`; they do not have a special role.

      I've assigned the `graphics-tick` role to the axis labels, but treat
      the tick mark lines and grid lines as presentation only
      (role="none").  See below for how I approached this differently in
      the second chart.

      The tick mark text content, for both axes, consist of simple numbers
      that can be successfully parsed for the data type of the axis.
      Therefore, I did not need extra properties to assign a
      machine-readable value or a text label.
Notes on twoGraphs.svg:
      The chart represents multiple measurements of the stock market
      activity of an unnamed stock for five days in 1980.  The information
      is presented in two vertically-aligned panels, with different y-axes
      but the same x-axis.  The top panel has price-related information
      using composite lines and bars to show ranges.  The bottom panel
      measures the volume of trades as a bar chart.

      I've made a few visible changes to Fred's version of the chart.  The
      main difference is that I added a visible legend to describe the
      color coding of the bars.  I also inserted a missing value and fixed
      the alignment between the two panels.

      I've also changed the interpretation of the data to something I could
      safely explain.  I've never heard of m1 ranges in stock prices, so
      I've re-interpreted the price ranges as the standard
      open/close/min/max stock price chart. The bar shows the difference
      between the daily opening and closing prices, and the line shows the
      maximum and minimum price for the entire day's trading.  The color of
      the bar indicates whether the opening-closing difference represents a
      rise in price or a decline.

      I've kept Fred's use of the `figure` role for the individual panels.
      However, I've also assigned the `graphics-datachart` role to the SVG
      as a whole.  This reflects the fact that the layout of the two panels
      cannot be changed without compromising the information expressed by
      the shared x-axis.

      Again, I've simplified the titles on the data items to only contain
      information needed to complement the visual display as a tooltip.
      The axes and the data groups have longer descriptions in <desc>
      elements, which explain how the data is presented.

      I have, however, kept the markup structure used in Fred's version.
      The max-min ranges are in a separate data group from the open-close
      ranges, and the volume bar chart is another data group.  It's not how
      I would normally organize the chart, but it's a valid organization.

      The max-min ranges represent three data variables: the date on the
      x-axis and the max and min prices on the price y-axis.  Again, the
      data scales and data variable names are assigned at the group level
      and then values assigned for each bar.

      The open-close bars are similar, but they have an extra variable,
      representing the rising/falling color encoding.  The corresponding
      data scale is the new legend <g> element.

      The volume bars are simpler, with an x (date) and y (count) value
      each.  The data group therefore doesn't need explicit variable names,
      it can just use the names of the corresponding axes.  The id-refs of
      the axes are still assigned with the `aria-datascales` property.

      For both vertical axes, the `graphics-tick` role is again assigned to
      the visible tick labels.  However, I have also used an `aria-owns`
      relationship to group the grid lines and visible tick mark lines as
      children of the labelled tick.  I think we should encourage authors
      to include all visible representations of a labelled tick within the
      role, either by grouping them together or using `aria-owns`.  That
      way, AT can more effectively make use of these guides.  For example:
            A touch-screen enhanced screen reader could read off the tick
            labels as a user traces their finger across the graph, crossing
            gridlines but not necessarily labels.
            A visual enhancement for users with cognitive difficulties
            could highlight gridlines and the associated labels together
            when the user selected one or the other.

      For the price axis, orientation is vertical, the data type is numeric
      and the data unit is "$".  Because the visible tick labels include
      the dollar signs, and therefore won't parse as machine-readable
      numbers, I've used the `aria-valuenow` property to assign the
      machine-readable values.  I don't need an `aria-valuetext`, however,
      since a screenreader will be able to read the visible text just fine.

      The volume axis is also vertical, with a count data type and no
      unit.  I've maintained the use of exponential notation for the
      numbers, to prove you can (although it makes me wince).  I have
      corrected the conversion errors Fred made when trying to make sense
      of the awful exponential notation (the values are in tens of
      thousands, not hundreds of thousands).  The exponential notation is
      safely parsed by a computer, however, so no need for a separate
      attribute.

      I debated using `aria-valuetext` to provide a reader-friendly text
      for the volume axis (e.g., 80,000 instead of 8.000E5), but decided to
      let screen reader users have the same awful number formatting as
      visual users.  That said, for the actual data bars, the tooltip
      provides a nicely-formatted number.  Any automated description based
      on the `aria-datavalues` would presumably use the AT's localized
      number formatting (and yes, I know this is one of the issues Fred has
      brought up).

      The date axis is horizontal, and uses the datetime data type.  It
      doesn't have a visible title, so it uses an `aria-label` attribute to
      assign a name.  The unambiguous date format defined in HTML 5 is used
      for min and max values for the axis, the machine-readable values for
      the tick marks, and the corresponding values for all the data items.
      The text value for the tick marks would be read out as is, but again
      I don't have any way to tell ATs how to format the dates in the data.

      Finally, the legend is marked up with `aria-datatype="category"` and
      is labelled by its visible heading.  I've assigned the
      `graphics-category` role to the colored sample squares, and used
      `aria-labelledby` to connect each sample with its label.  Each
      category uses `aria-valuenow` to assign the name that will be used in
      the data entries ("up" or "down").  However, the value text that
      would be read out will default to the accessible name provided by the
      label ("Rising" or "Falling").


I'm not sure I'll have time this week, but I have some ideas for some new
visualizations that will demonstrate some of the other possible
combinations of roles and properties.  I would also like to adapt Fred's
script for visualizing the accessibility tree, and post the scripts and
demos on Github where they will be easier to compare.  Hopefully I can get
to that next week.

Best,
Amelia

[1]: https://www.w3.org/wiki/File:Svggm.zip
[2]: https://lists.w3.org/Archives/Public/public-svg-a11y/2015Aug/0026.html
[attachment "twoGraphs.svg" deleted by Fred Esch/Arlington/IBM] [attachment
"histogram.svg" deleted by Fred Esch/Arlington/IBM]

--1__BBF426DFDF31868f9e8a93df938690918c8FBBF426DFDF3186
Content-Transfer-Encoding: quoted-printable
Content-type: text/html; charset=ISO-8859-1
Content-Disposition: inline

<html><body><p>I have a couple of observations on Amelia's example charts. I think the way Amelia defines scales is imaginative and a good thing for a group discussion.  As far as units go, I have seen &quot;currency&quot; used rather than $. <br><br>I worry about using of aria-owns in charts, I don't think it will provide much value and is easy to mess up. I don't think Amelia's example of using aria-owns works. Since the tick marks and grid lines are not marked as semantically important, they shouldn't appear in the accessibility tree, so the example may have broken references in the aria-owns on the ticks. <br><br>Where aria-owns can provide information is when relationships exist that don't follow the structure. For example, axis/grids and node/edges in network charts have relationships that don't follow structure. In the case of axes, if a grid is semantically important, then aria-labeledby would convey the same relationship. aria-owns has potential for expressing relationships when linking edges and nodes (since we won't have connectors in SVG 2). However, an element may not have two owners, thus aria-owns couldn't be used to tie edges to nodes - as several edges may wish to &quot;own&quot; the same node. Also, an edge &quot;owning&quot; a node may imply flow direction in the edge and may not be appropriate for bidirectional connections.<br><br>Unless we can find examples where aria-owns provides information that can't be conveyed by an aria property (aria-labeledby, aria-describedby) we should not encourage it's use. 
<table border="0" cellspacing="0" cellpadding="0"><tr valign="top"><td width="341" valign="bottom"><div align="center"><font size="4">Regards, <br><br>Fred Esch <br>Accessibility Focal, Watson Solutions<br>AARB Complex Visualization Working Group Chair<br>W3C SVG Accessibility Task Force <br></font><img src="cid:1__=8FBBF426DFDF31868f9e8a93df938690918c8FB@" width="163" height="23" alt="IBM Watson"></div></td><td width="100" valign="bottom"><img src="cid:2__=8FBBF426DFDF31868f9e8a93df938690918c8FB@" width="115" height="115" alt="Fred" align="bottom"></td></tr></table><br><br><img width="16" height="16" src="cid:3__=8FBBF426DFDF31868f9e8a93df938690918c8FB@" border="0" alt="Inactive hide details for Amelia Bellamy-Royds ---09/01/2015 04:38:44 PM---As promised, I've worked through a couple examples u"><font color="#424282">Amelia Bellamy-Royds ---09/01/2015 04:38:44 PM---As promised, I've worked through a couple examples using the proposed data properties.  Both graphic</font><br><br><font size="2" color="#5F5F5F">From:        </font><font size="2">Amelia Bellamy-Royds &lt;amelia.bellamy.royds@gmail.com&gt;</font><br><font size="2" color="#5F5F5F">To:        </font><font size="2">public-svg-a11y@w3.org</font><br><font size="2" color="#5F5F5F">Date:        </font><font size="2">09/01/2015 04:38 PM</font><br><font size="2" color="#5F5F5F">Subject:        </font><font size="2">Re: ARIA Graphics Module -- proposed roles hierarchy &amp; data properties</font><br><hr width="100%" size="2" align="left" noshade style="color:#8091A5; "><br><br><br><font size="4">As promised, I've worked through a couple examples using the proposed data properties.  Both graphics are adapted from Fred's SVG samples (the zip file is on the wiki [1]), so you can compare.</font><br><br><font size="4">Overall notes on the taxonomy and roles, based on trying to put them to use:</font><ul><ul type="disc"><li><font size="4">I've been using Fred's &quot;graphics-dataitem&quot; role name instead of &quot;graphics-datapoint&quot;.  I decided that &quot;point&quot; might be confusing for non-statistical users when talking about bar charts and pie graphs.  However, I have still been using the more limited definition, only applying the role to individual data entries and not to data summary features.<br></font><li><font size="4">For the issue of multiple variables expressed on the same scale or axis (as described in a previous email [2]), I have introduced a new property, which I'm currently calling aria-datavariablenames (data variable names; suggestions for shorter alternatives welcome).  The `aria-datascales` property for a data group or data item would reference the scales by id, with repeats.  The data variable names property would provide human-readable names for each variable.  If not provided, the name of the variable would be the name of the scale.  This allows you to have &quot;min temp&quot; and &quot;max temp&quot; variable both measured on your &quot;temperature&quot; axis.<br></font><li><font size="4">As discussed in that email, I also added an `aria-dataunits` property to complement `aria-datatype` on each axis/scale.<br></font><li><font size="4">These two examples don't deal with the nested groups issue (also described in [2]), but I'm leaning towards using an array-queue approach, where the group can define all variables, but only set data for some of them, and then any data assigned on the individual items is associated with the remaining variables in order.<br></font><li><font size="4">I found that I very often didn't have to use the `aria-valuenow` and `aria-valuetext` properties on axis ticks and categories: the default of using the plain text content was often enough.  <br></font></ul></ul><font size="4">Notes on histogram.svg:</font><ul><ul type="disc"><li><font size="4">The graphic is a histogram (bar chart representing counts for different values in a continuous range).  Fred's descriptive text interprets this as a distribution of the ages of users of some unknown product (a product that must be oriented to children, since the age peaks in the 5-10 range).  There is a smoothed-curve trend line superimposed on the bars.  I don't have information on how the trend was calculated, but it looks like a running average of some sort.<br></font><li><font size="4">I made some minor changes to the chart appearance, and cleaned up the markup a bit to remove redundant attributes.  However, the major changes are in the metadata and alternative text.<br></font><li><font size="4">Fred had assigned detailed descriptions of each data entry in title elements.  I've replaced that with short tooltips that would be appropriate for visual users to complement the graph.  Normally, this would mean adding aria-label to create a good accessible text, but I'm assuming that an AT in this case would use the ARIA chart properties to create the accessible descriptions.<br></font><li><font size="4">I still have detailed alternative text for more complex features, such as the trend line.  The line is also marked up with `role=&quot;graphics-datasummary&quot;`.<br></font><li><font size="4">I've encode the x-axis (the age ranges) as a continuous numerical axis.  Each individual bars has max and min age variables.  Alternatively, of course, I could have used named ordered categories for each age range.<br></font><li><font size="4">The y-axis (the number of users in each age range) is a &quot;count&quot; datatype.<br></font><li><font size="4">I've followed Fred's pattern and used an `aria-datagroup` role to collect all the bars together. Although there is only the one group in the entire chart, this allows me to assign the `aria-datascales` and `aria-datavariablenames` attributes once for the entire group.  The scales are id-refs, with a duplicate reference to the x-axis.  The variable names are what would be read to the user: min age, max age, count.<br></font><li><font size="4">The individual bars have `role=&quot;aria-dataitem&quot;` and an `aria-datavalues` attribute with three comma-separated numbers.<br></font><li><font size="4">Both axes use the `aria-orientation` property to define vertical vs horizontal.  The use `aria-valuemin` and `aria-valuemax` to define the range displayed on the axis (not the range of the data).  The age axis uses `aria-dataunit=&quot;years&quot;`.  The count axis does not need a unit.  The axis titles are associated with the axis using `aria-labelledby`; they do not have a special role.<br></font><li><font size="4">I've assigned the `graphics-tick` role to the axis labels, but treat the tick mark lines and grid lines as presentation only (role=&quot;none&quot;).  See below for how I approached this differently in the second chart.  <br></font><li><font size="4">The tick mark text content, for both axes, consist of simple numbers that can be successfully parsed for the data type of the axis.  Therefore, I did not need extra properties to assign a machine-readable value or a text label.</font></ul></ul><font size="4">Notes on twoGraphs.svg:</font><ul><ul type="disc"><li><font size="4">The chart represents multiple measurements of the stock market activity of an unnamed stock for five days in 1980.  The information is presented in two vertically-aligned panels, with different y-axes but the same x-axis.  The top panel has price-related information using composite lines and bars to show ranges.  The bottom panel measures the volume of trades as a bar chart.<br></font><li><font size="4">I've made a few visible changes to Fred's version of the chart.  The main difference is that I added a visible legend to describe the color coding of the bars.  I also inserted a missing value and fixed the alignment between the two panels.<br></font><li><font size="4">I've also changed the interpretation of the data to something I could safely explain.  I've never heard of m1 ranges in stock prices, so I've re-interpreted the price ranges as the standard open/close/min/max stock price chart. The bar shows the difference between the daily opening and closing prices, and the line shows the maximum and minimum price for the entire day's trading.  The color of the bar indicates whether the opening-closing difference represents a rise in price or a decline.<br></font><li><font size="4">I've kept Fred's use of the `figure` role for the individual panels.  However, I've also assigned the `graphics-datachart` role to the SVG as a whole.  This reflects the fact that the layout of the two panels cannot be changed without compromising the information expressed by the shared x-axis.<br></font><li><font size="4">Again, I've simplified the titles on the data items to only contain information needed to complement the visual display as a tooltip.  The axes and the data groups have longer descriptions in &lt;desc&gt; elements, which explain how the data is presented.<br></font><li><font size="4">I have, however, kept the markup structure used in Fred's version.  The max-min ranges are in a separate data group from the open-close ranges, and the volume bar chart is another data group.  It's not how I would normally organize the chart, but it's a valid organization.<br></font><li><font size="4">The max-min ranges represent three data variables: the date on the x-axis and the max and min prices on the price y-axis.  Again, the data scales and data variable names are assigned at the group level and then values assigned for each bar.<br></font><li><font size="4">The open-close bars are similar, but they have an extra variable, representing the rising/falling color encoding.  The corresponding data scale is the new legend &lt;g&gt; element.<br></font><li><font size="4">The volume bars are simpler, with an x (date) and y (count) value each.  The data group therefore doesn't need explicit variable names, it can just use the names of the corresponding axes.  The id-refs of the axes are still assigned with the `aria-datascales` property.<br></font><li><font size="4">For both vertical axes, the `graphics-tick` role is again assigned to the visible tick labels.  However, I have also used an `aria-owns` relationship to group the grid lines and visible tick mark lines as children of the labelled tick.  I think we should encourage authors to include all visible representations of a labelled tick within the role, either by grouping them together or using `aria-owns`.  That way, AT can more effectively make use of these guides.  For example:   </font><ul><ul type="disc"><li><font size="4">A touch-screen enhanced screen reader could read off the tick labels as a user traces their finger across the graph, crossing gridlines but not necessarily labels.  </font><li><font size="4">A visual enhancement for users with cognitive difficulties could highlight gridlines and the associated labels together when the user selected one or the other.<br></font></ul></ul>
<li><font size="4">For the price axis, orientation is vertical, the data type is numeric and the data unit is &quot;$&quot;.  Because the visible tick labels include the dollar signs, and therefore won't parse as machine-readable numbers, I've used the `aria-valuenow` property to assign the machine-readable values.  I don't need an `aria-valuetext`, however, since a screenreader will be able to read the visible text just fine.<br></font><li><font size="4">The volume axis is also vertical, with a count data type and no unit.  I've maintained the use of exponential notation for the numbers, to prove you can (although it makes me wince).  I have corrected the conversion errors Fred made when trying to make sense of the awful exponential notation (the values are in tens of thousands, not hundreds of thousands).  The exponential notation is safely parsed by a computer, however, so no need for a separate attribute.<br> </font><li><font size="4">I debated using `aria-valuetext` to provide a reader-friendly text for the volume axis (e.g., 80,000 instead of 8.000E5), but decided to let screen reader users have the same awful number formatting as visual users.  That said, for the actual data bars, the tooltip provides a nicely-formatted number.  Any automated description based on the `aria-datavalues` would presumably use the AT's localized number formatting (and yes, I know this is one of the issues Fred has brought up).<br></font><li><font size="4">The date axis is horizontal, and uses the datetime data type.  It doesn't have a visible title, so it uses an `aria-label` attribute to assign a name.  The unambiguous date format defined in HTML 5 is used for min and max values for the axis, the machine-readable values for the tick marks, and the corresponding values for all the data items.  The text value for the tick marks would be read out as is, but again I don't have any way to tell ATs how to format the dates in the data.<br></font><li><font size="4">Finally, the legend is marked up with `aria-datatype=&quot;category&quot;` and is labelled by its visible heading.  I've assigned the `graphics-category` role to the colored sample squares, and used `aria-labelledby` to connect each sample with its label.  Each category uses `aria-valuenow` to assign the name that will be used in the data entries (&quot;up&quot; or &quot;down&quot;).  However, the value text that would be read out will default to the accessible name provided by the label (&quot;Rising&quot; or &quot;Falling&quot;).</font></ul></ul><br><br><font size="4">I'm not sure I'll have time this week, but I have some ideas for some new visualizations that will demonstrate some of the other possible combinations of roles and properties.  I would also like to adapt Fred's script for visualizing the accessibility tree, and post the scripts and demos on Github where they will be easier to compare.  Hopefully I can get to that next week.</font><br><br><font size="4">Best,</font><br><font size="4">Amelia</font><br><br><font size="4">[1]: </font><a href="https://www.w3.org/wiki/File:Svggm.zip"><u><font size="4" color="#0000FF">https://www.w3.org/wiki/File:Svggm.zip</font></u></a><br><font size="4">[2]: </font><a href="https://lists.w3.org/Archives/Public/public-svg-a11y/2015Aug/0026.html"><u><font size="4" color="#0000FF">https://lists.w3.org/Archives/Public/public-svg-a11y/2015Aug/0026.html</font></u></a><u><font size="4" color="#0000FF">[attachment &quot;twoGraphs.svg&quot; deleted by Fred Esch/Arlington/IBM] [attachment &quot;histogram.svg&quot; deleted by Fred Esch/Arlington/IBM] </font></u><br><BR>
</body></html>

--1__BBF426DFDF31868f9e8a93df938690918c8FBBF426DFDF3186--


--0__BBF426DFDF31868f9e8a93df938690918c8FBBF426DFDF3186
Content-type: image/gif; 
	name="0F212316.gif"
Content-Disposition: inline; filename="0F212316.gif"
Content-ID: <1__BBF426DFDF31868f9e8a93df938690918c8FB@>
Content-Transfer-Encoding: base64

iVBORw0KGgoAAAANSUhEUgAAAKMAAAAXCAMAAABQ6Q/RAAADAFBMVEXIx8cxLS5MSUrW1dXx8fE/
Ozzj4+N2c3SRj49oZWaEgYKsq6uenZ26ubmbm5v29vZ7e3tTU1M7OzsfHx/FxcX39/eamppmZmaR
j5AgICCqqqrR0dFaV1gAAAAjHyD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAADe7fL7AAADE0lEQVR4nM2WiW7kIAyGTbhz9O6eCL//U6bYGJJOst2dlaqppUm4
+fhtnAH8+gb7sroZxodWGZfA5UxP52+Ic2qVEbLDxujTLXnOTHydSDxNdC7DR+NvYQK02PLQYBDn
z5dRw04GAPibKIBec2GKuZjyrtbosVZr72J397Xyc+suPshsiOUBvRb4xavlzYoA2tI+XEQTFDfT
rkCFiFLIec8Y82jQ0dIhjOU5lmWGa254owKe/J5xPDBqdYHLphZBm08Zi5/nOnEsEUmHwiG6cx3X
Z6k8ID5c6kgHHC4YlblkJHcNlotO7Xp0RVP6lLFIPtTmsuDQDn+FGT4YTy3OXcTFEy85VUYonQMQ
WHWopSIdR83aTYRs5bBD9cz+VjBjyI3RbVEkSu7ed/XF8r18ExXF25ZJiWnk/RhD1S1JlFT5mLGc
B0KYNJG5rtEkLhjPGUVz32Lh2iw+k68WnhqJjeZTldqBr27dFkCz2mlyooxcac0zJUyWM8YKFnn8
KLofdFy7brvwXLctZs+6KScOTrSr6uft2y4SmJqa+tUcxPeKY/iEcc4+W8qNfYUrdSTtYvnRrfE1
rgk1QOqBs207ideoc2gLJGFMtEQ6YQy53OvwA1DifmM86PhQKxSZ66+uI/o6zdVcMmwtRHrBiGbm
XWysp2FTjbERHHUEPXAgtDRxrY5Vfsvph6PebGnFvmcswSnp2PcDcECPdYzkz2M8ziBH9rtl8c/3
Gh/X9TtuOhphWyToedNUzEp0boyZ8zQNnHLrXIhLy5jplBHVINnHmKj+415Lamt+QAdWDkphmcC5
mh8lodvqNsOqDyHw5GjamHjKGLKEj66LuK7i5XfmsVbwdX1+leL9vTiLIiTy8qFFjHwygjQA7j46
sUc/oxpoY4w9YzRW+RbsZeJ135mnJ9ErCuv8T4yqCGH6zYoGOyOXDowSqJ5yRtq6jzq2/z2IL7+l
H58eaWxMiULLlRjUOCU2+kfKNkkDuam8KJP6eqPB0+eIU7PexswpjQdG5AAJEOL1X+vPt/7/cuLg
UP7L/QtHfANvSEKvsxvttAAAAABJRU5ErkJggg=


--0__BBF426DFDF31868f9e8a93df938690918c8FBBF426DFDF3186
Content-type: image/jpeg; 
	name="0F120560.jpg"
Content-Disposition: inline; filename="0F120560.jpg"
Content-ID: <2__BBF426DFDF31868f9e8a93df938690918c8FB@>
Content-Transfer-Encoding: base64

/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAQDAwQDAwQEAwQFBAQFBgoHBgYGBg0JCggKDw0QEA8N
Dw4RExgUERIXEg4PFRwVFxkZGxsbEBQdHx0aHxgaGxr/2wBDAQQFBQYFBgwHBwwaEQ8RGhoaGhoa
GhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhoaGhr/wAARCABzAHMDASIA
AhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQA
AAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3
ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWm
p6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEA
AwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSEx
BhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElK
U1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3
uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD561zx
7rt4yzS3TC5xIrXCABnJ+9+ZA/IVxdmEnvI0nJeJs7tpALDvyRwferd8HkRgoclTnPTPOM/99Efn
7VT01Nt0hwAUBJzxxivGhCMIPlVh8qWxu6TEVhaPaCGdWjYLk9weR/WutFsDIRMGRVjZlQHh2XGP
pwR696yPD2mw6jcXXkzR27wEnDncjZI+6QPTJweMA811tpbCNY4fnuYzbsIgq5Oe361w13HVvdGF
RRtdk+h38aDybnLghfLkckBTjGzJ6Yx/KtHU9WawAn1S5l8+ONYVCzEkIv3cdj+dYJsbbTpLmc3B
8nCkRYJQNznr1PA5/wAjnrm5uPEN0/2eI7UOMnhEH9ayo4ZVW5y2HQw/tdXsXbrx2zXbSQhlftIW
+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
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA


--0__BBF426DFDF31868f9e8a93df938690918c8FBBF426DFDF3186
Content-type: image/gif; 
	name="graycol.gif"
Content-Disposition: inline; filename="graycol.gif"
Content-ID: <3__BBF426DFDF31868f9e8a93df938690918c8FB@>
Content-Transfer-Encoding: base64

R0lGODlhEAAQAKECAMzMzAAAAP///wAAACH5BAEAAAIALAAAAAAQABAAAAIXlI+py+0PopwxUbpu
ZRfKZ2zgSJbmSRYAIf4fT3B0aW1pemVkIGJ5IFVsZWFkIFNtYXJ0U2F2ZXIhAAA7


--0__BBF426DFDF31868f9e8a93df938690918c8FBBF426DFDF3186--

Received on Thursday, 3 September 2015 14:17:00 UTC