<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[188202] trunk</title>
</head>
<body>
<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/188202">188202</a></dd>
<dt>Author</dt> <dd>darin@apple.com</dd>
<dt>Date</dt> <dd>2015-08-09 17:10:01 -0700 (Sun, 09 Aug 2015)</dd>
</dl>
<h3>Log Message</h3>
<pre>Remove -webkit-color-correction CSS property
https://bugs.webkit.org/show_bug.cgi?id=147812
Reviewed by Maciej Stachowiak.
Source/WebCore:
Covered by existing tests.
I am doing some general cleanup of handling of color spaces in WebKit.
This removes the obsolete web-visible property that allowed clients to
get color correction on older Apple platforms where we chose not to do
it all the time for performance reasons. Currently, it has no effect on
any supported platform.
Now that this property is removed, a website can detect that it's not
there if it uses getComputedStyle, but I don't expect this to have
significant compatibility fallout. It's harmless to continue using the
property in legacy content or websites that have not been updated, since
unknown property names are ignored and it had no effect before anyway.
* css/CSSComputedStyleDeclaration.cpp: Removed
CSSPropertyWebkitColorCorrection from the list of computed properties.
(WebCore::ComputedStyleExtractor::propertyValue): Removed the
CSSPropertyWebkitColorCorrection case.
* css/CSSParser.cpp:
(WebCore::isValidKeywordPropertyAndValue): Removed the
CSSPropertyWebkitColorCorrection case.
(WebCore::isKeywordPropertyID): Ditto.
(WebCore::CSSParser::parseValue): Ditto.
* css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue): Deleted the overload
of this that converts a ColorSpace to a CSSPrimitiveValue.
(WebCore::CSSPrimitiveValue::operator ColorSpace): Deleted.
* css/CSSPropertyNames.in: Removed -webkit-color-correction.
* css/CSSValueKeywords.in: Removed the -webkit-color-correction section,
which contained sRGB.
* css/SVGCSSValueKeywords.in: Uncommented sRGB now that it's not shared
with -webkit-color-correction.
* rendering/style/RenderStyle.h: Removed setColorSpace and initialColorSpace.
Kept colorSpace around for now, but it simply returns ColorSpaceSRGB.
This prevents us from needing to touch every single call site that passes
the color space in to functions in the platform graphics abstraction.
We'll touch most of those call sites when we change Color to include the
color space and eventually we can delete this.
* rendering/style/StyleRareInheritedData.cpp: Deleted colorSpace.
(WebCore::StyleRareInheritedData::StyleRareInheritedData): Deleted
code to initialize colorSpace and to copy colorSpace.
(WebCore::StyleRareInheritedData::operator==): Deleted code to compare
colorSpace.
LayoutTests:
Given that -webkit-color-correction had no effect on rendering on any platform in any
configuration we covered, it's amazing how many tests we had for it.
* fast/css/getComputedStyle/computed-style-expected.txt: Removed expected results for
-webkit-color-correction property.
* fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Ditto.
* svg/css/getComputedStyle-basic-expected.txt: Ditto.
* fast/css/getComputedStyle/resources/property-names.js: Removed -webkit-color-correction.
* fast/css/color-correction-backgrounds-and-text.html: Removed.
* fast/css/color-correction-on-background-image.html: Removed.
* fast/css/color-correction-on-backgrounds.html: Removed.
* fast/css/color-correction-on-box-shadow.html: Removed.
* fast/css/color-correction-on-text-shadow.html: Removed.
* fast/css/color-correction-on-text.html: Removed.
* fast/css/color-correction-untagged-images.html: Removed.
* fast/css/color-correction.html: Removed.
* fast/css/parsing-color-correction-expected.txt: Removed.
* fast/css/parsing-color-correction.html: Removed.
* fast/css/resources/parsing-color-correction.js: Removed.
* platform/efl/fast/css/color-correction-backgrounds-and-text-expected.png: Removed.
* platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
* platform/efl/fast/css/color-correction-expected.png: Removed.
* platform/efl/fast/css/color-correction-expected.txt: Removed.
* platform/efl/fast/css/color-correction-on-background-image-expected.png: Removed.
* platform/efl/fast/css/color-correction-on-background-image-expected.txt: Removed.
* platform/efl/fast/css/color-correction-on-backgrounds-expected.png: Removed.
* platform/efl/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
* platform/efl/fast/css/color-correction-on-box-shadow-expected.png: Removed.
* platform/efl/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
* platform/efl/fast/css/color-correction-on-text-expected.png: Removed.
* platform/efl/fast/css/color-correction-on-text-expected.txt: Removed.
* platform/efl/fast/css/color-correction-on-text-shadow-expected.png: Removed.
* platform/efl/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
* platform/efl/fast/css/color-correction-untagged-images-expected.png: Removed.
* platform/efl/fast/css/color-correction-untagged-images-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.png: Removed.
* platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-expected.png: Removed.
* platform/gtk/fast/css/color-correction-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-on-background-image-expected.png: Removed.
* platform/gtk/fast/css/color-correction-on-background-image-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-on-backgrounds-expected.png: Removed.
* platform/gtk/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-on-box-shadow-expected.png: Removed.
* platform/gtk/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-on-text-expected.png: Removed.
* platform/gtk/fast/css/color-correction-on-text-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-on-text-shadow-expected.png: Removed.
* platform/gtk/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
* platform/gtk/fast/css/color-correction-untagged-images-expected.png: Removed.
* platform/gtk/fast/css/color-correction-untagged-images-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-on-background-image-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-on-text-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
* platform/ios-simulator-wk2/fast/css/color-correction-untagged-images-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-on-background-image-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-on-text-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
* platform/ios-simulator/fast/css/color-correction-untagged-images-expected.txt: Removed.
* platform/mac/fast/css/color-correction-backgrounds-and-text-expected.png: Removed.
* platform/mac/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
* platform/mac/fast/css/color-correction-expected.png: Removed.
* platform/mac/fast/css/color-correction-expected.txt: Removed.
* platform/mac/fast/css/color-correction-on-background-image-expected.png: Removed.
* platform/mac/fast/css/color-correction-on-background-image-expected.txt: Removed.
* platform/mac/fast/css/color-correction-on-backgrounds-expected.png: Removed.
* platform/mac/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
* platform/mac/fast/css/color-correction-on-box-shadow-expected.png: Removed.
* platform/mac/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
* platform/mac/fast/css/color-correction-on-text-expected.png: Removed.
* platform/mac/fast/css/color-correction-on-text-expected.txt: Removed.
* platform/mac/fast/css/color-correction-on-text-shadow-expected.png: Removed.
* platform/mac/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
* platform/mac/fast/css/color-correction-untagged-images-expected.png: Removed.
* platform/mac/fast/css/color-correction-untagged-images-expected.txt: Removed.
* platform/win/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
* platform/win/fast/css/color-correction-expected.txt: Removed.
* platform/win/fast/css/color-correction-on-background-image-expected.txt: Removed.
* platform/win/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
* platform/win/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
* platform/win/fast/css/color-correction-on-text-expected.txt: Removed.
* platform/win/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
* platform/win/fast/css/color-correction-untagged-images-expected.txt: Removed.</pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsfastcssgetComputedStylecomputedstyleexpectedtxt">trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastcssgetComputedStylecomputedstylewithoutrendererexpectedtxt">trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastcssgetComputedStyleresourcespropertynamesjs">trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js</a></li>
<li><a href="#trunkLayoutTestssvgcssgetComputedStylebasicexpectedtxt">trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorecssCSSComputedStyleDeclarationcpp">trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp</a></li>
<li><a href="#trunkSourceWebCorecssCSSParsercpp">trunk/Source/WebCore/css/CSSParser.cpp</a></li>
<li><a href="#trunkSourceWebCorecssCSSPrimitiveValueMappingsh">trunk/Source/WebCore/css/CSSPrimitiveValueMappings.h</a></li>
<li><a href="#trunkSourceWebCorecssCSSPropertyNamesin">trunk/Source/WebCore/css/CSSPropertyNames.in</a></li>
<li><a href="#trunkSourceWebCorecssCSSValueKeywordsin">trunk/Source/WebCore/css/CSSValueKeywords.in</a></li>
<li><a href="#trunkSourceWebCorecssSVGCSSValueKeywordsin">trunk/Source/WebCore/css/SVGCSSValueKeywords.in</a></li>
<li><a href="#trunkSourceWebCorerenderingstyleRenderStyleh">trunk/Source/WebCore/rendering/style/RenderStyle.h</a></li>
<li><a href="#trunkSourceWebCorerenderingstyleStyleRareInheritedDatacpp">trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp</a></li>
</ul>
<h3>Removed Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectionbackgroundsandtexthtml">trunk/LayoutTests/fast/css/color-correction-backgrounds-and-text.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectiononbackgroundimagehtml">trunk/LayoutTests/fast/css/color-correction-on-background-image.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectiononbackgroundshtml">trunk/LayoutTests/fast/css/color-correction-on-backgrounds.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectiononboxshadowhtml">trunk/LayoutTests/fast/css/color-correction-on-box-shadow.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectionontextshadowhtml">trunk/LayoutTests/fast/css/color-correction-on-text-shadow.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectionontexthtml">trunk/LayoutTests/fast/css/color-correction-on-text.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectionuntaggedimageshtml">trunk/LayoutTests/fast/css/color-correction-untagged-images.html</a></li>
<li><a href="#trunkLayoutTestsfastcsscolorcorrectionhtml">trunk/LayoutTests/fast/css/color-correction.html</a></li>
<li><a href="#trunkLayoutTestsfastcssparsingcolorcorrectionexpectedtxt">trunk/LayoutTests/fast/css/parsing-color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastcssparsingcolorcorrectionhtml">trunk/LayoutTests/fast/css/parsing-color-correction.html</a></li>
<li><a href="#trunkLayoutTestsfastcssresourcesparsingcolorcorrectionjs">trunk/LayoutTests/fast/css/resources/parsing-color-correction.js</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionbackgroundsandtextexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-backgrounds-and-text-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionbackgroundsandtextexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundimageexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundimageexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundsexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundsexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectiononboxshadowexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectiononboxshadowexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionontextexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionontextexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionontextshadowexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionontextshadowexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionuntaggedimagesexpectedpng">trunk/LayoutTests/platform/efl/fast/css/color-correction-untagged-images-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformeflfastcsscolorcorrectionuntaggedimagesexpectedtxt">trunk/LayoutTests/platform/efl/fast/css/color-correction-untagged-images-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionbackgroundsandtextexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionbackgroundsandtextexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundimageexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-background-image-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundimageexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-background-image-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundsexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-backgrounds-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundsexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-backgrounds-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectiononboxshadowexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-box-shadow-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectiononboxshadowexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-box-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextshadowexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-shadow-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextshadowexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionuntaggedimagesexpectedpng">trunk/LayoutTests/platform/gtk/fast/css/color-correction-untagged-images-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformgtkfastcsscolorcorrectionuntaggedimagesexpectedtxt">trunk/LayoutTests/platform/gtk/fast/css/color-correction-untagged-images-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionbackgroundsandtextexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-backgrounds-and-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectiononbackgroundimageexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-background-image-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectiononbackgroundsexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-backgrounds-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectiononboxshadowexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-box-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionontextexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionontextshadowexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionuntaggedimagesexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-untagged-images-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionbackgroundsandtextexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-backgrounds-and-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectiononbackgroundimageexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-background-image-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectiononbackgroundsexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-backgrounds-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectiononboxshadowexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-box-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionontextexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionontextshadowexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionuntaggedimagesexpectedtxt">trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-untagged-images-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionbackgroundsandtextexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionbackgroundsandtextexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundimageexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundimageexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundsexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundsexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectiononboxshadowexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectiononboxshadowexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionontextexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionontextexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionontextshadowexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionontextshadowexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionuntaggedimagesexpectedpng">trunk/LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.png</a></li>
<li><a href="#trunkLayoutTestsplatformmacfastcsscolorcorrectionuntaggedimagesexpectedtxt">trunk/LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectionbackgroundsandtextexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-backgrounds-and-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectionexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectiononbackgroundimageexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-on-background-image-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectiononbackgroundsexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-on-backgrounds-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectiononboxshadowexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-on-box-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectionontextexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectionontextshadowexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-shadow-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformwinfastcsscolorcorrectionuntaggedimagesexpectedtxt">trunk/LayoutTests/platform/win/fast/css/color-correction-untagged-images-expected.txt</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/ChangeLog        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,3 +1,104 @@
</span><ins>+2015-08-08 Darin Adler <darin@apple.com>
+
+ Remove -webkit-color-correction CSS property
+ https://bugs.webkit.org/show_bug.cgi?id=147812
+
+ Reviewed by Maciej Stachowiak.
+
+ Given that -webkit-color-correction had no effect on rendering on any platform in any
+ configuration we covered, it's amazing how many tests we had for it.
+
+ * fast/css/getComputedStyle/computed-style-expected.txt: Removed expected results for
+ -webkit-color-correction property.
+ * fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Ditto.
+ * svg/css/getComputedStyle-basic-expected.txt: Ditto.
+
+ * fast/css/getComputedStyle/resources/property-names.js: Removed -webkit-color-correction.
+
+ * fast/css/color-correction-backgrounds-and-text.html: Removed.
+ * fast/css/color-correction-on-background-image.html: Removed.
+ * fast/css/color-correction-on-backgrounds.html: Removed.
+ * fast/css/color-correction-on-box-shadow.html: Removed.
+ * fast/css/color-correction-on-text-shadow.html: Removed.
+ * fast/css/color-correction-on-text.html: Removed.
+ * fast/css/color-correction-untagged-images.html: Removed.
+ * fast/css/color-correction.html: Removed.
+ * fast/css/parsing-color-correction-expected.txt: Removed.
+ * fast/css/parsing-color-correction.html: Removed.
+ * fast/css/resources/parsing-color-correction.js: Removed.
+ * platform/efl/fast/css/color-correction-backgrounds-and-text-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-on-background-image-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-on-background-image-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-on-backgrounds-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-on-box-shadow-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-on-text-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-on-text-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-on-text-shadow-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
+ * platform/efl/fast/css/color-correction-untagged-images-expected.png: Removed.
+ * platform/efl/fast/css/color-correction-untagged-images-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-on-background-image-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-on-background-image-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-on-backgrounds-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-on-box-shadow-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-on-text-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-on-text-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-on-text-shadow-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
+ * platform/gtk/fast/css/color-correction-untagged-images-expected.png: Removed.
+ * platform/gtk/fast/css/color-correction-untagged-images-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-on-background-image-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-on-text-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
+ * platform/ios-simulator-wk2/fast/css/color-correction-untagged-images-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-on-background-image-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-on-text-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
+ * platform/ios-simulator/fast/css/color-correction-untagged-images-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-backgrounds-and-text-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-on-background-image-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-on-background-image-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-on-backgrounds-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-on-box-shadow-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-on-text-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-on-text-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-on-text-shadow-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
+ * platform/mac/fast/css/color-correction-untagged-images-expected.png: Removed.
+ * platform/mac/fast/css/color-correction-untagged-images-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-backgrounds-and-text-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-on-background-image-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-on-backgrounds-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-on-box-shadow-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-on-text-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-on-text-shadow-expected.txt: Removed.
+ * platform/win/fast/css/color-correction-untagged-images-expected.txt: Removed.
+
</ins><span class="cx"> 2015-08-09 Chris Dumez <cdumez@apple.com>
</span><span class="cx">
</span><span class="cx"> Regression(r188105): Seems to have caused crashes during PLT on some iPads
</span></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectionbackgroundsandtexthtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-backgrounds-and-text.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-backgrounds-and-text.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-backgrounds-and-text.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,38 +0,0 @@
</span><del>-<html>
-<style>
- .text {
- color:green;
- font-size:150px;
- font-weight:bold;
- }
-
- .container {
- background-color:green;
- width:200px;
- height:200px;
- }
-</style>
-<body>
-
-<p>This container has no color correction, and neither does the text inside, so it will not be visible since both are green and uncorrected.</p>
-<div class="container">
- <span class="text">G</span>
-</div>
-
-<p>This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both are green and corrected.</p>
-<div class="container" style="-webkit-color-correction:sRGB;">
- <span class="text" style="-webkit-color-correction:sRGB;">G</span>
-</div>
-
-<p>This container has sRGB color correction specified. The text inside does not have the property specified, but the text inherits the container's style, so the text will not be visible since both are green and corrected.</p>
-<div class="container" style="-webkit-color-correction:sRGB;">
- <span class="text">G</span>
-</div>
-
-<p>This container has default color-correction specified, and the text has sRGB color correction specified. This text is visible even though both are green since the text is corrected and the container is not.</p>
-<div class="container" style="-webkit-color-correction:default;">
- <span class="text" style="-webkit-color-correction:sRGB;">G</span>
-</div>
-
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectiononbackgroundimagehtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-on-background-image.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-on-background-image.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-on-background-image.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,18 +0,0 @@
</span><del>-<html>
-<style>
-.purple {
- background-image: url('resources/purple-noprofile.png');
- width: 400px;
- height: 400px;
- float: left;
-}
-</style>
-
-<body>
-
-<p>The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the right the same image is tiled as a background, but it is corrected from sRGB.</p>
-<div class="purple"></div>
-<div class="purple" style="-webkit-color-correction: sRGB;"></div>
-
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectiononbackgroundshtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-on-backgrounds.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-on-backgrounds.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-on-backgrounds.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,14 +0,0 @@
</span><del>-<html>
-<body>
-
-<p>These should match:</p>
-<div style="background-color:#560063; width:100px; height:100px; -webkit-color-correction:sRGB; float:left;"></div>
-<img src="resources/purple-srgb.png"/>
-
-<br/>
-<p>These should not match (at this time):</p>
-<div style="background-color:#560063; width:100px; height:100px; -webkit-color-correction:default; float:left;"></div>
-<img src="resources/purple-srgb.png"/>
-
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectiononboxshadowhtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-on-box-shadow.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-on-box-shadow.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-on-box-shadow.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,26 +0,0 @@
</span><del>-<html>
-<style>
-.purple-corrected {
- background-color:#560063;
- width:100px;
- height:100px;
- -webkit-color-correction:sRGB;
- -webkit-box-shadow: 50px 50px 50px #560063
-}
-
-.purple-uncorrected {
- background-color:#560063;
- width:100px;
- height:100px;
- -webkit-color-correction:default;
-}
-</style>
-<body>
-
-<p>The shadow should match the color of the top square and not the color of the bottom square. The top square and its shadow are both color-corrected from sRGB.</p>
-<div class="purple-corrected"></div>
-<br/>
-<div class="purple-uncorrected"></div>
-
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectionontextshadowhtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-on-text-shadow.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-on-text-shadow.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-on-text-shadow.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,26 +0,0 @@
</span><del>-<html>
-<style>
-.purple-corrected {
- color:#560063;
- font-weight: bold;
- font-size: 100px;
- -webkit-color-correction:sRGB;
- text-shadow: 50px 50px 2px #560063
-}
-
-.purple-uncorrected {
- color:#560063;
- font-weight: bold;
- font-size: 100px;
- -webkit-color-correction:default;
-}
-</style>
-<body>
-
-<p>This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its shadow are both color-corrected from sRGB.</p>
-<span class="purple-corrected">H</span>
-<br/>
-<span class="purple-uncorrected">H</span>
-
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectionontexthtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-on-text.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-on-text.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-on-text.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,19 +0,0 @@
</span><del>-<html>
-<style>
- .text {
- color:green;
- font-size:150px;
- font-weight:bold;
- }
-</style>
-<body>
-
- <p>The distinction below is subtle, but the middle "H" is color-corrected, and the first and last are not.
- </p>
-
- <span class="text">H</span>
- <span class="text" style="-webkit-color-correction:sRGB;">H</span>
- <span class="text">H</span>
-
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectionuntaggedimageshtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction-untagged-images.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction-untagged-images.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction-untagged-images.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,14 +0,0 @@
</span><del>-<html>
-<style>
-.purple {
- border: solid 20px #560063;
- float: left;
-}
-</style>
-
-<body>
-<p>The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the same image and same border color corrected from sRGB.</p>
-<img src="resources/purple-noprofile.png" class="purple" />
-<img src="resources/purple-noprofile.png" class="purple" style="-webkit-color-correction:sRGB;" />
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcsscolorcorrectionhtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/color-correction.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/color-correction.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/color-correction.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-<html>
-<style>
-.purple {
- border: solid 20px #560063;
-}
-</style>
-<body>
-<p>This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same -- purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-color-correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the border and the image match.</p>
-<img src="resources/purple-srgb.png" class="purple" />
-<img src="resources/purple-srgb.png" class="purple" style="-webkit-color-correction: default;"/>
-<img src="resources/purple-srgb.png" class="purple" style="-webkit-color-correction: sRGB;"/>
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcssgetComputedStylecomputedstyleexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/getComputedStyle/computed-style-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -136,7 +136,6 @@
</span><span class="cx"> -webkit-box-pack: start;
</span><span class="cx"> -webkit-box-reflect: none;
</span><span class="cx"> -webkit-box-shadow: none;
</span><del>--webkit-color-correction: default;
</del><span class="cx"> -webkit-column-break-after: auto;
</span><span class="cx"> -webkit-column-break-before: auto;
</span><span class="cx"> -webkit-column-break-inside: auto;
</span></span></pre></div>
<a id="trunkLayoutTestsfastcssgetComputedStylecomputedstylewithoutrendererexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -135,7 +135,6 @@
</span><span class="cx"> -webkit-box-pack: start
</span><span class="cx"> -webkit-box-reflect: none
</span><span class="cx"> -webkit-box-shadow: none
</span><del>--webkit-color-correction: default
</del><span class="cx"> -webkit-column-break-after: auto
</span><span class="cx"> -webkit-column-break-before: auto
</span><span class="cx"> -webkit-column-break-inside: auto
</span></span></pre></div>
<a id="trunkLayoutTestsfastcssgetComputedStyleresourcespropertynamesjs"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/getComputedStyle/resources/property-names.js        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -32,7 +32,6 @@
</span><span class="cx"> "-webkit-box-pack": true,
</span><span class="cx"> "-webkit-box-reflect": true,
</span><span class="cx"> "-webkit-box-shadow": true,
</span><del>- "-webkit-color-correction": true,
</del><span class="cx"> "-webkit-column-axis": true,
</span><span class="cx"> "-webkit-column-break-after": true,
</span><span class="cx"> "-webkit-column-break-before": true,
</span></span></pre></div>
<a id="trunkLayoutTestsfastcssparsingcolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/parsing-color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/parsing-color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/parsing-color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,15 +0,0 @@
</span><del>-This tests checks that all of the input values for -webkit-color-correction parse correctly.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS test("-webkit-color-correction: default;") is "default"
-PASS test("-webkit-color-correction: sRGB;") is "srgb"
-PASS test("-webkit-color-correction: srgb;") is "srgb"
-PASS test("-webkit-color-correction: apple;") is ""
-PASS test("-webkit-color-correction: 15;") is ""
-PASS test("-webkit-color-correction: auto;") is ""
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
</del></span></pre></div>
<a id="trunkLayoutTestsfastcssparsingcolorcorrectionhtml"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/parsing-color-correction.html (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/parsing-color-correction.html        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/parsing-color-correction.html        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
-<html>
-<head>
-<style type="text/css"></style>
-<script src="../../resources/js-test-pre.js"></script>
-</head>
-<body>
-<script src="resources/parsing-color-correction.js"></script>
-<script src="../../resources/js-test-post.js"></script>
-</body>
-</html>
</del></span></pre></div>
<a id="trunkLayoutTestsfastcssresourcesparsingcolorcorrectionjs"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/fast/css/resources/parsing-color-correction.js (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/css/resources/parsing-color-correction.js        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/fast/css/resources/parsing-color-correction.js        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-description("This tests checks that all of the input values for -webkit-color-correction parse correctly.");
-
-function test(value)
-{
- var div = document.createElement("div");
- div.setAttribute("style", value);
- document.body.appendChild(div);
-
- var result = div.style.getPropertyValue("-webkit-color-correction");
- document.body.removeChild(div);
- return result;
-}
-
-shouldBe('test("-webkit-color-correction: default;")', '"default"');
-shouldBe('test("-webkit-color-correction: sRGB;")', '"srgb"');
-shouldBe('test("-webkit-color-correction: srgb;")', '"srgb"');
-
-shouldBeEqualToString('test("-webkit-color-correction: apple;")', '');
-shouldBeEqualToString('test("-webkit-color-correction: 15;")', '');
-shouldBeEqualToString('test("-webkit-color-correction: auto;")', '');
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionbackgroundsandtextexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-backgrounds-and-text-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionbackgroundsandtextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,41 +0,0 @@
</span><del>-layer at (0,0) size 785x1072
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x1072
- RenderBlock {HTML} at (0,0) size 785x1072
- RenderBody {BODY} at (8,8) size 769x1056
- RenderBlock {P} at (0,0) size 769x36
- RenderText {#text} at (0,0) size 747x35
- text run at (0,0) width 747: "This container has no color correction, and neither does the text inside, so it will not be visible since both are green and"
- text run at (0,18) width 78: "uncorrected."
- RenderBlock {DIV} at (0,52) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,3) size 117x166
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,268) size 769x36
- RenderText {#text} at (0,0) size 751x35
- text run at (0,0) width 751: "This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both"
- text run at (0,18) width 151: "are green and corrected."
- RenderBlock {DIV} at (0,320) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,3) size 117x166
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,536) size 769x36
- RenderText {#text} at (0,0) size 732x35
- text run at (0,0) width 732: "This container has sRGB color correction specified. The text inside does not have the property specified, but the text"
- text run at (0,18) width 584: "inherits the container's style, so the text will not be visible since both are green and corrected."
- RenderBlock {DIV} at (0,588) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,3) size 117x166
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,804) size 769x36
- RenderText {#text} at (0,0) size 761x35
- text run at (0,0) width 761: "This container has default color-correction specified, and the text has sRGB color correction specified. This text is visible"
- text run at (0,18) width 488: "even though both are green since the text is corrected and the container is not."
- RenderBlock {DIV} at (0,856) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,3) size 117x166
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x90
- RenderText {#text} at (0,0) size 769x89
- text run at (0,0) width 763: "This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same --"
- text run at (0,18) width 755: "purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special"
- text run at (0,36) width 769: "CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-color-"
- text run at (0,54) width 759: "correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the border"
- text run at (0,72) width 134: "and the image match."
- RenderBlock (anonymous) at (0,106) size 784x144
- RenderImage {IMG} at (0,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (140,126) size 4x17
- text run at (140,126) width 4: " "
- RenderImage {IMG} at (144,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (284,126) size 4x17
- text run at (284,126) width 4: " "
- RenderImage {IMG} at (288,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundimageexpectedpng"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.png (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.png        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.png        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,55 +0,0 @@
</span><del>-\x89PNG
-
--IHDR X')tEXtchecksumd2ab76c2c37745ed4c70626fc11e8de1\xF8bKGD\xFF\xFF\xFF\xA0\xBD\xA7\x93 IDATx\x9C\xED\xDD{xTս?\xE0\xC2%@\x82Q@)ZQ\xE4"" \x8A\xF2(VE\xACZ鶴\xF1R\x94\xE2\xD1Z\x8B\xB6\xE7x\xAD\x9E*Z\xA0hkmmi\xAD\xA2b}\xA0E\xAD\xE2QE\x8AUc        \xA0 D!$\xF3\xFBc?\xBFy\xE6\xCC-\x93\xB0@m\xDF\xF7\xAFa\xD8{\xAF\xB5\xBEk\xED\x9DO&{f\x8A\x89D@8\x8D\xBE\xEC\xFC\xBB\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0kܰ\xDDV\xAF^]]]]VV\xB6\xDBn\xBB\x85\xEDп\x93+VDQԺu\xEB-ZԹ\xF1\xFA\xF5\xEB\xB7l\xD9Ҹq\xE3v\xED\xDA\xED\xBC.\x85\x9A\xB8\\xBDݰa\xC3g\x9F}V\\ܾ}\xFB\xEB鮶\x96t\xA8&\xBE.g_\x83\xFBY\xF8\xB9\xB0r\xE5\xCA\xCA\xCA\xCA^\xBDz\x95\x95\x95\xED@O\xFF\xFD%O\xCCv\xED\xDA}\xD9\xDD        \xA6^\x97\x8D5\xDA{\xEF\xBDwv\xC7\xE2\x8B\xFF\xEE\xBB\xEFeˆaݺu\x9F\xFEy\xF3\xE6\xCD\xF7\xD8c\x8F\xA0]k\xB8\x9D\xBA\x8Av\xF6ώ/岙\xF3\xAC)S\xA6ܒÜ9s-Zt\xEC\xB1\xC7\xDE|\xF3ͻ\xAC\xA3_Gs\xE7\xCE=\xF0\xC0y\
xE4\x91B6\xAE\xAC\xAC\xFCя~t\xF8\xE1\x87\xEF\xD4.\x85\x9A\xB8\\xBD]\xBE|\xF9\xF5\xD7_w\xEF<\xFE\xAE\xB7\x96t\xA8&vjW\xE7͛w\xDBm\xB7\xFD\xE0?\xB8\xE6\x9Ak~\xFF\xFB\xDF\xF2\xC9'->T\x83\xFBY\xE0\xB9\xF0\xCB_\xFE\xF2\xBF\xFF\xFB\xBF\xFF\xFB\xDFϜ9\xB3\xA1}\xFCO\x91\xE7\xC4|ꩧ~\xFD\xEB_\xEF\xFA.\xA5\xB6^\xDFolK\xF6\xB9^\x97\x87zhC:ZO\xF5\xBA\xF8g\xB5lٲ\xB3\xCE:뢋.
-ث\xB4S/\xEF;\xFBgǗZr\xAC\x87z\xA8O\x9F>\xC7\xFCСC\xEF\xB9瞹s\xE7\xFC\xF1G}tii\xE9\xECٳ\x8F?\xFE\xF8\xF9%\xE0?\xE4\xCF8㌒\x92\x927\xEEӧ\xCFG\xB1S\xFBE\xD1N\R\xAE\xDE\xF6\xEA\xD5먣\x8E\xDA\xF1\xE3ǂ\xAF\x93<U\x99<v\xBC\x89\xB8\xFF;\xA9\xAB[\xB6l9\xF9䓯\xB9暣\x8F>\xFA\xE6\x9Bo\xFE\xAF\xFF\xFA\xAF\xCF>\xFB\xAC[\xB7nO<\xF1\xC4.\xEEg!\xE7-[\xAE\xBB\xEE\xBA\xFF\xF9\x9F\xFF\xB9\xF3\xCE;{\xF4\xE8\xFD\xC7\U\xD28\xEA<'\xE6C=t\xF7\xDDw\xEDT=ԫ\xF5\xE4`\x93{\xD5\xEB\xB2\xF6\xEA\x94_\xBD.\xFEY\xF5\xEB\xD7\xEF\xC0՟ vjw\xDE\xC1w\xEAe3\xBF\x9C"\xECر\xE3\x90!C\xE2\xC7M\x9B6mݺu\xBF~\xFD\xA2(\xEA֭\xDBĉw\xA4\xC9\xC7|ժUW\qŎ\xE4k\xA4Q#7\xBA5D\xF0u\xF2u_x;\xBB\xFF\xD7\s\xCDo\xBC\xF1\xF6\xDBo\xC7\xD4\xD8m\xB7\xDD.\xBF\xFC\xF2-Z\x9C}\xF6ً-:\xE0\x80\xBE"\xFD\x8CUVVnڴ\xA9\xAC\xAC\xAC\xBC\xBC\xBC\xBC\xBC\xFC\xEB>\xB9-d\xD4\xF7\xDF\xFF\xF6\xED\xDBCu)\xB6u\xEB\xD6\xDA\xDA\xDA\xE6͛l=u\xB0;\xA3\xCF;î\xB9\xF8\x
C7\xD5.))\xF9w\xFA\xE3o(_\xEE\x95!g\xC0\x9A0aB\xD6\xE7۴is\xE3\x8D7Ə\x8B\x8B\x8B_\xFD\xF5\x993g6k֬\xA2\xA2\xA2U\xABV\xF1\xF3\xB3f\xCDz\xE5\x95W\xCA\xCB\xCBG\x8E\xB9\xFB\xEE\xBEt\xE9\xD2[n\xB9\xE5\x90Cy\xF8ᇷm\xDBִi\xD3(\x8A>\xF8\xE0\xF8w\xD0\xD8ʕ+_x\xE1\x85(\x8Az\xF6\xEC٭[\xB7(\x8A\xE6Ν\xFB\xE2\x8B/&\x89\x81y䑙\xBD\xAA\xAA\xAAz\xF8\xE1\x877n\xDCءC\x87\xF3\xCF??>\xB1\x9F\xFE\xF9\xA7\x9F~:\x8A\xA2\xB6m۾\xF1\xC6\xBF\xF9\xCDo\x9E~\xFA\xE9\xB5k\xD7\xF6\xEEݻk\xF3\xE7\xCF\xEF\xBD\xF7Z\xB7n}\xFC\xF1\xC7GQ\xB4dɒ9s\xE6\xAC]\xBB\xB6}\xFB\xF6g\x9DuVYY\xD9K/\xBDTUUճg϶m\xDB>\xFC\xF0\xC3\xDF\xFE\xF6\xB7\xF7\xDE{\xEF̡em:է\x9F~:iҤu\xEB\xD6z\xE8\xA1Æ-K>\x9F\xA7J\xB1\xCCQ?\xF2\xC8#\xB5\xB5\xB5\x85T,erM\f\x8By*\x96\xE6\xEF\xFF\xFB\x9C9sjkk\xFF\xF5\xAFe\xFE\xEF+\xAF\xBCRYYٳg\xCFm۶͘1\xA3E\x8B\xA5\xA5\xA5\xB9\xDAM]'\xA7\x9CrJ\xF2w\xC1\x97_~\xF9_\xFF\xFAW\xF7\xEE\xDDkjj\xFE\x{1B7FD5}\x96\x96\x8E9\xF2\xF3\xCF?\x9F>}\xFA\xAAU\xAB\x86
ާO\x9F\xAC\xB3\x99y\xC0W_}\xF5\x85^X\xBF~\xFD\x9E{\xEE9lذ\xFD\xF7\xDF?OeReN\fs\xF1\x96-n\xA2\xE49NZ\xF7\xB2.\xE3\xCC7o\xDE\xFC\xDB\xDF\xFEv̘1i\xB7\x8C\x9C{_~\xF9\xA4I\x93Ə\x9Fc-\xEEgf\x97\xF2\xD4|Æ-\xF1\x9F\xFC\xF1\x96-[\xF6\xEE\xDD\xFB\x96[n\xE9իW\xDAj\xC9:5\x85\x8C"ײϿor\xBA۴is\xF2\xC9'\xEF\xB7\xDF~EEE\x99S\x996#{\xED\xB5WMMM\xAE\xEB\xCCy\xE7\x9Du\xEB\xAC\xCB)\x91H\xA4-\xE9\xAC%\xCDb\xBE\xF3\xCE;\xAF\xBF\xFEz\x8B-\x86\xDE\xE0\x93+>\xD4\xECٳ_y啚\x9A\x9A\xE6͛O\x9B6mʔ)\xFB\xEC\xB3O\xDAܕ\x97\x97\xA7\x86\x80d\xEB'\x9F|r\x94\xF7Z\x9A\xBA\xAE:\xE8\xA0\xFE\xF3\x9Fq\x9F\xF3,\x95\xD4\xD2\xE5/B\xE6\xA0JKK\x8B\x8A\x8A\xF2_\xDBSw9\xF3\xCC3\xB3\x9Eȩ\xFF\xA1C\x87\xC6c\xCF\xDAV\xE6\xFC\xEE\xB7\xDF~\xC9\xE3TWWO\x9D:5\x8A\xA2nݺ\xF5\xE8ѣ\xA8\xA8(\xB3\xDA|\xF0A晞\xE7\x92~\xC0,X\xB0 ^\xDB\xDF\xFAַ^}\xF5\xD5̵ݲe˸ou0O1\xEB<\xE9
-9x\xE6@\xEA{91bD\xE8rT\xB8\xCA\xD7,x\xEE\xB9\xE7v\xDBm\xB7\x89'~\xFF\xFBߏ\x9F\xBC\xFA\xEA\xABǍw\xE6\x99g&\x89\xEEݻ\xAF[\xB7.u\x97\xE5˗\xAFX\xB1\xA2q\xE3\xC6%%%\xFD\xFB\x{1EFA28}X\xB2dI]\xA3(Z\xB4hџ\xFF\xFC\xE7(\x8Aڷo߸q\xE3\xE7\x9E{.\xFE\x81t\xD3M7]{\xED\xB5'\x9Ex\xE2\xE0\xC1\x83\xF0\x83\xDCt\xD3Mi\xDDX\xB3f̀\xFA\xF7\xEF\xFF\xBD\xEF}\xEF\x99g\x9EY\xBDzuE7\xDCp\xC3\xF7\xBF\xFF\xFD\x93N:颋.Z\xBDz\xF5\xF4\xE9ӣ(\xEAӧ\xCFرc\xE3\xC7ݻw\x9F7o\xDEu\xD7]dҤI\xEDڵ\xBB\xF0\xC2\x9F}\xF6\xD93\xCF<3\x8A\xA2^\xBDz\x8D7\xEE\xF2\xCB/3f\xCC\xE4ɓY\x939\xB4\xACM\xA7\x997o^\x87\xF6\xD9g\x9F\xCB.\xBB\xEC\xB2\xCB.+\xA4J\xB9Fݯ_\xBFB*\x96\xBF2\xB9&.k\x8By*\x96j\xECر\xA3G\x8F2dHEEE\xA7N\x9D27\xE8\xFB\xB8q\xE3ƌ\xF3\xEC\xB3ϖ\x95\x95\xDDq\xC7cƌ\xC9\xD3n\xEA:I\xBD"\xF7\xE8\xD1c\xFC\xF8\xF1\xA3F\x8D\x9A6mZqq\xF1\xED\xB7\xDF~\xEC\xB1\xC7\xDE}\xF7ݟ}\xF6ق\x8E9\xE6\x98O?\xFD4\xEBl\xA6\xF0\xF6\xDBo\xBF\xE0\x82\x8E8∊\x8A\x8A\xF5\xEB\xD7\xFF\
xF5\xAF\xCDS\x99TY'.\xB3\xB9(\x8A\xDCD\x81)\xF0\xEC\xCB\ƙ-FQ\xB4p\xE1[\xB7\xA6\xAD\x9F(\x8A\x9A6mڱcǗ^z)\xFF$&5\xB8\x9FY{\x95k\xE3իWo۶-\x8A\xA2f͚\x95\x94\x94\xE4Z-Y\xA7\xA6\x90Q\xE4Z\xF6y\xF6M\x9D\xEE-6\xC4ӝu*\xD3f\xA4}\xFB\xF6y\xAE3=z\xF4X\xB7n]"\x91H\xFF\xA2\x8B.\x8A\x97Sڨ\xB3\x96\xB4\xCE\xB3K\x97.\xEF\xBE\xFB\xEE\xA8Q\xA3\xA28\xB9\xE29\xFA\xD9\xCF~6r\xE4\xC8\xE1Ç\xFF\xE2\xBF1bD\x9C\xAE\xF2Otj\xEBɋ\xD5w\xBF\xFB\xDD\xCCki\xEA`\xF7\xDBo\xBF\xE4^y\x96J\\xBAB\x8A\xAAm۶\xA9\x83\xCAߟ\xB4:\x9Cu\xD6YY\x9B\xF5\xE2\x9F\xD9Vr\xFD0 \xEDrkҤ\xC9\xF4\xE9ӷo\xDF_\xF9\xB3V;\xF3L\x8F\x97\xDF        '\x9C\x90\~\x89D\xA2ε\xFD\xF7\xBF\xFF=mm\xC7<\xF1\xC4\xF30\xB32\pA֓\xAE\xB4\xB44\xF3\xE0C\x86\xB9袋r<\xEBy\x94\xE7\x98I\xB9.G\xADZ\xB5j\xF0\xE5\xA8~\xD8w\xDF}\xCF=\xF7ܴ'-t\xF5\xD5WǏǏ\xBF\xEF\xBE\xFB&\x89\xAA\xAA\xAA\xE2\xE2\xE2\xD7^{-\x91H\xD4\xD6ֶi\xD3\xE6\x9E{\xEE\xC9<\xDAĉ\xE3\xC7\xE7\x9Dw\xDE1\xC7?\xBE\xF8\xE2\x8B;w\xEE\[[\
x9BH$\xAE\xB9\xE6\x9A\xF8 +W\xAElڴ\xE9K/\xBDo3{\xF6\xEC\xA6M\x9B\xAE\\xB92\xF5\x80ӧOo۶\xED\xF6\xED\xDB\x89\xC4G}\xB4e˖\xAA\xAA\xAA&M\x9A̚5+\xDE\xE07\xBF\xF9M۶m\xE3\xC7]\xBBv\xBD\xE3\x8E;\xE2\xC77\xDF|s\x9F>}\xE2Nj/\x8E<\xF4\xD0Ceeeic\xAC\xAA\xAAZ\xB8pa\xE6\xD02\x9BN\xEC{\xEC\xF1\xC0$\xFBYTT\xB4t\xE9\xD2\U\x9A8qb\\xC6<\xA3\xAE\xB3b\xF9+\x93k\xE2b\xC9ޮX\xB1\xA2I\x93&3g\xCE̬v\xAA\xD4vo\xBB\x{DDAE}]\xBB\xE6o7u\x9D\xA4<x\xF0\x981c\xE2\xC7w\xDDuW܇x\x80Q\xBD\xFC\xF2ˉ\xB3\x99<\xE0\xAAU\xAB\xE2V\xFC\xFC\xBAu\xEB}\xF4\xD1\\x95I\x95k\xE22\x9Bkp\xA4^g_\xEA2^\xB3fMfI\x89\xC4c\x8F=E\xD1ԩS3\xFFk\xE0\xC0\x81\xDF\xF8\xC672\xDBMNb\x9A\xF73Uru\xE5\xDA8~\xC9v\xFD\xFA\xF5\xC9F'L\x98\x90ٙ\xFC\xE7u\x9EQ\xE4Z\xF6Y\xF7\xCD:\xDD+V\xAChڴi\xFCkw\xE2\xFFNeڌ\xD4y\x9DY\xB9re\x93&M\xA6M\x9B\x96z\xFC\xD4Rg\xADR\xD63\xBE\\xA4\xBA\xF7\xDE{\xF7\xD9g\x9F\xF8q\xC3N\xAE\xDA\xDA\xDA\xD2\xD2\xD2?\xFD\xE9O\xF1\xF3\x83\xCEګI\x93&em\xBD\xB6\xB
66y\xB1\xAA\xAD\xAD\xCDz-M]W\xA9}οT\xE2"<\xF9䓩EHdX\xBCxq\\x99xP\x85\xF4'\xEB\xD2J\xB5\xC7{\xFC\xEEw\xBF\x8B'/\xFEY\xDBJ\xAE\x9F\xF8\xF9x~kkk/\xBA\xE8\xA2#F$\x89[o\xBDuʔ)\xF1\xA1rU;\xF1\xD7\xD5o\xBC_I\xE2c\xC6\xCBoŊ\x89\xFF\xBF\xB6\xE3\xE7\xE3\xB5?\x8Ew\x8F\xC7k\xBB\xB6\xB66\xB9\x8A\xE2\xE7s\xAD\xA2:+\x93\xF5\xC4)\xE4gG\xAEKbmm\xED.\xBB5X?\xA6!M\x8B-\xBE\xF8\xE2\x8B(\x8A/^\SS\xB3x\xF1\xE2>\xF8 \x8A\xA2\x92\x92\x92\xFC\xAF(\x8E9rȐ!\xABV\xADjݺ\xF5[o\xBDUYY\xF9\xC2/}\xF4\xD1o\xBE\xF9\xE6\xCF\xFE\xF3(\x8A\xDEx\xE3\x8Dm۶|\xF0\xC1\xF1\xF6\x87rȶm\xDB-Z\x94\xFAg\x8E\x9E={nڴiРA\xA3G\x8F>\xE5\x94S\x9A5k\xF6\xDAk\xAFUWW\xD7\xEByݻw\xFB\xED\xB7?\xFC\xF0\xC3ŋǿ\xA7\xEAСC֡-:4\xAD\xE9<M}\xF4щD\xE2\xFF\xF8G\xB3f\xCD\xF2W)Ϩ\xEB\xACX\xAA\xCCʤm\x90\x9C\xB8B\xEA\x9CK\xAA]ZZ\xBA\xE3\xEDFQTVV'\x8A\xA2\xF8o[\xF1?\xF3\xCF\xE6ܹs\xAB\xAB\xAB\xFB\xF6\xED\xFF\xB3u\xEB֧\x9F~z\xDA6\xC9ʤʵ\xBC3\x9Bkp-(H\xE1g_\x87r$\xFE\xB3\xDA\xE7\
x9F\x9E\xF9_[\xB6l\xC9z\xBBnr\xABD}/)i\xF2\xAF\x84\x8C"\xEB\xBEY\xA7{ƌuNeڌ\xE4\xBA\xCEԹ\x9C\xB2\xEEՀ3U\xE1'W"\x91غuk\xE2\xFF߁\xBE}\xFB\xF6x\xC1\xD4k\xEE\x92\xAB+\xAE\xB8\xE2\xDB\xDF\xFEv\xFEkiV;R\x84\xCCA\xD5ٟ:\x97V\xAA\xE4\xC5\xFF\xFD\xF7\xAF\xEF\xE5b\xE2ĉ/\xBE\xF8b\xF2O\xB9\xAA\x9D\xAAC\x87o\xBE\xF9f\xD6\xE5\xBF\xB2X\xA7\xE4\xDA\xFEô\xBE\xCFuIL\xFB4\x87]s9\xAA\xAF\xC0\xB7\xE0mܸ1\x8A\xA2\xB2\xB2\xB2\x92\x92\x92\x92\x92\x92{\xEF\xBD\xF7\x82.ȳ\xFD\xE0\xC1\x83۶m;eʔ\xBF\xFC\xE5/\xA3F\x8D8p\xE0\xE4ɓ\xE7ϟ\x9F\xACx\xFC.\xF1\xE4\xE2\x8E?P*\xED\xAD\xE3;v\x9C7o^\x97.]***\xBAv\xED\xBAlٲ\xF8%\xBE\xC2?\x80\xE4\xD3O?=\xF4\xD0C'L\x98\xB0iӦƍ\xB3\x87άC\xCBl:O+\xF1-\x8F[\xB7n\xAD\xB3JyF]g\xC5\xF2W&W\xDF
-\xA9s.k-**j؇\x8B\xECH\xBB\xB9\xD49\x9B\xF1yՀON\xCA:qY\x9Bkp;R\x90\xFA\x9E}\xA9\xE2?~\xFC\xF1Ǚ\xFF\xB5z\xF5\xEA\xC2\xEFp\xDE\xCFT!\xE7uY\xA7\xBBaS\x99u\xBC[\xB7n\xCD<~\x9D{\xEDȉ\x99K֒6j\xD4\xE8\xBC\xF3λ\xEF\xBE\xFB*++_}\xF5\xD5'\x9F|\xF2\x92K.\xC9ի\GN^\xAC.\xBE\xF8\xE2:\xAF\xA5Y5\xB8\xF1\xA0Ə\x9F:\xA8\xFC\xFD\xA9\xEF\xD2J^\xFC\xB3\xB6\x95\xE7r\xF1\xF2\xCB//^\xBCx֬YO=\xF5T\xF2PY\xAB\x9D&ԥ5Y\xC0\xEF\xA0OVf\xE3ƍuV\xA6\x90\xD9\xD9?#R\xED\xC8\xA6N\x81/:\xF1\xA7\xBDz\xE8\xA1]\xBAt)d\xFB\xE2\xE2\xE2s\xCE9\xE7\xCF\xFEs\xE7Ν\xFF\xF0\x87?|\xFE\xF9\xE7W_}uiii\xF2\xEF\xEB;v\x8C\xA2hÆ-q\\x8D\xEF \x89\x9FLJ$=z\xF4\x98<y\xF2'\x9F|r\xD4QG\x8D?\xFE\x84N\x88\xA2hժU\xDF\xF8\xC67
-\xE9\xC6O<\xBF8EQ\xAE\xDFE\xB2-\xB3\xE9\o\x88\xA2h\xE5ʕQu\xEE\xDC9~\x9D O\x95\xF2\x8C\xBAΊ\xE5\xAFL\xAE\xEER\xE7\ڵk\x97H$֬Y\xB3\xD7^{\xB2}\xA8vs\xA9s6\xF7\xDDw\xDF(\x8A\x96/_^\xDFwAg]\xF8\xC32\x9Bkp;8\x99\xDD+P]\xBBu\xEB6gΜ+\xAF\xBC2\xF5\xF9e˖\xAD\\xB92\xF3\xC6\xC7Q\xAF~\xEEȠ
-9\xAF\x83\xC8:\xDDɩ\x8Co\x8E.p*\xB3\x8E7\xFE\x8Dq\xF9\xF2\xE5tP\xE1{-[\xB6\xAC\xC1'f.\xB9Jz\xDDu\xD7]y\xE5\x95<\xF0\xC0n\xBB\xED\xF6\xF4\xD3Ow\xEF\xDE=W\xAFr\xA94\xAB\xFCEh۶m\xFEA-X\xB0\xA0\xA8\xA8(9\xA8\xFC\xFD\xA9\xEF\xD2J^\xFC\xB3\xB6\x95\?\xF1-V\xA9\xBAw\xEF~\xDF}\x{1D5514}\r\xC9%K\x96,\x89_5HV\xBBU\xABV\xC9j\xA7I.\xBF\xB8,-\xBE\xB4&/\xEF{\xEE\xB9g!+\xB52\xD5\xD5\xD5<\xCF\xDD?#\xD2\xFA5\xF4
-S\xA7\xC0\xAF`\xF5\xEB\xD7o\xCF=\xF7\xBC\xE7\x9E{\xF2lӤI\x93ԿD\x9C\xFE\xF9\xF3\xE7\xCF///o\xF9g\x9CQ]]=o\xE4o\xCC\xFD\xFA\xF5\xEBԩӓO>\xFFsڴi]\xBAt\x89?0"i\xEAԩ\xF3\xE6͋\xA2\xA8\xBC\xBC\xBC_\xBF~M\x9A49ꨣZ\xB5ju\xFF\xFD\xF7g\xB6^^^\xBF\x98*\x91Hl۶-\xFE51\xD7ْuh\x99M\xE7\xF8\x94)S\xBAu\xEBַo\xDF:\xAB\x94\xD4\xF9+ְ\xEE\xE5i1k\xC5Ry\xE4\x91eee\xF7\xDE{o\x9Em\xD0n\xDA:)\\xAE\xD9L\xF0\xF0\xC3\xEFҥ\xCBm\xB7\xDDVSSS\xDF\xDEfN\\xD6\xE6v\xA4\x89\xA4\x90\xB3/\x8A\xA2        &d\xFD\xD15q\xE2\xC4'\x9F|2\xF9\x8BrE۷o\xBFꪫ\x8E8∑#G>\x84P\xFD\xAC\xD7\xC6Y-\xE4\xBCΥ\xCEe\x9F*\xEBtr\xEDʔu\xBC\xA9\xC7O\xA4|\xF0Ur\xD4Y\xF7ڑ3\x97\xAC%M$Æ-0`\xC0\xA9\xA7\x9E:x\xF0\xE0\xE2\xE2\xE2<\xBDʥU\xC3\xD6U!E\xC8:\xA8\xFC\xFD\xA9\xEF\xD2J^\xFC\xEB{\xB9\x88_ֺ\xF5\xD6[kkkǎ\xFD\xDFjw\xDCq\xC9jgV\xA3\xC1\x97\xF4Ty
-x\xC3-7L\x9E<9\xF1?\x89-9\xC0\xF8A\x83^\xC8@
-\xF6rTo\xF9o\xD1z\xFE\xF9\xE7\xE3H\xF6\xDF\xFF믿\xFE\xFD\xF7ߏ\x9F\x9F1cFǎ0w\xEE\xDCw\xDF}wĈ-[\xB6|\xF0\xC1\x89\xC4\xECٳ\xF7\xDE{\xEF\xFE\xFD\xFB\x9F~\xFA\xE9\xE7\x9E{neee\xDA1G\x8DզM\x9B3\xCE8c\xFE\xFC\xF9\xF13={\xF6|\xFE\xF9\xE7\xE3\xC7\xE7\x9Dwq\xE3R\xB7\xF5\xD5W\xFB\xF4\xE93z\xF4\xE8\xCB.\xBB\xACw\xEF\xDE,H;\xE0\xACY\xB3:w\xEE\xFC\xC3\xFEp\xF4\xE8\xD1\xFD\xFA\x{16BAAA}J$O<\xF1\xC4\xEE\xBB\xEF>p\xE0\xC0\xD3O?}\xF8\xF0\xE1\xC9[\xE7~\xFB\xDB\xDF6n\xDC\xF8\xB0\xC3;묳N:\xE9\xA4v\xED\xDA=\xFE\xF8\xE3\xFCqǎ<\xF0\xC0O<\xF1\xD2K/-..\xFE\xF5\xAF\x8F\xF1\xF0\xC3O\xDE]\x989\xB4\xACM\xA76lط\xBE\xF5\xADk\xAF\xBD\xF6\xEC\xB3\xCF\xEEݻ\xF7[o\xBD\x95\xE7PC\x86iժ՝wy\xF3\xE6\xFC\xA3\xCE_\xB1<\x95\xC93q\xB9Z\xCCZ\xB1\xB4\xDEN\x9D:5\xAE\xF6i\xA7\x9Dv\xC6g\xB4l\xD9\xF2\x8F\xFCcjOfϞ\x9Dl\xF7\xAD\xB7\xDE:th\xABV\xAD\xE2\xC2\xE6j7s\x9D$\x89\x993gv\xEAԩ_\xBF~3g\xCE\\xB8p\xE1\xF0\xE1\xC3[\xB6ly\xD7]wmܸ1~\x95\xE5\xE2\x8B/~\xFB\xED\xB73g
3\xED\x80o\xBC\xF1F\xAF^\xBD\xBAv\xEDz\xDAi\xA7\x9Dz\xEA\xA9S\xA6L\xC9S\x99\xB4\x81\xA4M\\xD6œH$\xDCD\x9D\xB9\xF9\xE6\x9B?\xFB2\x97\xF17\xBF\xF9\xCD\xFD\xF6\xDB/\xEB\x82y饗\x8E=\xF6س\xCE:\xEB\x86n\xB8\xE6\x9Akx\xD5UWm\xB9\xCEILհ~\xA6\xAD\xDB\xD4Օ\xB9\xF1\xFB\xEF\xBFg\xBE1c\xC6<\xF3\xCC3\xB5\xB5\xB5YWK֩\xC95\x8A\xB4\xFBv\xB3.\xFB<Ȝ\xEE\xDA\xDAڬS\x996#\xF9\xAF3\xE7\x9CsNeeemmm\xF2\xF8\xA7\x9Ezj|\xFC\xB4%\x9D\xB5\xA4\xA9'\xE6w\xBE\xF3\x9D\x96-[\xC6?S\xD7\xF3СC\xE37a=\xFA\xE8\xA3;rr\xA5\xFEX)//\xEE\xB9\xE72':\xF9$\xAD\xF5\x9F\xFF\xFC\xE7\x8F=\xF6X\xFEkir\xB0\xB7\xDF~{\xB2Ϗ=\xF6X\xAE\xA5\x97.\xADY\xAFN\xF1:\xE9ڵkrP\xBF\xFAկ\xF2_\xDBs\x9D\xF5\xA9\xD2.\xFEK\x96,\xC9\xD5V\xD6\xF53w\xEE\xDC\xF8\x83B.\X[[{\xF2\xC9'7j\xD4\xE8\xC6o\x8CW{f\xB5SR\xBC\x98\xE3\xE5w\xC5W$\x97_\xFC|\xBC\xB6\xFB\xF4\xE9\x93\\xDBS\xA7NM\xAE\xED\x97^z)\xB9\xB6~\xF8\xE1d\x8F<\xF2\xC8d'O\x9E\]]\xBD\xE7\x9E{\xB6l\xD92\xED\xC4IV\xE6\x84NHV橧\x9EJ\x9E8K\x96,I=钳sꩧ&
g'\xED\x98Yϣԓ1\xED\x98Y\x97\xCDM7ݔ\xDC\xFE\x9DwީWhi\xB0\x82\xDEEX_555|\xF0A\xFC\x86\x85L\xF1\xC7]lܸ1\xF9̇~\x98,ʆ-2߯\x91H$>\xFE\xF8\xE3\xE4;\x862mݺuٲe\xABW\xAFNk\xA8\xAA\xAA\xEA\x8B/\xBE\xF8\xDD\xEF~\x97\xFAބ\xB5kZ\xB5*\xED\xD5\xD5\xD5|\xF0A\x9C\xBB\xEB5\xB4\xACMg\xF6-\xB3\xF9\xAB\xCB5\xEAB*V`\xF7
-i1k\xC5\xD2\xD4\xD4\xD4TUUUWW\xD8P\x9D\xEDf\xAE\x93\xC2e\x9Dͬ\xEF\xBD\xF7ޫs\xD2\xD3dN\\x9E\xC5Ӱ&;P\x90:\xD7\xD5G}\xF4\xD1G\xE59\xC2\xE6͛\xE3\xBF\xE6\xAFP.\xA1\xFAY\xAF\x8Ds5Z\xE0y\x9DU!\xCB>M<\xDD_|\xF1E\xEA\x93\xF9\xAF]Y%Ǜ6i\xCB)m\xD4Y\xAB\x94<16\x9B\x992KZ[[{\xF6\xD9gϛ7oӦM\x9B6mZ\xBBv\xED\x89'\x9Ex\xCE9\xE7\xE4\xE9UV\xF1\xC5*\xD7\xE2\xAC\xEF\xBAJo\x9DW\xA7\xAC\xEB$
-YZY/\xFE;x\xB9\xC8U\xED\\xF3\xDB\xE0Kz\xAA\xAC\\xB6lY\x8F=2ۍ\x98v\xD4y\xF0m۶\xE5\xDF\xEC\xE3\x8F?\x8E?\xB2\xA4^\x92\xCB&\xFF\xFA\xAF\xD7\xE5\xA8pE\x89\xFF\x80\xFF\xFE\xFB\xF2\x93\x9F\xC4\xEF4 \xA09s\xE6\x8C5jɒ%\xC9g\xCE>\xFB\xECN\x9D:\xDDv\xDBm_b\xAF\xFE]\xE5\xAA\xF6\xCF~\xF6\xB3]\xF9I\xEE\xFC\xF1M7\xDD4bĈ\xC1\x83\xFB\xF9\v\xE2;k\xBE:6m\xDATSS\xB3u\xEB\xD6\xBC\xF5\x80<<\xF0\xC0M\x9B6\xFD\xEAW\xBF\xEA۷\xEF\xE6͛\xA7M\x9B\xB6t\xE9\xD2\xFCF5r\xF9\x8AT{Æ-cǎ\xDD\xF5\xDF\xEE\xF7\xF5\xF2\xEF\xFF
-\xD6\xDBo\xBF\xFD\xDCs\xCFEQ\xB4\xEF\xBE\xFB&\xBF]\x80P6m\xDA4cƌ?\xFC\xB0Y\xB3fݻw8p\xA0W5v\x9Ed\xB5\x9B6mڣG\xD5\xFE\xCA\xFA\xF7X\xBBخ\xF8\xAEo\x80\xFF(!\xEF\xC1Z\xBDzuuuuYYY>;xG\xF6\xA5@\xEBׯ߲eK\xE3ƍ\xE3\x8FV\xCBoÆ-\x9F}\xF6Yqqq\xDA7\xEC+V\xAC\x88\xA2\xA8u\xEB\xD6\xF1\xA7\xF46\xC0\xBAu\xEB>\xFF\xFC\xF3\xE6͛\xEF\xB1\xC7A\xBB\xD6p\x85p\xC7\xFE\x9F)Y\xDBv\xED\xDAe\xFD\xE3\xC8ʕ++++9\xE4\x90\xD2\xD2\xD2]\xDF=\x80\xA8^멧\x9E\xAA\xAC\xAC\xBC\xF4\xD2Ksm\xB0hѢ+\xAE\xB8b\xF8\xF0\xE1w\xDEyg}\xFB\xB1#\xFB\xEEJu\xE1+\xD8zr\xAF\xCA\xCA\xCAq\xE3\xC6͝;\xB7\x90O\x99[\xBE|\xF9]w\xDD5k֬]\xF0\xEE˹s\xE7~\xEF{\xDF\xFB\xE5/y\xE1\x856\xEC˖-\xBBꪫڴi\xF3\xC4O\xEDZ\xC3R\xC0xR!k\xE3\xCB]\xBD%k\xFB\xE1\x87f\xFE\xEF/\xF9\xCB\xD7_\xBD\xA8\xA8\xE8\xC4O\xCC\xFC
-ȝ\xE1\xF9\xE7\x9F\xFE\xF9\xE7\xE3\xC7EEEM\x9A4\xE9ԩ\xD3q\xC7u\xEB\xB4-\x97.]:s\xE6\xCC>\x{8269A6}\xBC\xBC\xBCs\xE7·~x\xFC\xF9ݩ\x89\xA2\xA8q\xE3ƭ[\xB70`@\x8F=v\xC1\x80\xE0\xEA\xF1'z\xE8\xEE\xBB\xEFγ\xC1\xF1\xC7\x9F\xE7=\xB9n\xF6\x8A\x9FϿ\xEFWG\x9DE\xF8괞,xr\xAF>}\xFAq\xC4\xEEޫW\xAF\xA3\x8E:\xAA\x9Dl\x803\xCE8#\xEB\xD7        \xAE_\xBF~\xF5\xFDR\x9A\x9D\xAD\x906l\xE0YO\xA5\xB4\xB5Q\xC86_A\xDE\x9A\xA7\xB6[\xB6l\xB9\xEE\xBA\xEBn\xB8\xE1\x86;\xEF\xBC3\xEBW\x88\xECG}\xF4\xC0\x81\xFAӟ6m\xDA\xF4\xD8c\x8F=蠃y\xE4\x91.]\xBA̝;79\xA2\x9A\x9A\x9AQ\xA3F\x9D|\xF2\xC9:t\xF8\xF1\x8F\xFC\x93\x9F\xFCdȐ!\xAF\xBC\xF2\xCA\xC5_\x9Cy\x90\xE3\x8E;\xAEw\xEF\xDEUUU\xBD{\xF7\xFE\xE1\xE8NY\xF8:\xAA\xC7+X\xF7\xDF\xFF\xF6\xED۳\xFE\xD7֭[kkk\xE3\xAF\xDC\xCA\xEA\xF1\xC7_\xB5j\xD5W\Q\xE0\xF3_Yy\x8A\xD0`uV\xAF\xAD\xA7vg\xF4yg\x88\xBFug+\xBCڻL\xBD\x9E\xEB\x94I\x9D\xE5B\xB6\xF9
-
-r5\xA8\xAC\xACܴiSYYYyyyyyy\xA8\xBE\xD5)n\xEB\x800`@E'\x9DtR\xE7Ν\xFF\xF7\xFF7\xF9\x92\xEA\x8D7\xDE\xF8\xE0\x83\xBE\xF5\xD6[\xFB\xEC\xB3O\xFCL\x9B6m\xFA\xF7\xEF\xFE\xF9\xE7g$\xFE\xEE\xF6N8a\xF9\xF2\xE5&L\xB8\xF5\xD6[}\xC4|\xED\xE4X/\xBD\xF4RUUUϞ=۶m\xFB\xF0\xC3w\xEB\xD6m\xF5\xEA\xD5-Z\xB4>|x\xBC\xC1\xECٳ_y啚\x9A\x9A\xE6͛O\x9B6mʔ)\xB8\xF8\xF5\xD7_\x9F9sf\xB3f\xCD***Z\xB5j\xB5t\xE9\xD2[n\xB9\xE5\x90Cy\xF8\xE1\x87O9\xE5\x94\xE4\xAF\xECi\xCFg\xDD7\xDEr֬Y\xAF\xBC\xF2Jyy\xF9ȑ#w\xDF}\xF7\xB4\xAEVUU=\xFC\xF0\xC37n\xECС\xC3\xF9\xE7\x9Fy\xF3%K\x96̙3g\xEDڵ\xED۷?묳\xCA\xCA\xCA^~\xF9\xE5\xFD\xEB_ݻw\xAF\xA9\xA9\xF9\xDB\xDF\xFEVZZ:r\xE4\xC8\xCF?\xFF|\xFA\xF4\xE9\xABV\xAD>|x\x9F>}\xEAl\xEB\x9Dw\xDEy\xFD\xF5\xD7\xE3"x\xC0̞\xE4\xAF^\x81\xADgur\xCB\xD4\xC2t\xD0A\xFF\xFC\xE7?S'.U\xD6\xE6\xFE\xFE\xF7\xBFϙ3'\xFEܬk#\xEB\xA0\xF2\xF4'OR}\xFA駓&MZ\xB7nݡ\x87:lذ\xFC;\xBE\xFA\xEA\xAB/\xBC\xF0\xC2\xFA\xF5\xEB\xF7\xDCs\xCFaÆ\xED\xBF\
xFF\xFE\xC9\xE3TWWO\x9D:5\x8A\xA2nݺ\xF5\xEC\xD93k\xB5?\xF8\xE0\x83\xD4\xE5\xFD\xEDo{\xEF\xBD\xF7\x9E;w\xEE\x8B/\xBE\x98H$x\xE4\x91GFQ\xF4\xF4\xD3O\xAF]\xBB6\xFE\xF9\xF3\xE7\xBF\xF7\xDE{\xAD[\xB7>\xFE\xF8\xE3_y\xE5\x95\xCA\xCAʞ={n۶mƌ-Z\xB4\xA8\xA8\xA8H\xDE\xEESg\xEBx\xAEvs\x9DJ\xA9k\xA3\x90mꜯ\\xCE,Qڅb\xAF\xBD\x{1AAA69}I+l\xD6e\x96v\xFCD"\x91\xD6\xED,\xCE-6̜93\x8A\xA2\xC7\xBCE\x8B:tX\xB1bE\x9D\xB3\x9F\xCB|pmmm|.\x9Fw\xDEy_|\xF1E\xE6\xC5!\xA9\xCE\xEAw\xEE\xDCy\xF5\xEA\xD5\xF1?\xBF\xF8⋻\xEF\xBE\xFB\xEC\xB3\xCFN\xA6\xAB\xA4\xF1\xE3\xC7\xE7Y\xBB\xED\xB6[\xA3F\x8D\xBC        \xBE\x8Er\xFE\xEAܫW\xAFq\xE3\xC6]~\xF9\xE5cƌ\x99<yrii\xE9\xBBロ\xFC
-\xA4\xAB\xAF\xBE\xFAg?\xFB\xD9ȑ#\x87\xFE\x8B_\xFCbĈ\xC9ǂ\x9E{\xEE\xB9\xDDv\xDBm\xE2ĉ\xDF\xFF\xFE\xF7\xA3(Z\xBE|\xF9\x8A+7n\RR\x92z\xA5\xC8|>s߸\xADq\xE3Ɲy晉D\xA2{\xF7\xEE\xF1\xCB'\xADY\xB3f\xC0\x80\xFD\xFB\xF7\xFF\xDE\xF7\xBE\xF7\xCC3\xCF\xC4W\xB4I\x93&\xB5k\xD7\xEE\xC2/|\xF6\xD9g\xCF<\xF3\xCC(\x8Az\xF4\xE81~\xFC\xF8Q\xA3FM\x9B6\xAD\xB8\xB8\xF8\xF6\xDBo?\xF6\xD8c\xEF\xBE\xFB\xEE\xCF>\xFBl\xC1\x82\xC7ş\x9F~Zg[]\xBAtI\xA1\xC0f\xF6$O\xF5
-o=먳v\xBF\xFD\xF6K\x9D\xB8TY\x9B;v\xEC\xE8ѣ\x87RQQѩS\xA7\xACk#sP\xF9\xFB\x93\xABi\xE6͛סC\x87}\xF6\xD9\xE7\xB2\xCB.\xBB\xEC\xB2\xCB\xF2\xECx\xFB\xED\xB7_p\xC1GqDEE\xC5\xFA\xF5\xEB\xFF\xFA\xA6\xA7I\x93&ӧO߾}{|kK\xD6j\xA7-\xEF5k\xD6\xDCt\xD3M\xD7^{\xED\x89'\x9E8x\xF0\xE0\xFC\xE0\xF1\x97\xAF\xF5\xE9\xD3g\xECرӧO\x8F\xA2\xA8{\xF7\xEE\xF3\xE6ͻ\xEE\xBA\xEB\xE2\xC7\xE3ƍ3f̳\xCF>[VVv\xC7w\x8C3&n\xBD\x90\xD69\xF0\\xED\xE6:\x95R\xD7F!\xDB\xD49_Y+\x9C\xB5Di\x95l߾}Za\xB3.\xB3\xCC\xE3\xA7u\xBBa\x8Bs\xF5\xEA\xD5\xF1\xF7\xCB6k֬\xA4\xA4\xA4\xC0YN=\x975j\x94\xEB\N\xAA\xB3zQmݺ\xF5\xDDwߍ_͊\xA2\xE8\xF5\xD7_ys\xD6o\xA8\xCD\xFC\x8D1i\xE9ҥ\x8F=\xF6\xD8O\xFA\xD3\xFC\xDF"|E\xE5\xF9\x9DA\x83]}\xF5ՉD\xA2\xAA\xAAj͚5\xF7\xDE{\xEF>\xFB\xEC\x93H$jkkKKK\xFF\xF4\xA7?śUTT<8m\x97D"1~\xFC\xF8}\xF7\xDD7~\xBC\xEF\xBE\xFBN\x9C81\xB3\x89\xD4\xE7\xB3\xEE[UUU\\\xFC\xDAk\xAF\xC5\xED\xB6i\xD3\xE6\x9E{\xEEI=\xC2\xF4\xE9\xD3۶m\xBB}\xFB\xF6D"\xF1
\xD1G\xC5\xDFʷx\xF1\xE2\xF8z衲\xB2\xB2\xF8\xF1\xE0\xC1\x83nj?\xBE뮻\x92}\x8B\xEFA~\xF9\xE5\x97\xEBl+\x91H$\x8BP\xC8\xB3\xF6$W\xF5\xEA\xD5z\xD6Q\xE7*lj\x9F'N\x9C\x98\xA7\xB0+V\xAChҤ\xC9̙3\xE3\x8D\xF3\x9Bߤ~\x87cR\xE6\xA0\xEA\xECO\xD6I\xB5\xC7{<\xF0\xC0\xF1\xE3\xE9ӧ-]\xBA4뎫V\xAD\x8A#T\xFC\xFC\xBAu\xEB}\xF4\xD1D"q\xD1E\x8D1"\x91H\xDCz\xEB\xAD\xC9\xEF\xCD-d\xADVUU\xBD\xF1\xC6M\x9B6}饗\xB0h`#\xB8IDAT\xE2\xFF\x9A={vӦMW\xAE\\x99H$\xBAv\xEDz\xC7w\xC4\xCF\xDF|\xF3\xCD}\xFA\xF4I\xDB=\x91H\xDCv\xDBm]\xBBvM$\xB0\x90\x81\xE7j7ש\x94:\xCBun\x93\xBE\xB2Vx\xE5ʕ\xB9J\x94v\xA1H\xFD\xE7
3\x97Y\xAELv\xBB\xF0ř\xF9\xFDb/\xBC\xF0BE6l\x88\xFFY\xE0,\xC7y+~>\x9C\x94\xB5z\xAF\xBF\xFEzE\xD7_\xFD\xB4i\xD3~\xF7\xBB\xDFs\xCC1Gq\xC4\xFA\xF5\xEB\xE3>\xFE\xF8\xE3Q\xFD\xE5/ɜ\x94T\xF1A;찡C\x874\xA8\xA4\xA4\xE4\xF4\xD3O\xEF\xBD\xF7B}\x8D \xB0+tV\x87\xD22Y\xFCm\x94\xF1?\xB7oߞ\xF5F\xDD-Z|\xF1\xC5-\x8B}\xC9}/^\SS\xB3x\xF1\xE2\xF8\
x8Do%%%i\xE8ٳ\xE7\xA6M\x9B-4z\xF4\xE8SN9%\xBES\xA1{\xF7\xEEo\xBF\xFD\xF6\x87~\xB8x\xF1\xE2\xF87\xDA4eeeɾ\xB5l\xD92\x8A\xA2/\xBE\xF8\xA2ζ\xF2\xC8z\xC0\xAC=\xC9U\xBDz\xB5\x9Eu\xD4\x{152D79}\xD7^{\xAD\xBA\xBA:\xBE\xFF#\x8F\xCCA\xD5ٟ:g$\xD5\xD1G\x9DH$\xFE\xF1\x8F\xEC\xBF\xFF\xFE\x99;Ν;\xB7\xBA\xBA\xBAo߾\xF1ƭ[\xB7N}\xA7\xD8ĉ_|\xF1\xC5\xF8\x{15EA30}\xB5ڡC\x877\xDF|s۶m|p\xFC\xCC!\x87\xB2m۶E\x8B\xF8Ƌ\xD2\xD2\xD2x\xBA,`!o\xD8
-\x94\xBE\xB2Vxƌu\x96(\xEDBѡC\x87\xAC\xCB,\xFFF;\xB68s)|\x96s\x9D\xCBIy\xAA\xB7nݺ\x95+W\xFE\xE9OZ\xB6l\xD9ҥK\x935\x8E_\x82\xAA\xAE\xAEN=\xCE\xFD\xF7߿hѢD"ѪU\xABn\xB8\xA1iӦ\xF1\xF3\xD7_}|\xCBĖ-[Ə߭[\xB7GydĈ-8\xF0ei\xC8mō5:\xEF\xBC\xF3\xEE\xBB\xEF\xBE\xCA\xCA\xCAW_}\xF5\xC9'\x9F\xBC\xE4\x92K\x82\xF7,\xB6q\xE3\xC6(\x8A\xCA\xCA\xCAJJJJJJ\xEE\xBD\xF7\xDE.\xB8 u\x83\x8E;Λ7\xAFK\x97.]\xBBv]\xB6l٧\x9F~z衇N\x980aӦM\x8D\xD7\xE3.\xFE:۪\xAF\xAC=\xC9U\xBDz\xB5\x9E9\xEA\xFA\xF6-ksk-**\xCA\xFFQdY\x95\xBF?\xF5\x9D\x91\xF8\xA6\xEF\xAD[\xB7f\xDD1\xFEi\x97\xF5.\xAE\x97_~y\xF1\xE2ųf\xCDzꩧ\x92\x87*d\xAD~\xF2\xC9'Q%RƟJ?Y/\x850\x8F\xE4\xC0\xB6{\xE1\xF2\xCFW\xD6
-7\xACDY\x97Y\x9E̳\xD7ֶ\xC1CȔ\xA7z'\x9Cp\xC2e\x97]\xF6\x87?\xFC\xE1\xD3O?;vl\xF2\xF9\xF8-\xAEi\x8FRQQ\xB1\xF7\xDE{O\x9A4)~\xE7`fC-Z\xB4;v\xECp\xCB-\xB7Է\x93\xC0\x97\xAE\x814z\xDDu\xD7]y\xE5\x95<\xF0\xC0n\xBB\xED\xF6\xF4\xD3OWC\xC7\x89y衇v\xE9\xD2%\xEB\x89D\xA2G\x8F\x93'O\xFE\xE4\x93O\x8E:\xEA\xA8\xF1\xE3\xC7\xF7\xE9\xD3'\xFE\xDBDEu\xBEXR\xAF\xB6\xEA\xEB\x89'\x9E\xC8ړ\xACիW뙣\x9E0aB\xBD\xFA\x96\xB5\xB9e˖%\x895k\xD6\xEC\xB5\xD7^\xF5T\xFE\xFE\xE4\xAAC.+W\xAE\x8C\xA2\xA8s\xE7\xCEYw\xDCw\xDF}\xA3(Z\xBE|y\xE6\xE72t\xEF\xDE\xFD\xBE\xFB\xEE+))\xB9\xE4\x92K\x96,Y\xBF\xFCP\xC8Z\xEDرcE6l\x88?t͚5\xC9'\xEB\xA5]\xBBvu0\x8F\xE4\xC0\xB0o\xBD䟯\xACnX\x89\xB2.\xB3\xF8\x86\xAA\xAC3\x98g\xAFBg~\xA1f\xB9γo\xBF\xFD\xF6\xBB\xE1\x86~\xFC\xE3\x9Fv\xDAi\x83-***\xDA\xFF\xFD;\xEC\xB0iӦ]s\xCD5\xA9[\xC67\xC9忇\xBDy\xF3\xE6        \xD3_C-y+\x91H6l\xC0\x80\xA7\x9Ez\xEA\xE0\xC1\x83\x8B\x8B\x8B?\xFF\xFC\xF3\xFC\xBB4i\xD2$\xEB6\xB9\x9EO\xEAׯߞ{\xEEy\xCF=\xF7\x
E4\xDA`\xEAԩ\xF3\xE6͋\xA2\xA8\xBC\xBC\xBC_\xBF~M\x9A4I$۶m\x8B_\xA8W\xC0\xAA\xB3\xAD\xFA\xCAړ\իW뙣N۠a\x85=\xF2\xC8#\xCB\xCA\xCA\xEE\xBD\xF7\xDE\xFA*\xEA;#S\xA6L\xE9֭[߾}\xB3\xEEx\xF8\xE1\x87w\xE9\xD2\xE5\xB6\xDBn\xAB\xA9\xA9I\xDB1~Q\xE4\xD6[o\xAD\xAD\xAD\x8D_?(p\xAD\xF6\xEBׯS\xA7NO>\xF9d\xFC\xCFiӦu\xE9\xD2%\xBE%\xB9\xBC\xBC\xBC\x90\xCFe\x8D\xE5)\xE0-7\xDC0y\xF2\xE4\x9E\xA7\xDD:g\xB6\x90m\xF2\xCFW\xD6
-\xE7)QY\x97Y\xAELv\xBB\xC1\x8B\xB3\xCE\xCE4`\x99\xEA<\xFB\xA2(\xBAꪫ9\xE4\x90\xEF~\xF7\xBB\x9B7o\x8E\x9F\xB9\xEF\xBE\xFB-Z4iҤz\xB55gΜ\x85&\xDF<a\xFA\xFE*|irݜ5cƌ\x8E;~\xF8\xE1\xF1\xFD³g\xCF:thii\xE9wܱq\xE3ƴw\xA5\x95\x97\x97?\xF7\xDCs\xF1.\x98;w\xEE\xBB\xEF\xBE;bĈ\x96-[>\xF8\xE0\x83\x89DbԨQmڴ9\xE3\x8C3\xE6ϟ\x9F\xDAJ\xF2\xF9\x9Bo\xBE9\xB3g\xCF\xDE{\xEF\xBD\xFB\xF7\xEF\xFA駟{\x95\x95\xA9G\x985kV\xE7Ν\xF8\xC3\x8E=\xBA_\xBF~UUU\xFCqǎ<\xF0\xC0O<\xF1\xD2K/-..\xFE\xF5\xAF=s\xE6\xCCN\x9D:\xF5\xEB\xD7o\xE6̙\xF1\xABe˖w\xDDu\xD7ƍ\xE3w]|\xF1\xC5k\xCD\xDFVj}\xF4\xD1:\xF8\xF6\xDBog\xF6$uf\xF5\xEAij\xEB\x8F=\xF6XڨӦ/Y\xD8\xDBo\xBF=u\xAF!C\x86\xB4j\xD5\xEA\xCE;\xEFܼys\xD6\xE6\xA6N\x9D\xBA\xFB\xEE\xBB8\xF0\xB4\xD3N;\xE3\x8C3Z\xB6l\xF9\xC7?\xFE1\xF5\xC8Y˛9u\xEE\x92\xD6\xE1aÆ}\xEB[ߺ\xF6\xDAk\xCF>\xFB\xEC{\xBF\xF5\xD6[yv|\xE3\x8D7z\xF5\xEAյk\xD7\xD3N;\xED\xD4SO\x9D2e\xCA\xCB/\xBF\xA8\xC1
\x89\xC4\xC
9'\x9FܨQ\xA3o\xBC1W\xB5Ӗw"\x91x\xF5\xD5W\xFB\xF4\xE93z\xF4\xE8\xCB.\xBB\xACw\xEF\xDE,\x88\x9F\xFF\xEDo۸q\xE3\xC3;쬳\xCE:餓ڵk\xF7\xF8\xE3\x8FϞ=;\xB9\\xDFz뭡C\x87\xB6j\xD5*>T\xD6VWW\xEF\xB9\xE7\x9E-[\xB6\xCC<Ѳ<W\xBB\xB9N\xA5\xCC\xD33\xFF6u\xAE\x9F\xCC
-\xE7*QZ%3\x9Bu\x99e=~j\xB7\\x9C\x93'ON\xED\xF6\xFB\xEF\xBF?r\xE4\xC8(\x8A\xAE\xBC\xF2\xCAg\x9Ey\xA6\xC0Y\x8E/}\xFB\xF6\x9D9s\xE6\x82r]\x92\xADd\xAE\xF6\xF9\xF3\xE7\x9F{\xEE\xB9Q-2\xE4\xBF\xF8E|O\xFA\x82\x8A\x8B\x8B-\x94\xBC\xB7\xFD\x9Dw\xDE\xF9\xCEw\xBE3dȐ\xFD\xE8G\xB7\xDCr˅^ؿ\xFFK/\xBD4\xBE_~Μ9\xE7\x9CsNE}\xFB\xF6=\xFD\xF4ӿ\xF3\x9D\xEFy\xE4\x91x\xE0\xCF\xFE\xF3x\x83D"\xF1\xCDo~s\xBF\xFD\xF6\xCB\E\xC0WPQ\xA2\xFE/>'\x89s\xCF=w̘1\xF1\xED\xA2[\xB7n=\xEF\xBC\xF3Z\xB7n\xFD\xE0\x83\xE6٥\xAA\xAAj\xF7\xDDwO\xBB\xF1"\xD7\xF3ijkk\xAB\xAA\xAA7n\x9C\xF9)2Qm۶mŊ\xA5\xA5\xA5ɿl߾}\xE5ʕ\xED۷\xCFzgC~\xF9۪\xAF̞\xE4\xAF^\xE1\xADg\x8E:Վ\xB6\xB6\xB6vժU\xEDڵ\xCBu\xBFT\xD6\xF2\xE6\xEFO!3\xA1Y\xB3f\xA9\x9Dɳ\xE3G}\xF4\xD9g\x9F}\xE3\xDF\xC8s\xCC\xFA\xAEյk\xD7\xA7\xBDs~ݺu۶m+\xFC;\xB3\xF0\xFD\xF7\xDF?\xE5\x94S\xDE|\xF3\xCD\xCC\xED\xB3<W\xBB\x85\xCCl!\xDB䟯X\xD6
-g-Q~\xB9Vu\xDA\xF1Ӻݰ\xC5Y\x88!M!\xD5˥\xBA\xBA\xFA\xC3?,**j]\xD6W\xBF\xAA\xAB\xAB\xB7o\xDF^[[[RR\x92\xF6!X\xF1GB\xB4m۶\xC1=v\x99\x86\xAC9s\xE6\x8C5jɒ%\xC9g\xCE>\xFB\xECN\x9D:\xDDv\xDBmA\xFB\xF6\xEFI\xF5v\xA5\xAFH\xB5?\xFE\xF8\xE3\x9Bn\xBAiĈ\xC7wܮl\x80/KC~<\xF0\xC07m\xDA\xF4\xAB_\xFD\xAAo߾\x9B7o\x9E6m\xDAҥK'N\x9C\xBCs\xFF\x96ToW\xFA\x8AT{Æ-cǎ\xFDZ|\xDB&A4\xE4\xAC(\x8A6m\xDA4cƌ?\xFC\xB0Y\xB3fݻw8p\xA0/s(\x9C\xEA\xEDJ\xAA-\xC0\xAE\xD7\xC0\x80@.-\xF9\x98\xF2\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0\xB0k\x9C\xEB?\xCE,\xAAؕ\xFDh\xB0)\x89\xFB\xBF\xEC.\xFC^\xC1L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0
L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\
xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0
L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC
0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L\xC0L
\xC0L\xC0L\xC0L\xC0L\xC0\xEC\xFFg\xA7_\xE3,OIEND\xAEB`\x82
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundimageexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-background-image-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 785x860
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x860
- RenderBlock {HTML} at (0,0) size 785x860
- RenderBody {BODY} at (8,8) size 769x576
- RenderBlock {P} at (0,0) size 769x36
- RenderText {#text} at (0,0) size 768x35
- text run at (0,0) width 768: "The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the"
- text run at (0,18) width 480: "right the same image is tiled as a background, but it is corrected from sRGB."
- RenderBlock (floating) {DIV} at (0,52) size 400x400
- RenderBlock (floating) {DIV} at (0,452) size 400x400
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundsexpectedpng"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.png (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.png        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.png        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,26 +0,0 @@
</span><del>-\x89PNG
-
--IHDR X')tEXtchecksum3d886801ce079440a736a0f0e46d5529\xF1NqbbKGD\xFF\xFF\xFF\xA0\xBD\xA7\x93wIDATx\x9C\xED\xDDyp\xF5\xFD\xC0\xF1-9H\xB8\x8A<F+V"\xF1@j\xD5\xD5\xD1Q\xA78ţ\x8A\xB5\xF1\xBE:\xA5\xB5\xFDCю\xFET\x90\xA3B\xABm\xA7UF\xA5\x8CV        \x82\xBC\x95S;\xA2@\x81rȭ        d<3\x994\x97>\xA0m_\xAF\xBF\x9E|\xB3\xBB\xDF\xDD}\x9E\x99\xBCg\xB3\xD9d\xA5i\x9A\xA7\xD57\xBD\xFFm@0\x81L`X\xC1@0\x81L`X\xC1r\xF6l\xB55k\xD6TWW\xB4o\xDF>v\x87\xF6\xF5\x8C6lؾ}{NNNaaa\xDD\xF1\x8D7n۶-;;\xBBK\x97.{\xB7\xA7-\xB5\xFF\xCF!\xB04X\xE3ƍ[\xBCxq\xA3\xDF\xEAׯ\xDFW_}u\xF3\xCD7_p\xC1\x8F<\xF2\xC8>۷\xF3\xC1\x84\xCC\xF8\xD9g\x9F-:tڴiK\x97.\xAD;\xBE|\xF9\xF2aÆUTT\xAC^\xBDz\xAFv\xB4Ţ\x8E\xF8\xB6i\xF2W\x84\xCF<\xF3Liii\xFF\xFE\xFD\xCF;\xEF\xBCѣGO\x9B6\xAD\xFF\xFE\xDF\xFF\xFE\xF7۶m;eʔ\xFE\xFD\xFBz\xE8\xA1\xFBsG\xA3f,--=\xED\xB4\xD3\x8E\x9Fp\xC2        \xFD\xFA\xF5\xDB\xFB\xED\xD7\xD3̿z\xDC\xFF
\xE7\xD8?\x9A\xBC\x82UTTt\xEE\xB9\xE7f^\xE7\xE5\xE5u\xEAԩO\x9F>I\x92w\xDCq\xA3F\x8D\xDAO{\xF7\xEE\xF9\xE7\x9F_\xB5j\xD5\xCD7\xDF\xFCM\xEF\xB0_5X#G\x8Elt\xBCs\xE7\xCE\xF7\xDE{o\xE6uvv\xF6\xFB\xEF\xBF\xFF\xF2\xCB/p\xC0eee\xEDڵˌWTT̜9\xB3C\x87W\qEǎ\x93$\xA9\xAC\xAC|\xF6\xD9g7o\xDE|\xF8\xE1\x87_y啭[\xB7nt\xB1\xBA]\xA5\xA9\xA7M\x9B\xF6\xCE;\xEF\xA4iz\xFA\xE9\xA7\xF7\xED\xDB7I\x92\xA9S\xA7\xAE[\xB7\xEE\xC4O\xEC\xFB{\xEF\xBD\xF7\xC9'\x9Ft\xEAԩ\xFF\xFE-\x8F\xE8\xB5\xD7^{\xF3\xCD7kjj\x96-[\xD6\xF0\xBBӧO_\xB6lYIIɮ]\xBB^z饶m\xDB^q\xC5;v\xEC(//_\xB5j\xD5\PZZ\x9A$\xC9G}\xF4\xE6\x9Bo\xAE[\xB7\xAEK\x97.\x97\rIAA\xC1\xE2ŋ\xEF\xBF\xFF\xFE^\xBDz=\xFB\xEC\xB3]tQ~~\xFE\xACY\xB3\xDE~\xFB\xED-6t\xD0A\xE7\x9F\xFE\xD1G\xDD\xD4͛7o\xF6\xEC\xD9\xD7\sM\x93\xEF\xF0-\xB6WE8gΜ7\xDEx\xA3}\xFB\xF6\xA3F\x8D\xBA\xE1\x862\x83\x83:t\xE8\xC0\x81\xD34-))Y\xBF~\xFDڵkO=\xF5ԓO>\xF9ꫯ~\xF5\xD5WY\xD3\xE8bu\xB7\xDC\xE8*M\xCD8dȐ\xDF\xFC\xE67\xE7\x9Cs\xCE\xD9g\
x9F}뭷2$I\x92\xD2\xD2\xD2;S\xBC\xBC<I\x92\x92\x92\x923f\xDCu\xD7]-\xE1\xCE;\xEF\xBC\xE5\x96[\xCE=\xF7ܲ\xB2\xB2nݺ5\\xA0G\x8F#F\x8C\xB8\xF1\xC6'L\x98\x90\x9D\x9D\xFD\xE0\x83\x9Eu\xD6Y\x8F>\xFA\xE8\xB6m\xDB\xE6̙s\xE6\x99gnڴ)I\x92\xC7{\xAC\xB0\xB0𪫮z\xFD\xF5\xD7\x98$\xC9\xF2\xE5\xCBW\xACX\x91\x93\x93\x93\x9F\x9F\x9F\x95\x95\xF5\xE0\x834\xE8\xB4\xD3N+++۰a\xC3ĉ\x9B9\xA2\xFB\xEF\xBF\xFF\xDAk\xAF\xDDow\x83\xC1\xD2\xE8ڵ\xEB\xE5\x97_^o\xF0\x8C3\xCE<xp\xE6\xF5\x88#\xBAv횦ieeevv\xF6\xECٳ\xD34\xAD\xA9\xA9\xE9ܹ\xF3\xE8ѣ\xCB\xCB\xCB9䐝;w\xA6i\xBAz\xF5\xEA\xED۷7\xBAXݍ7\\xA5\xA9W\xAE\\x99\x97\x97\xF7\xEE\xBB\xEFfƧL\x99\x92\x97\x97\xB7r\xE5\xCA4M\xBBw\xEF\xFE\xF0\xC3g\xC6\xEF\xBB\xEF\xBE\xD2\xD2\xD2\xCC\xEBQ\xA3Fe\xD6]\xB1bEnn\xEE\xCB/\xBF\x9C\xE2\x89'9䐆\x87\xF6\xD9g\xDFv\xDBm\x99\xD7Æ-ˬ\x9Bٱ$I\xA6O\x9F\x9E\xA6\xE9\xFC\xF9\xF33\x83\xCF<\xF3LAAA\xEDy5jT\x9A\xA6\xABV\xAD\xCA\xCD\xCD-//ό\xAF_\xBF~\xFC\xF8\xF1MQ\x9A\xA6˖-\x9B2e
J\xE3o𭷇\x8Fi\xA8\xA7M\x9B6_~\xF9e\x92$\xF3\xE7\xCFߵk\xD7\xFC\xF9\xF33\xA3\x97\x9F\x9F\xBFlٲ\xF3\xCE;o˖-g\x9Cq\xC6-\xB7\xDCr\xD1Ep\xC0\x8D.Vw\x83={\xF6\xAC\xB7JS3Λ7\xAF\xAA\xAA\xEA\xF8\xE3\x8Fό\xF7\xEAի\xAA\xAA\xEA\x83>h\xC9\xFD\xE3\xB3gϮ\xAE\xAE>\xE5\x94SZ~\xA4\x99y\x93$9\xF0\xC0\x93$\xC9|YRR\xF2\xF1\xC7\xFE\xF9\xE7\xF3\xE7ϯ\xAA\xAA\xAA\xB7ִiӪ\xAB\xABO:\xE9\xA4̗\x9D:u\xBA\xF8⋛:\xA2$I\x8A\x8A\x8A\x8A\x8A\x8AZ\xBEW\xC0\xB7J\xF0\x83F7oޜ$IAAA~~~~~\xFE\x981c-TTT4cƌ\xE2\xE2Ⲳ\xB2\xEEݻ/Y\xB2\xA4\xD1\xC5\xEAn\xA7\xE1*M\xCD\xF8\xC5_$IR[`mڴ\xA9\xFCZ\xEB֭\xCB\xCA\xCA\xDA\xFB\xC7Pmڴ\xA9w\xEF\xDE#G\x8EܲeKNN#͚)\xA7\x82\x82\x82\xBD\x9C\xF8\x8Fs\xABV\xE6靽{\xF7...\xAELӴG\x8FO>\xF9\xE4_|ѯ_\xBF#F0\xA0\xE1bu5\\xA5\xA9\x9B\xEE3Wz6nܘy@\xE8ڵkk[\xB2\xB7i\x9A\xAE]\xBB\xF6\xE0\x83\xE3\xFCw/\xBC\xF0Bee\xE5ܹs\x93$ix\xF9*I\x92\xAE]\xBB&I\xB2|\xF9\xF2c\x8F=vo&\xFE#_\xC1\xEAӧ\xCFA4z\xF4躃\xCF=\xF7܌3\x92$\xE9СC\x9F&
gt;}rss]\xAC\xF9U\x9A\x99\xB1[\xB7n\x93'O\xCE|9a\xE2\xE2\xE2\xCC%:t\xE8P\xEFi\xA2\xF5\xF4\xED۷\xA0\xA0`̘1\xBBq\x84\x8DIӴ\xAA\xAAꫯ\xBEJ\xFE=\xB0rssw\xECؑ$\xC9)\xA7\x9CR\\\xFC\xC0\xECڵ\xAB%\x9C4i\xD2\xE0\xC1\x83[\xB80\xF0m\xF35W\xB0\xDE~\xFB\xED_|q\xFD\xFA\xF53g\xCE\xFC\xEDo\xFB\xF3\x9F\xFF\xFC\xC8#\x8FL\x92d\xF2\xE4ɟ}\xF6YUU\xD5\xF4\xE9\xD3;w\xEE<q\xE2ĭ[\xB7>\xFD\xF4ӗ]v\xD9\xD3O?=hРw\xDEy\xE7\x88#\x8E8\xE0\x80\xEE\xBF\xFF\xFEv\xED\xDA]v\xD9e\xF8ꫯ,X\xF0\xDCsϵnݺ\xE1bu\xFF\x88\xAF\xE1*\xCD\xCC\xF8\xF7\xBF\xFF\xFD\x86n\x987o^uu\xF5̙3Ǐ\x9F        \xB2k\xAF\xBD\xF6\xBA뮛9s\xE6\xD1G\xBDy\xF3\xE6\x95+W\xFE\xE3\xFF8\xF0\xC0'M\x9A\xB4q\xE3ơC\x87^\xFD\xF5\xFD\xEB_\xCB\xCAʦN\x9Dz\xC8!\x87dggoݺu\xECر?\xFD\xE9Ok\x{1E48A2}bɒ%[\xB6l\xA9\xA8\xA88\xF8\xE0\x83\xCB\xCB˷n\xDD\xFA裏\x96\x95\x95-><I\x92\xA7\x9F~z\xF0\xE0\xC1:t\xE8իW\xB7nݺv\xED\xBAs\xE7\xCE\xC7\xFC\xDAk\xAF\xED߿\xFFC=\xF4\xDE{\xEF\xDD~\xFB\xED\xCF?\xFF\xFC\xA0A\x83\x8E?\xF
E\xF8\x92\x92\x924MXPP\xD0\xCC97n\xDCw\xDCq\xD0A\xED\x8Bwا\xB2Ҧ5\xBE\xC7jjj*++srr;\xEC\xB0\xCCHUUՊ+ڶm[\xF7\x97q-\xAB\xAB\xD1U\x9A\xB1nݺ\xEC\xEC\xECz\xCF\xD3Z\xBF~}UUU\xF3\xFF^\xB0\xA6\xA6fժU\x85\x85\x85\x8D\xDE>\xD5B;w\xEE\\xB9re\x97.]\xF2\xF2\xF2j\xD34\xAD\xAC\xAC\xECرc\xED\xDDW\xABW\xAFm\xDBGQw\xB1\x86\xB6m۶f͚\xA6~
-|\xCB\xED\x93\xC0\xF8_| \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` XNS\xDF\x98U\xB6?\xF7\x83\xFF\xE3\xD2?}ӻ\xFB\x9C+X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81,+M\xD3oz\xFE\xAB\xB8\x82L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81
L`X\xC1@\xB0\x9C=[-M\xD3̋\xAC\xAC\xAC\xB8\x9D\xD936\xB5\x9D\xFDDQvw\xCF\xD34\xDD\xE3c\xFC\x9E\xA5\xBD9\xD8G\x9A\xAC\xDA\xA5\x8DZ\xB3fMuuuAAA\x87\xF6\xC1^\xED\xC37lذ}\xFB\x{19C71C}.]\xBA\xD4߸q\xE3\xB6m۲\xB3\xB3=\xF4н\xDB\xD3\xFDm\xB7\xCEL\x9A\xA6555\xD9\xD9\xD9\xE1se>0\xBB\xDB:{\xB6V]555\xADZ\xB5\xDAˍ@\xAC&kܸq\x9F|\xF2I\xE6u\xBD\x9F\x82\xA7\x9F~zUU\xD5\xCD7\xDF|\xC1<\xF2\xC8#\xFBa/\x93$\xF9\xF0\xC3Cf\\xBAt\xE9СC\xA7M\x9B\xB6t\xE9Һ㕕\x95Æ-\xAB\xA8\xA8X\xBDz\xF5^\xEDh\x92$\xFB\xE0\xB2J3l\xF9\x99I\xD3\xF4\x95W^y\xE5\x95W\x86\xBA\xBBeƛ\x99\xEB\x95W^\xF9\xEC\xB3Ϯ\xBF\xFE\xFA\xAF;\x94\x9Be\xB7\xD6jԋ/\xBE\xF8\xD1G\xDDy\xE7\x9D\xD9\xD9\xD9\x80o\x89&\xEF\xC1z\xF6\xD9gKKK\xFB\xF7\xEF\xDEy\xE7\x8D3f\xFA\xF4\xE9\xFD\xFB\xF7\xFF\xFE\xF7\xBF߶m۩S\xA7\xF6\xEF\xDF?_鉚\xB1\xB4\xB4\xF4\xB4\xD3Nk8~\xC2        '\xF4\xEB\xD7o$I\x9A\xA6\xCD_\xFF\x8B\xDD`\xCFL\x9A\xA6O<\xF1ğ\xFE\xF4\xA7\x87zhw'\xAAof\xAEg\x9F}v\xF8\xF0\xE1_\xB
B\xF5fi\xF9ZM\xF9\xF1\x8F|\xF4\xD1G0\xA0\xBA\xBAzo\xB6\x81\x9A\xBC\x82UTTt\xEE\xB9\xE7f^\xE7\xE5\xE5u\xEAԩO\x9F>I\x92w\xDCq\xA3F\x8D\xAA]\xAC\xEE\xCF\xE3\xDA\xEB-\xEB\xFD\xD8n8\xD8\xF0\xDAC\xA3\xAB\xEC\xC1\x8CYYY\xCD\xDF9T\xFBݦڢ\xE1`\xF3\xF3>\xFF\xFC\xF3\xABV\xAD\xBA\xF9曛Z\xB2QM\x9D\xA8\x86ܭ3SkΜ9\xBF\xFAկ.\\x98\xF9\xFD`K&\xAA\xDDl\xDD\xF1F\xE7\xCA\xD4\xDBΝ;=غ;Sok\xB5k\xB5\xF0\xFC4z\x98\x97^z\xE9\xF3\xCF??dȐ\xFB\xF6\xFC\xB8\x9A\xC07\xA8\xC9\xC09rd\xA3\xE3\x9D;w\xBE\xF7\xDE{3\xAF[\xB5j\xF5\xFE\xFB\xEFWTT\xE4\xE5啕\x95\xB5o\xDF>I\x924M+**f͚վ}\xFB+\xAE\xB8\xA2cǎI\x92TVV\x8E7n\xF3\xE6͇vؕW^٦M\x9B\x86\x8B\xD5\xFB1\xDCp\x95ff\x9C6mڻロ\xA6i߾}\xFB\xF6훕\x95\xF5ꫯ\xFE\xEB_\xFF:\xF1\xC4\x8F=\xF6\xD89s\xE6,^\xBC\xB8S\xA7N?\xFAя\xEAN\x9A\xA6\xAF\xBD\xF6\xDA[o\xBDUSS\xB3lٲ\x86\xC7;k֬O?\xFD\xB4gϞUUU\x93'OnݺuYYYAAAS\xF3.^\xBC\xF8\xFE\xFB\xEF?\xF1\xC4Ǎw\xD1E\xE5\xE7\xE7g\xB63cƌ\xA5K\x97\x96\x94\x94\xECڵkҤIx\xE0W\\xB1cǎ\
xF2\xF2\xF2U\xABV]p\xC1\xA5\xA5\xA5YYY}\xF4\xD1[o\xBD\xB5nݺ\xC2\xC2\xC2K.\xB9\xA4]\xBBv\xF56x\xC0̚5\xEB\x9Dw\xDEٰaC\xE7Ν\xCF?\xFF\xFC\xEF~\xF7\xBBM\x9D\x99\xBA\x87y\xCF=\xF70\xA0\xF6γ\xAF\x9D\xA8v\xCF\xEB\x8D7:עE\x8B\xE6ΝۦM\x9B/\xBC\xB0\xA9\xF7\xAE\xE1־\xF7\xBD\xEF\xFD\xF3\x9F\xFF̬\xD5\xC2\xF3\xD3\xD4\xC7\xE6ꫯ0`\xC0\xE0\xC1\x83;v\xEC8oٳg_s\xCD5\x80o\xCA^=\xA6a\xEEܹo\xBE\xF9f\xFB\xF6\xED\xFF\xFB\xDF\xDFp\xC3-I\x92\xA4i:x\xF0\xE0aÆ-80I\x92\x92\x92\x92\xF5\xEBׯ]\xBB\xF6\xD4SO=\xF9䓯\xBE\xFA\xEA\xD7^{m\xEDڵ\x8D.Vw\xCB-Wif\xC6!C\x86\xDCq\xC7\xE7\x9Cs\xCE\xD9g\x9F}\xDBm\xB7-2$M\xD3\xD2\xD2һ\xEE\xBAk\xE2ĉ\x99\xEDϜ9\xF3\xEE\xBB﮷\xFFi\x9A\xDEy睷\xDEz\xEB\xB9\xE7\x9E[VV֭[\xB7\x86\xC7XRR2lذ_\xFC\xE2o\xBC\xF1FAA\xC1#\x8F<r\xDBm\xB753oee\xE5ʕ+srr\xF2\xF3\xF3\xEB\xFE\x80\xEFѣ\xC7ȑ#o\xBA\xE9\xA6\xF2\xF2\xF2\xEC\xEC\xEC\xFF\xFB\xBF\xFF;묳\x86\xBE}\xFB\xF6\xB9s\xE7\x9Ey晛6mJ\x92d\xF4\xE8х\x85\x85W]u\xD5o\xBC\x9199u7\x98$Ƀ>x\xD5U
W\x9Dv\xDAieee7n|饗\x9A:3um߾\xFD\x95W^\xC9\\x83\xCCh~\xA2\xBA{\xDEp\xBC\xE1\\xC5\xC5ŋ/\xBE馛\x9Ay\xEFn\x{DA23}\x8E\xAA]\xAB%秙\x8FMii\xE9\x8E;***\x92$\xF9\xDD\xEF~w\xDDuY\xB3\xA6\xE1\xBB        \xFBI\xDA]\xBBv\xBD\xFC\xF2\xCB\xEB-\x9Eq\xC6\x83μ1bDQQQ\x9A\xA6˗/oժլY\xB3jjjv\xED\xDAչs\xE7\xC7{\xAC\xBC\xBC\xFC\xE0\x83\xAE\xAE\xAE\xAE\xA9\xA9Y\xBDz\xF5\xF6\xED\xDB]\xAC\xEE\xC6\xAE\xD2Ԍ+V\xAC\xC8\xCD\xCD\xCD\FJ\xD3tʔ)\xB9\xB9\xB9+V\xACHӴ{\xF7\xEE?\xFCpf\xFC\xBE\xFB\xEE+--ͼ5jT]31\x94\x93\x93\xF3\xF2\xCB/gƟx\xE2\x89C9\xA4\xE1\xE1ם\xF7\x818\xE6\x98c\x9A\x9F\xB7k\xA3F\x8Dj\xB8\x9DL\x87e^6,\xB3\xFFi\x9Afn\xAB\x9F6mZ\x9A\xA6\xF3\xE7ϯ\xA9\xA9\xA9\xA9\xA9y\xFA\xE9\xA7۶m[{\xFE3̤Iyyyf|\xFD\xFA\xF5\xE3Ǐo\xEA\xCC\xD45gΜ$I***jG\x9A\x9F\xA8\x9E\xBA\xE3M\xCD5f̘\xC3;,m\xE2\xBDkjk\xB5k\xB5\xE4\xFC4\xFF\xB1i\xDD]wݕ\xA6\xE9\xB2e˦L\x99\xD2\xF0(`\xBF\xD9\xC3\xE7`\xD5ӦM\x9B\xAF\xBE\xFA*I\x92\xD4\xD4\xD4,X\xB0 \xF3\xEB\xB6\xFC\xFC\xFC\xE5˗\x9F\xFE\
xF9[\xB7n\xFD\xC1~p\xCB-\xB7d~\xC9\xD5\xE8bu7سg\xCFz\xAB45\xE3|P]]}\xFC\xF1\xC7g\xC6{\xF5\xEAU]]\xFD\xE1\x87v\xD8a_\xBB\xDB\xEF\xBD\xF7\xDEΝ;O9唖i۶m\xF7~\xDE$I
-
-
-2\xDBI\x92\xE4\xC0L\x92$\xF3eII\xC9\xC7\xFC\xF9\xE7\x9F/X\xB0\xA0\xE1]\xDBӧO߹s\xE7I'\x9D\x94\xF9\xB2S\xA7N_|q\xBDej\xCFL]\x99+=\xAD[\xB7\xAEi~\xA2jt\xAE\xAF}\xEFZ\xA2\xD1\xF3\xD3\xFCǦM\x9B6\x99\xC3,*****ڳ#\x80\xC1Orys\x92$\xF9\xF9\xF9\xF9\xF9\xF9cƌ4hPQQь3\x8A\x8B\x8B\xCB\xCAʺw\xEF\xBEdɒF\xAB\xBB\x9D\x86\xAB45\xE3_|\x91$I\xEDO\xF1\xCC\xED>\x99\xC1\xAF\xB5nݺ\xAC\xAC\xACz\xB7+\xB5\xD0\xDE\xCC۔M\x9B6\xF5\xEE\xDD{\xE4ȑ[\xB6l\xC9\xC9i\xA4}\xBF\xFC\xF2\xCB$I2w\x80\xED\x96]\xBBv%IR\xFB\xF8\xAB\xAF\x9Dho\xB4\xFC\xBD\xDB]\xCDlrss3\x87        ߸\xE0\xAE\x85\x85\x85I\x92\xF4\xEEݻ\xB8\xB8\xB8v0M\xD3=z<\xF9\xE4\x93_|\xF1E\xBF~\xFDF\x8C1`\xC0\x80\x86\x8B\xD5\xD5p\x95\xA6n\xBA\xCF\\xABظqc\xE6\xF6\xED\xCC?-\xBC\x80QXX\x98\xA6\xE9ڵk>\xF8\xE0\xDD;ν\x9B\xB7)/\xBC\xF0Bee\xE5ܹs\x93$\xA9\xAA\xAAj\xB8@]\x93$Y\xBE|\xF9\xB1\xC7\xBB[[\xCEDd\xA6\xCFZ2\xD1\xDEh\xF9{\xB7\xBB\xFDt\xD5ڱcǞ\xB52\x84\xBE\x82էO\x9F\x83:h\xF4\xE8\xD1u\x9F{\xEE\xB93f$IҡC\x8
7>}\xFA\xE4\xE6\xE66\xBAX\xF3\xAB43c\xB7n\xDD&O\x9E\x9C\xF9r        \xC5\xC5ř\xBB\xB9;t\xE8P\xEFi\xA2\xF5\xF4\xED۷\xA0\xA0`̘1\xBBq\x84-\x98777wǎ{\xB0\xCD4M\xAB\xAA\xAA2\xBF\xAB\xDB=\xB5<\xE5\x94S\x8A\x8B\x8Bx\xE0\x81ݽT\x93\xF9K\xC3\xDA\xFBͿv\xA2zv눾\xF6\xBD\xDB\xE3\xF3\xD3\xCCǦ\xBA\xBAzÆ-\xC7sL\x92$\x93&M<x\xB0\xABY|\x83\xB2\xEF\xB9\xE7\x9Ef\xBE\xFD\xF6\xDBo\x8F5\xEA\xED\xB7\xDFi\xD3ڵk\x8F<\xF2\xC8\xCCc&O\x9E<v\xEC\xD8M\x9B6w\xDCq_~\xF9\xE5c\x8F=\xF6\xF1\xC7w\xEB֭w\xEF\xDE'\x9Ex\xE2}\xF7\xDD7~\xFC\xF8\x8A\x8A\x8A        &\xF4\xEE\xDD{\xEB֭?\xFB\xD9\xCFV\xACX1q\xE2\xC4\xF7\xDF\xFF\xD1G\xFD\xCEw\xBE\xD3p\xB1\xBA\xFF}eŊ\xF5Vy\xF7\xDDw\x9D\xB1W\xAF^}\xFB\xF6\xBD\xE7\x9E{,X0a\x97^zi\xECر\x87~x\x92$\xADZ\xB5\xBA\xE7\x9E{\xCA\xCB\xCB_\xFD\xF5%K\x96,Z\xB4訣\x8E\xAA\xAC\xAC|ꩧ-Z\x94\x97\x97w\xF2\xC9'\xF7\xE8\xD1\xE3\xEE\xBB\xEF\x9E8q\xE2\xA4I\x93>\xFB쳏>\x{2A28A28}gϞ\xB5{2u\xEAԿ\xFD\xEDo\x99y\xB7n\xDD:f̘\x85u\xD
4Q={\xF6ljޅ>\xFE\xF8\xE3s\xE6\xCC)..\xAE},gEE\xC5SO=\xB5q\xE3Ƣ\xA2\xA2-[\xB6<\xFE\xF8\xE3.lݺuII\xC9\xF0\xE1\xC3_\xFD\x{17CF3C}\x9F\xFC\xE4'\xE3Ǐ\xFF\xF3\x9F\xFF\xFC\xD2K/mڴ\xE9\xBD\xF7\xDE+,,,--\xAD\xDD\xE0\xD1G}饗\xFE\xE19r\xE4o\xBC1nܸ\xAC\xAC\xAC\xE5˗7zfz\xF4\xE8Q{mڴ\x990aB۶m\xF8\xC3&Ir\xF8\xE1\x87?\xF9\xE4\x93\xCDLTw\xCF\xEB\xD1
_}\xF5Նs\xADY\xB3\xE6\xC9'\x9F\\xB8pa^^^ǎ\xAF\xBF\xFE\xFA\xBA\xEF]\xBBv\xED\xEA~\xA8j\xB7\xF6駟N\x9D:5\xB3֪U\xABƍ\xD7\xFC\xF99\xE3\x8C3\xFA\xF6\xED\xDB\xE8\xC7fy\xFC\xE3G\x8Cѱc\xC7{\xEF\xBD\xF7/\xF9ˍ7ޘ\xB9y\xF6\xBF\xFAO\xADQSS\x93\xF9\xBD\xDA;\xBE\xAB\xAA\xAAV\xACXѶmۺ\xBF\x8Ck\xB8X]\x8D\xAEҌu\xEB\xD6eggg\xFA\xAF\xD6\xFA\xF5뫪\xAA\xEA\xFD\xDB\xC1\x86{\xBBjժ\xC2\xC2\xC2=\xBB\xA9\xE1\xBCi\x9AVVVv\xEC\xD8qn\x96ڹs\xE7ʕ+\xBBt钗\x97\xD7\xCCW\xAF^\xBDm۶#\x8E8\xA2\xEEb\xCD;v\xEC\xBD\xF7hѢ̣Z8ўQ\xF3\xEF\xDDޜ\x9F\xA4\x89\x8F\xCD\xED\xB7߾hѢ^x!I\x92m۶\xADY\xB3\xA6\xA9\xDF>\xC0~
\xB0O\x8Bo\xA7\x81\x9E|\xF2ɿ\xFC\xE5/\xBF\xE9        \xB6p\xE1\xC2/\xBC\xF0\xD5W_m\xE1\x9Fp\xC0\xBE|\xDFfcǎ]\xBE|y3\xFF\xE9\xF9?\xD1\xECٳ\xFD\xEB_\xBF\xFC\xF2\xCB\xEA
-\x80oW\xB0\xFE\xE7,Y\xB2䨣\x8E\xFA\xA6\xF7"\xCCҥK\x8F8\xE2\x88\xDA'P\xC0\xB7\x81\xC0\xE6W\x84\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81,\xA7\xA9o\xCC*۟\xFB\xC1\xFF\x88q韾\xE9]\x80}\xCE,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98
\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0\x96\x95\xA6\xE97\xBD\xFFU\\xC1&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\x
C0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC
0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0
&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80`\xFFE@G\xC6\xCE\xE2\xE2*IEND\xAEB`\x82
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectiononbackgroundsexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 130x17
- text run at (0,0) width 130: "These should match:"
- RenderBlock (floating) {DIV} at (0,34) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,34) size 784x104
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (200,86) size 4x17
- text run at (200,86) width 4: " "
- RenderBR {BR} at (0,0) size 0x0
- RenderBlock {P} at (0,154) size 784x18
- RenderText {#text} at (0,0) size 236x17
- text run at (0,0) width 236: "These should not match (at this time):"
- RenderBlock (floating) {DIV} at (0,188) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,188) size 784x100
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectiononboxshadowexpectedpng"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.png (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.png        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.png        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,167 +0,0 @@
</span><del>-\x89PNG
-
--IHDR X')tEXtchecksuma59f7f07bc17e321a3e9c2040f5bfe2e\xB3.\xB3\x97bKGD\xFF\xFF\xFF\xA0\xBD\xA7\x93 IDATx\x9C\xEC\xDDy\xB8՝\xFF\xF1\xEF\xA9\xBC\x91h@% h\xC4GQPw\x8Dq\xA2-&Q1Ƹ\x8C\xC1\x91\x89y\xA2\xF9\xB3<\x8FQg\xE2D\xD1\xC1\xF5\xC9\xC4I\x9E\x98E\x89\xA3q$1c\xE2DB\xE2\xE3\x8ErQ\\xB9t\x9D\xDF\xA7ΩSKW\xF7\xBD\xF7\xB0(\xEF\xD7\xE3s\xE9\xAE\xAA\xEE\xDC\xFB\xC9\xF7|\xEB\x94\xD2Z6\xF6|\xD4\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xF5\xEA\xDE˖/_\xDE\xD9\xD9\xD9\xDE\xD5V[\xF5p\xBA\xBD\xAAU\xABV\xBD\xF3\xCE;\xB5Zm\xBB\xED\xB6\xEB\xE16T\xB5\xA7o\xBC\xF1ƻ\xEF\xBE۫W\xAF!C\x86\xF8\xCB7\xCC^\xF8\xBA\xBAG?\xEB
-\x8D\x8EO(K\x97.]\xB4h\xD1رc\xFB\xF7\xEF_|t\xC3\xEC\xE3G؆\xFCoV_\xC8(\xA5Z_\xED\x92%KDdРA}\xFB\xF6-\xB6\xAD\x9B~\xF4\xD0\xFA\xFEU`>\xA0\xFE\xFD\xFB8p\x93ڰR-3\x9E{\xEE\xB9҇9\xE4\x90>\xF8\xE0\xDCsϝ8q\xE2\x95W^\xD9\xC3-X\xB0`A\xF7V\xB5x\xF1⫮\xBAj\xF6\xECٯ\xBE\xFAj\xB7\xA1B\xB77/gѢEӦM\x9B3g\xCEK/\xBD\xE4/\xDF0{\xE1\xEB\xEA\x85:\xD5\x9F \xAE\xBB\xEE\xBA\xF9\xF3\xE7+\xA5\x8E>\xFA\xE8N8\xA1\xF8\x84-\xB3\x8Fa\xF2k\xBCY}!\xAF\xB8\xE2\x8A.\xADyΜ9g\x9Ey\xE6u\xD7]w\xC6g\x84\xD9֏\x9C-\xF6\xA7m\xF3T\xF1\xAB\xE0O\xFAӢE\x8B\xCE>\xFB재\xDF\xFCO\xE3s\x9F\xFBܴi\xD3Bm\xD8\xFA\xD3p\x88\xF0\x96[n7nܑGy\xCC1\xC7\xDCp\xC3-s\xE6\xCC9\xF2\xC8#=\xF4\xD0\xFE\xFD\xFB\xDFs\xCF=Gy\xE4\xF6\xDBod\xBA\xBD\xAA1c\xC6r\xC8!A\xB6\xA1B\xA8=7n܁X\\xBE\x9E\xF6\xA2\xE2\x93\xAD\xEF\x91YI\xC0ϺB\xA3\xE3\xD3s\xEF\xBE\xFB\xEEw\xBF\xFB/\xBE\xF8\xCA+\xAF=zt\xEE\xD1 \xFB\xC8=\xC3~\x8DO\xBE\x90MM\x9A4\xA9\xAD\xAD\xAD\xAB\xAF\xF2\xF8G\xFE˼^\xFF\xB4}\
xE4\x8F^S\xBF
-n\xB9喫\xAF\xBE\xDA\xDD\xEDޱ\xDA\xC4CN\xC3
-ְa\xC3&L\x98`n\xF7\xE9\xD3gРA\xE3Ǐ\x91\xDDv\xDB\xED\xDAk\xAF\xDD@[\x87n\xB9\xE3\x8E;\x96-[v\xEE\xB9\xE7n\xF4\x95l
--Z\xB4f͚\xF6\xF6\xF6\x81\xE6\xAA\xCA\xA8MP\xA3\xE3\xF9\x919\xCE\xEB\xFB)"Qԅ\xE6Z\xFFM?2\xB9\xC2\xFA\xFBӶ9\xBD\x9E\xB8馛֭[gno&Ǫa\xC0\xBA\xE6\x9AkJ\x97o\xB3\xCD6?\xFC\xE1\xCD\xEDZ\xAD6\xFE\xFCY\xB3fm\xB1\xC5\x93'O0`\x80Y>{\xF6\xECGyd\xE0\xC0\x81\xA7\x9Ez\xEA\xD6[o\x9D[CGGǭ\xB7z\xF5\xEA\xA1C\x87\x9Ev\xDAi[n\xB9e\xA3U\xFD\xF3\x9F\xFF\xBC\xFF\xFE\xFBW\xAE\\xB9\xDDv\xDB}\xE9K_joo7k\xF8\xCB_\xFEr\xFF\xFD\xF7\xC7q\xFC\xF2\xCB/\xFBk\x9E3g\xCE\xDF\xFE\xF67\xAD\xF5\xC1|\xD0A\x89\xC8o\xFB\xDB8\x8EEd\xF7\xDDw\xDFc\x8F=\xDC3\x97.]\xFA\xE0\x83\x8AȞ{\xEE\xB9\xDBn\xBBuo\xF3J\xDF\xF1\xCF\xFE\xF3ʕ+\xF7\xDAk\xAFQ\xA3F=\xFE\xF8\xE3\xCF?\xFF\xFC\xA0A\x83\x8E<\xF2\xC8\xE2\x91l\xB4\xC6\xC3?\xFC\xF2\xCB/\x8F=\xBA^\xAF\xFF\xE1\xE8߿\xFF\xA9\xA7\x9E\xFA\xDE{\xEF͜9sٲe'N7n\\xE9!z\xEE\xB9\xE7.\xBB첱c\xC7\xDEz뭟\xFF\xFC\xE7\xDB\xDA\xDA}\xF4\xD1|\xF0\x8D7\xDE\xD8v\xDBm\x8F=\xF6؝wb\x8F\x8C\xDCJ\xBA\xFDY\x8BH\xE9\xBB\x8F[Q\xF19=\xF4PGGǞ{\xEE9x\x
F0\xE0[o\xBD\xF5_\xF8B\xEE\xFF\xCA_\xB2jժY\xB3f\x89\xC8w\xDCѷoߓN:\xC9u\xB4\xD9\xC7\xE2\xD1.n\xC3ܹs_z饝v\xDA\xE9\x89'\x9Ex\xF9\xE5\x97ǎ{\xC2        '\xFF\x96~\xF1x\xE0\x81?\xFF\xF9\xCF"2x\xF0\xE0'\x9F|\xF2\xA7?\xFDi\xC5\xAC\xF8e(=b\xD5Yq%\x8F<\xF2ȢE\x8B\xF6\xDCsϵk\xD7\xDE}\xF7\xDD}\xFB\xF6\x9D<y\xB2\xEB\xAA\xFEW\xBF\xB6x\xAC\x8Adz\x95\xEB\xAB_\xFD\xAA\xEB\x98\xE9\xE1\xF2\xA0\x83:\xF8\xE0\x83\x8B\xAF*\xDD\xDA-\xF3\x85\x9C={v\x9F>}\xCE:\xEB\xAC\xF6\xF6v\xF3\xE4\xA6\xFB\xF8\xD6[o]\xFD\xF5\xAF\xBF\xFE\xFA\xDE{\xEF}\xEC\xB1\xC7\xB7\xC7\xED\xA6\xFF\xA6\xBB\xEF\xBE{\xD3/s\x8B\xBF\x97|\xF8\x8B\xBD\xD5V[\x9Dv\xDAi\xA5\x87\xC5\xE8ꟶ\xBF]\xB9\x8Fo\x8B-\xB6x\xF8\xE1\x87K\x8C9r\xFE\xFC\xF9\xEC\xB2\xCB.\xF3\xE6\xCD+=bC\x869\xF9\xE4\x93K\x8F\xD8v\xDBm\xF7\xA7?\xFDi\x83\xFD*x\xE6\x99g\xE6ϟ߷o߉'\xFA\xC7\xEA\xB8\xE3\x8E[\xB9req\xAB\x8FƦ\xAA\xF5\xE8,\xC2y\xF3\xE6\xDDw\xDF}[m\xB5յ\xD7^\xFB\xB5\xAF}\xCD,<\xFF\xFC\xF3\xA7M\x9Bv\xD2I'i\xADG\x8F
\xFD\xFA\xEB\xAF\xFB/Y\xB1b\xC5\xB0\xDF~\xFB\x9Dy\xE6\x99\xF7\xDE{\xEF\xF2\xE5\xCB+Vu\xFD\xF5\xD72\xE4\x8C3\xCE\xF8\xEB_\xFFz\xD2I'\x99\x85]t\xD1ԩS'L\x980y\xF2\xE4w\xDCѭ\xF9\x92K.\xB9\xF0\xC2\x8F>\xFA\xE8#\x8E8\xE2\xDF\xF8\xC6%\x97\""\xE3Ǐ\x9F<y\xF2?\xFF\xF9\xCFQ\xA3F\x89Ȃ~\xF3\x9B߈\xC8v\xDBmW\xAF\xFB\xEE\xBB\xCF\xFCz\xED\xDE敾\xE3\xB8q\xE3.\xBA袙3g\x8A\xC8\xE8ѣ\xE7Ν\xFB\xDD\xEF~\xB7x\xE8텳\xC7{L\x9F>\xFD\x9Csι뮻j\xB5\xDA\xE5\x97_\xFE\xE9O\xFAꫯ~\xE7\x9Dw\xE6͛w\xF8ᇿ\xF5\xD6[\xA5\x87h\xF1\xE2\xC5K\x96,\xE9իW[[\x9BR\xEA\xF2\xCB/?\xFD\xF4\xD3<\xF0\xC0ɓ'\xBF\xF1\xC6\xBF\xFF\xFD\xEF+\xF6\xC8ɭ\xA4{\x9F\xB5\x88\x94\xBE{\xE9q\xCB)}Θ1c\xA6M\x9B\xF6\xF5\xAF\xFD\xBC\xF3λ\xF9\xE6\x9BW\xACX\xD1\xF4%˗/_\xBBv\xAD\x88l\xB1\xC5\xB9\xA1\x93 \xFB\x98[I\xE96\xEC\xBE\xFB\xEE_|\xF1~\xF0\x83m\xB6\xD9f\xE4ȑ\xDF\xFC\xE67\x8B\xFF\xBF\xAD\xF4\x8Bw\xF1\xC5\xEDk_\xFB\xECg?\xFBկ~u\xF9\xF2\xE5\xE6KU\xF1+~\x8AG\xAC\xE9GV\\xC9\xE8ѣ\xA7
M\x9Bv\xDEy\xE7\xFD\xF5\xAFmoo\xBF\xE2\x8A+\xCE;\xEF<\xF3\xE4\xA6_\xE3\x8Aז\xAB\xE2\x87R\xFDa-0 \xD4:\xE2\x88#\xCE;\xEF\xBCK.\xB9\xA48x\xD1\xED/\xA4Ym\xBF\x90\xD7]w]\xEB\xFB("s\xE7\xCE:t\xE8;\xEC0eʔ)S\xA6\xB7\xC7\xED\xA6\xFF\xA6M\xBF\xCC-\xFE^r6\xFCۼ\xBC\x{130D2E}\xC5_\xFE\xF7$\xF7\xF1]z饛¯\x82\xFB\xD1\xBB\xE0\x826䯂\x91#G>\xFB\xEC\xB3\xE7\x9CsN\xEEX\xBD\xF6\xDAk\xA5s+\x8EF\xA3\xC8l\xF0駟\xBE\xC1Cs\xBAÇ?\xE5\x94Sr;\xEC\xB0\xF3\xCF?\xDFܞ>}\xFA\xF0\xE1õ\xD6\xB5Z\xED\xB1\xC7\xD3Z\xC7q\xBC\xCD6\xDB\xDCp\xC3-\xFE\xABfΜ9x\xF0\xE0u\xEB\xD6i\xAD_}\xF5\xD5w\xDF}\xB7Ѫ\xB4\xD6.47n\xB9\xE5\x96\xF6\xF6v\xAD\xF5\x92%Kz\xF7\xEE=k\xD6,\xB3\xFC\xA7?\xFD\xE9\xE0\xC1\x83\xB5\xD6K\x97.\xEDӧ\xCFC=d\x96\xDFs\xCF=}\xFA\xF4Y\xBAt\xA9\xD6\xFA+_\xF9\xCA\xE1\x87n\x96\x9Fu\xD6Y#F\x8C\x88\xE3Xk\xFD\xEDo\xDBlg\xF76\xAF\xE2G\x8Du\xC5W\x98\xE5\x97^z\xE9\xB8q\xE3\xCC\xEDk\xAF\xBDּ\xB6\xD1^\xE4\x98߃\xE6\xF6UW]\xE5\x8B\xE9\xD1{\xF8\xE1\x
87K\x91\xD6z\xF8\xF0\xE1\xD7^{\xAD\xD6zٲe\xBD{\xF7\x9E9s\xA6Y\xFE\xFA\xEB\xAF\xDFv\xDBm\xDC\xE7V\xD2\xE8\xF9M?\xEB\xD2w\xAF8n\xEE\xF8T<\xC7mIGGNJ+\xDC{U\xBC\xC4\xFC?\x8FU\xABV\xAD\x8F}\xF4WR\xB1-cƌ\xB9\xF4\xD2K\xCD\xF2\xDBn\xBB\xADW\xAF^K\x96,\xF1WR\xFC\xE2utt\xF4\xEE\xDD{\xF6\xEC\xD9\xE6        \xFE\x97\xA4\xD1\xAC\xF4\xCB\xE0\xB1'\x9Ex\xA2\xE9\xEET\xAFDk\xFD\xA3\xFDhԨQ\xBA\xE5\xAFq\xE9k+\x8E\x95\xFF\xA1\x94g\xBD~\xBE\x90\xE6ׂ\xD9\xF3\xE9\xF9B\xFA\xAB\xED\xC6Ҽ\xDC\xECcǭ|!?\xF6\xB1\x8F\xFD\xFC\xE7?7\xB7gΜ\xA9\x94z\xEE\xB9\xE7*v\xD3\xD3V\xBḘ\xFC^r6\x9D/v\xA9\xFEi3\xD3_[+\xBF
-L\xB4\xD5]\xFCUP\xFA?4s\xC4\xCCfl\xF4_\xFC\xE3\x8B[\xE8\xBB\xF1\xC6w\xD8a\x87ܱ*\xFD\x9B[q4\xCC6|\xEB[\xDF\xCA}@\xA5\xBC\xBECSݜ\xA6!\xA7o߾\xEF\xBF\xFF\xBE\x88,\\xB8\xB0^\xAF/\\xB8Мz\xD3\xD6֖+\xCA\xED\xB9\xE7\x9Ek֬9\xEC\xB0æN\x9DjꨍV%"\xA3G\x8F~\xFA\xE9\xA7_y啅\x9A\xFF\xDB\xF7\xD8c\x8Fuvv\xEE\xBF\xFF\xFE\xB9W=\xF9\xE4\x93k\xDD}\xF7\xDD\xCDݱcǮ]\xBBv\xC1\x82\xDBo\xBF\xFD\xA9\xA7\x9E:ae˖-4詧\x9EZ\xB4hу>x衇\xFE\xFD\xEF\xFF\xF1\x8F\x9C[O\xEB\x9BW\xF1\x8EMW\xA3\xBD\xA8\xD0\xDE\xDE\xEEK\xBF~\xFDD\xC4\xDC-"ߜ9s:;;\xF7\xDDw_swРA\xC5S\x96\xFCފ\xD6?\xEB\xD2w\xBF\xFB\xB7V\x8E\xEDСC\xFD\xF7\xEA\xC9\xC7ѓ}\xEC\xC66\xEC\xBF\xFF\xFE\xEB֭[\xB8p\xE1;\xEC\xE0\xBFx\xDD\xF8\x92T\x86\xDA\xCA\xEET\xAFDD\xFA\xF7\xEFoN7\xB6н6\xE0絞\xBE\x90\xFE\xA7\xF3!\xFDB\x8Aȡ\x87\xAA\xB5\xFE\xC7?\xFEѧO\x9F\xA6\xBBٍ\xEDo\xF4{\xC9\xD9t\xBE\xD8\xDDï\x82\xF5\xF4\xAB\xC0\xA9\xFE\x9B\xBB\x89\x86\xA6O4\xBAz\xF5jioookkkkk\xBB\xF1\xC6O?\xFDt\xFF        Æ
-\x9B;w\xEEȑ#'O\x9E<jԨ^x\xA1Ѫ\xDEz뭽\xF7\xDE\xFB\x9Ak\xAEY\xB3fM\xAF^I\\xB9r\xA5R\xAA8Cɛo\xBE)"\xEE\xE8\x9B9`\xCC\xC2#\x8E8b\xF0\xE0\xC13f\xCC\xF8\xDD\xEF~w\xCE9\xE7|\xF0\xC17\xDF|\xF3\xE3\x8F?^\xFAmh}\xF3*ޱ\xA9F{\xD1U\xA5\x87\xC8g\xBEyn(:\xAC\xA6\x9Fu黷rܺql{\xF2qTh\xBA\x8F\xDD\xD8s@֬Y\xE3/,~\xF1L\xC5\xDE\xFC\xD1jE\xD3/C+\xBB\xD3\xCAJ\x9C\x9E|\x8D\xD7\xC7\xE7\xC5\xB2\xC8\xF4\xF7|\xF0\xC1]ݞPۿ\x89|\xB1{\x8E_z\xF2\xAB\xA0\xFAon7\xC3\xEAի7X`h*L\xCB1\x93\xF2\xED\xBD\xF7\xDE#G\x8E,}\x82\xD6z\x8F=\xF6\xB8\xF9\xE6\x9B\xDF|\xF3\xCDC9d\xFA\xF4\xE9\x8DZ\xEF\xBC\xF3NS\xC9\x9F\x87\xA2\xB5^\xB1b\xC5\xC7?\xFEq\xFF\xC9Æ-\x91U\xABV\x999\xC4L3\x84YX\xABվ\xFC\xE5/\xFF\xE67\xBF1b\xC4/~\xF1\x8B\xF7\xDE{\xEF\xFC\xF3\xCF\xEF߿\xBF\xEE\xF6\xE6U\xBCcS\x8D\xF6\xA2\xABJ\x91o\xF8\xF0\xE1"\xB2x\xF1\xE2]wݵ'oT\xAA\xE9g]\xFA\xEE\xAD\xB7n۞|\x9A\xEEc7\xB6\xC1\x8C\xA4\x98\x83\xE3\xBFxGu\x94\x88,[\xB6\xEC\x9F\xF8D+\x9B\xDA\xF4\xCB\xD0\xCAm\xDD\xF
E\xAF\x8Fϫ\x87_H\xF3\xF2\xE0_Ȋ\xD5vC\x97\xBE\x90"\xB2t\xE9R1b\x84\xF94[ߞP\xD0&\xF2\xC5\xEE\xB9M\xE1WA\x8B\xC7#\xFE*<xp+[\xE8\xAB\xFE\x9B۽\xC0\xD0\xD9ٙ۰\xF5\x9A
-\\xC1?~\xFC\xB6\xDBn{\xC3-74z\xC2\xED\xB7\xDF>w\xEE\8p\xE0\xF8\xF1\xE3{\xF7\xEE\xDD\xE8\x99Z\xEB\xB5k\xD7~\xF0\xC1\xE2}\xC0tP{{\xFB\x8D7\xDEX|\xDFw\xDC\xF1\x8F\xFC\xA3\xB9{\xD7]w\x8D9Ҝ|+"\xA7\x9Dv\xDA\xE3\x8F?>p\xE0\xC0-\xB7\xDCrҤI\x9D\x9D\x9Ds\xE7\xCE\xDDe\x97]z\xB2y\xEF8p\xE0\xC0\xEA\xC9        \xEDEW\x95"\xE9ݻ\xF7{\xEF\xBD'"\xFB\xEF\xBF\xFFȑ#\xF4\xA3\xD5\xEB\xF5\xAE\xAEܭ\xA4\x91\xA6\x9Fu\xE9\xBBWR\xAD?\xA7\xB81]}\x89\x84\xD8G%-nÝw뮻\xEE\xB3\xCF>\xFE\xC2\xE2\xEF\x90C0`\xC0M7\xDDT|\xC7\xD2/X\xA3/C\x97v\xA7\x95\x958=\xF9W\xABF
-_Hi\xED\xE9\x9B1c\xC6n\xBB\xED\xB6\xEF\xBE\xFB\xB6x\xC0\xBB\xFAenj\xE3~\xB1\xAF\xB9\xE6\x9AF\x8F\xBB\x8A_\xBA\xF1\xAB\xC0\xAB꿹\xDD\xE6F\xF5\x86\x85
-\xCDU\xB7h=\xF0\xC0&\xBE\xED\xBC\xF3\xCE\xDF\xFB\xDE\xF7^|\xF1E\xB3\xFC\xEE\xBB\xEF6l\xD80gΜg\x9F}\xF6\xB8\xE3\x8E\xEBׯ߯\xFDk\xD3/\xB6\xFD\xF6\xDB\xEF\xB7\xDF~'\x9Cp\xC2)\xA7\x9C\xB2h\xD1"\x85\xB3g\xCF1b\xC4\0u\xEA\xD4\xF1\xE3\xC7wtt4Z\xD5k\xAF\xBD6lذ]w\xDD\xF5裏>\xFB\xEC\xB3k\xB5\xDAO~\xF2\xAD\xF5\xED\xB7߾\xF5\xD6[|\xF0\xC1\xC7\xFC\xA4I\x93\xFA\xF5\xEB\xF7\xCB_\xFERk\xFD裏\x8E7n\xEAԩS\xA6L\xD9k\xAF\xBD\xE6͛\xE7\xBF\xEF\x9E{\xEE\xF9\xC0\x98\xDB_\xF9\xCAW\xA6M\x9BV\xBA\xBF\xADo^\xC5;\xFE\xCF\xFF\xFCO\xAF^\xBD\xF6\xD9g\x9F/}\xE9K\x9F\xFD\xECg\x87r\xC7w̞={        \xB8\xF2\xCA+\xDF~\xFB\xEDF{\xE1̚5k\xC7w?~\xFC\xACY\xB3\x9Ex≉'\xF6\xEB\xD7磌\xAEZ\xBDz\xB59\xDFᬳ\xCEz\xFA\xE9\xA7K\xD19眳\xCD6\xDBL\x9A4\xE9\xF1\xC7\xF2\xC9'nj3jԨ\xE3\x8F?\xFE\x8B_\xFC\xE2\x8C3*\xF6\xC8\xE7Vr饗v\xEF\xB3\xD6Z߽\xD1q\xCB\x9F\xD2\xE7\x98-\xDF\xFF\xFD\xCDzrJ_\xF2\xE2\x8B/\x9Ez\xEA\xA9"\xF2\xCDo~\xF3\xDE{\xEF]\xFB\xE8\xEDF_\x891c\xC6x\xE0\
x81\x97\rɔ)Sv\xDF}\xF7\xBF\xFF\xFD\xEFM\xBFxZ\xEB;\xEF\xBC\xD3|IN8ᄉ'\xBA\xBE\xD1\xD2/X\xE9\xFF^\x8AG\xACzwJWr\xCF=\xF7\xB8\x83\xF3\xD4SOs\xCC10+l\xFA5\xAExm\xA3c\xE5Ϧ\xD63\xCF<\xE3>\xAC8\x8E{\xF2\x85<\xF7\xDCsݖ\xC4q\xEA鯶_ȇz\xC8}!\xF5\xAB_\xB5\xF2\x85<\xF6\xD8c?\xF3\x99\xCF\x\xE1\x85'\x9F|\xF2^{\xED\xF5\xD4SO5\xDAӽ\xEB\xF0\xA6_\xE6V~/\xAD\\xB9r#~\xB1\x8F?\xFExwX>\xF9\xC9O\xEE\xB4\xD3NŏF\xFE\xB4\xBD\xF0\xC2fy\x97\xFE\xB4\xE5\x9A\xDC[\xFCUp\xC0\x84\xFDU0nܸFG\xEC\xDF\xFE\xED\xDF6\x9D_\xC7sL\xFF\xFE\xFD\xAF\xB8\xE2\x8AիW\xBBc\xF5\xEF\xFF\xFE\xEF\xC5\xFD\xAD8nG\x86\xA3\x8E:\xAAQ`8\xF1\xC4\xC3\x86\xA6Z:\x8B\xB0\xAB\xEA\xF5\xFAK/\xBD\x94;9\xC2\xF9\xE0\x83^x\xE1\x85\xE5˗7]Ogg\xE7K/\xBDd2in\xFD\x9D\x9D\x9Dŗ\xBC\xF6\xDAko\xBC\xF1Fq\xF9+\xAF\xBC\xE2\xFEǰjժܩ
-\xDDۼ\x8Aw\\xB9r\xE5\xB2e˪_X\xB1\xAD+=DfիW\xBB%\xAF\xBC\xF2\xCA\xF3\xCF?_<\x92\x8A+)U\xFDYW\xBC{\xA3O\xAA\xAB\xCF\xE9\xC9K\x82\xECcq%\xC5m0g\xBE\xF8\xE2\x8B/\xBF\xFCrS\xFA\xC53'\x8E\xBD\xFF\xFE\xFB?\xFB\xD9\xCF\xFCsJ\xBF`\x8D\xFE\xF7ҥ\xDDiq%\xFE\xDAz\xF25.\xABFʆ\xF9B6\xFAtmmS\xFE\xA9\xEDw\xA9\xF4        \xC5\xDD\xF4ߴ\x95/sWm\xE0/\xB6\xFF\xFA\xD5W_}\xF5\xD5W{\xB2\xF1\xA5o\xD1\xC3_\x97\r\xC9\xFBUP\xFD}ވ\xBF
-ܱ\x8A\xE3\xB8\xFAonW\xC3\xFB\xEF\xBF\xDFhÊG\xA3灡\x9Aқ\xFD\xD4\xFE\xC0\xFAff\xFC\xFE\xF7\xBF\xDF\xED5\xDCt\xD3M\xDF\xFF\xFE\xF77\xE4U\xB4\x80-`s\xFBb\x8F;\xF6\xF8\xE3\x8F\xFF\xC1~\xD0\xED5lnG\xECC-p\x80\x9C\xB5k\xD7vvv\xAEY\xB3\xA6\x9Dp\x8Ey\xB9i\x89>26\xAB/6\xBF
-67T\xB0\x80\xF5\xEB\xEE\xBB\xEF^\xBCx\xB1\x88\xEC\xB0\xC3\x9F\xFB\xDC纱\x86\xA7\x9F~\xFA\xBE\xFB\xEE\x91\xE1Ç\xBB˨v\x9B\xDB\x9B_\x9B@`x\xA2ќ%K\x96\x88ȠA\x83\xCCL\xA9]\xB2|\xF9\xF2\xCE\xCE\xCE\xF6\xF6\xF6\x9E\xCFxn\xBC\xF1\xC6\xEF\xBE\xFBn\xAF^\xBD\xCCkI\xABV\xADz\xE7\x9Dwj\xB5\x9A\x99?\xADh\xE9ҥ\x8B-;v\xAC\xBB:n\xFD\xAC9s\xE6\x9Cy\xE6\x99\xD7]w\xDDg\x9C\xD1\xD5\xD7.X\xB0\xE0\xDCsϝ8q\xE2\x95W^dc-Z4mڴ9s\xE6T\xCF\xFA\xA1\xB6x\xF1⫮\xBAj\xF6\xEC٥\xE7\x98\w\xDDu\xF3\xE7\xCFWJ}\xF4\xD1ŋ\xAE<\xF0\xC0<`n+\xA5\xFA\xF4\xE93|\xF8\xF0\xCF|\xE63[o\xBDu\xEE\x99\xCF=\xF7ܬY\xB3^z\xE9\xA5z\xBD>p\xE0\xC0#F\xEC\xBF\xFF\xFE\xE6\x92\xE6\xFEJD\xA4W\xAF^\x83-:\xF0\xC0G\x8F\xBDv\x80nX\xBFC\x84\x93&Mjkk\xEB\xEA\xABL[ؑGٽ\xA362nܸ<0\xE0
-7\xA4[\xE5ƌs\xC8!\x87\x94>\xF4\xEE\xBB\xEF~\xF7\xBB߽\xF8⋯\xBC\xF2\xCA-M=\xF4Ѓ>\xF8?\xF8A\x9F>}>\xFD\xE9O\xEF\xBA뮿\xFD\xEDoG\x8C1g\xCE\xF7\x9Cz\xBD~\xCE9\xE7|\xEEs\x9F:t\xE8w\xBE\xF3\x9D\xEF\xFF\xFB&Lx\xE4\x91G\xCE:\xEB\xAC\xE2J\xFE\xE5_\xFEe\xAF\xBD\xF6\xEA\xE8\xE8;v\xEC\\xB0a\xF6\x80\xAEZ\xBF,\xC3\p\xB4Ew\xDCqDze\xCB\xCE=\xF7\xDC\xF5\xB7=:A\x8EɢE\x8B֬Y\xD3\xDE\xDE>p\xE0\xC0\x81\x86ڶ\xA6\xCC{\xED\xB2\xCB.p\x80\x88|\xF6\xB3\x9F1b\xC4\xFE\xE7\xFE\xDF\xFF\xFD\x9Fy\xC2\xF8\xC3_\xFF\xFA\xD7O=\x{154EE4}\xFC6\xDBl\xB3\xDF~\xFB\x9Dv\xDAiŕ\x98+nu\xD4Q\x8B/\xBE\xE6\x9Ak\xFE\xE3?\xFE\xA3O\x9F>l_hQU\xC0\xFA\xE7?\xFFy\xFF\xFD\xF7\xAF\\xB9r\xBB\xED\xB6\xFBҗ\xBE\xD4\xDE\xDE\xFE\xD0Cutt\xEC\xB9瞃\xBE\xF5\xD6[\xBF\xF0\x85/l\xBF\xFD\xF6\xB3g\xCF~\xE4\x91Gxꩧ\x87~D䭷\xFE\xFA\xEB_\xFD\xF5\xBD\xF7\xDE\xFB\xD8c\x8Fu\xCB\xE7̙\xF3\xB7\xBF\xFDMk}\xF0\xC1t\xD0A"\xF2\xDCs\xCF]v\xD9ecǎ\xBD\xF5\xD6[?\xFF\xF9ϋH\xADV
\x9B?\xFE\xACY\xB3\xB6\xD8b\x8Bɓ'0\xA0\xB8\xFEG}\xF4\xC1|\xE3\x8D7\xB6\xDDv\xDBc\x8F=v\xE7\x9Dw.]yQ\xF19\xA5;ؽ\xB7˭\xEA\xE3\xFFx\xBD^o\xE5\xD0\xE5֯\xB5\xF6\x8FI[[[\xE9\xAB\xFE\xF2\x97\xBF\xDC\xFF\xFDfz\xDC➮Z\xB5j֬Y"r\xC7w\xF4\xED\xDBw\xE8СK\x96,\xC9mLq~\xF8\xE1\x97_~y\xF4\xE8\xD1\xF5z\xFD\xF8C\xFF\xFE\xFDO=\xF5\xD4\xF7\xDE{o\xE6̙˖-\x9B8q\xE2\xB8q\xE3ro\xD4\xD1\xD1q뭷\xAE^\xBDz\xE8С\xA7\x9Dvږ[n\x99{B\xADV1b\xC4\xF2\xE5\xCB\xCD\xDD\xF7\xDF\xFFꫯ>\xF9\xE4\x93]\xBAr\xA6O\x9F^\xFA\xA9[m\xB5UEJ\xA9\x8A\xE7\xB0\xB1TՖ\xAE\xBF\xFE\xFA!C\x86\x9Cq\xC6\xFD\xEB_O:\xE9$3f̴iӾ\xFE\xF5\xAF\x9Fw\xDEy7\xDF|\xF3\x8A+\xCE?\xFF\xFCiӦ\x9Dt\xD2IZ\xEBѣG\xBF\xFE\xFA\xEB\xC5\xF5̝;w\xE8С;\xEC\xB0Ô)S\xA6L\x99b^r\xC9%^x\xE1\xD1G}\xC4G|\xE3\xDF0ױZ\xBCx\xF1\x92%Kz\xF5\xEA\xD5\xD6\xD6f\xFEvΛ7\xEF\xBE\xFB\xEE\xDBj\xAB\xAD\xAE\xBD\xF6گ}\xEDkŕ_~\xF9姟~\xFA\x818y\xF2\xE47\xDEx\xE3\xF7\xBF\xFF}\xA3\x95\xE7\x94>\xA7\xB8\x83\xDD~\xBBܪ\xB6\xDBn\x
BBV]q\xFD\xB9cR\xFA\xAA\x8B.\xBAh\xEAԩ&L\x98<y\xF2\x8E;\xEEX\xDC\xD9\xE5˗\x9B\xEB_n\xB1\xC5mmm\xC5\xDD,݅=\xF6\xD8c\xFA\xF4\xE9\xE7\x9Cs\xCE]w\xDDU\xAB\xD5.\xBF\xFC\xF2O\xFA\xD3W_}\xF5;\xEF\xBC3o\xC3?\xFC\xAD\xB7\xDE\xF2\xDFeŊp\xC0~\xFB\xEDw\xE6\x99g\xDE{\xEF\xBD.E\xF9>\xF8\xE0\x83g\x9F}\xD6T\xB3Dd\xFE\xFC\xF9o\xBF\xFDv\xE9EdKú\xF1\xDCs\xCF\xFD\xEF\xFF\xFE\xEF~\xF0\x83\x8Ak\xB01U\Fg\xE1
\xE6\xC6-\xB7\xDC\xD2\xDE\xDEnnv\xD8a\xE7\x9F\xBEֺ\xA3\xA3\xE3\x89'\x9E\xA8\xD5j\x8F=\xF6\x98\xD6:\x8E\xE3m\xB6\xD9\xE6\x86nȭ\xE4c\xFB\xD8\xCF\xFEss{\xE6̙J\xA9\xE7\x9E{n\xE9ҥ}\xFA\xF4y衇\xCC\xF2{O\x9F>K\x97.\xD5Z>\xFC\xDAk\xAFͽ\x97\xD6z\xFA\xF4\xE9Çϭ|ٲe\xBD{\xF7\x9E9s\xA6\xB9\xFB\xFA\xEB\xAF\xDFv\xDBm+\xBF\xF6\xDAk\xCDJ*\x9E\xE3\xEF\xE0\x8A+z\xF2v\xB9U5=t\xA5\xEB\xF7\x8FIGGG\xF1UK\x96,\xE9ݻ\xF7\xACY\xB3̫~\xFAӟ\xFAW\xAAr|\xF0AY\xB5jU\xF1s|\xF2\xC9'\xED\xC2Gq\xDEy\xE7\x99\xE5W]u\x95\xFBL\xFD\xC3?\xEC\xBF\xC5̙3\xBCn\xDD:\xF3
s\xFD\xA6\xF9\xF3\xE7\x8B\xC8\xF7\xBE\xF7\xBD\xBB\xEE\xBA\xEBg?\xFB\xD9\xE1\x87~\xE0\x81\xBA\xCB?\xDDq\xC7"\xF2\xBB\xDF\xFD\xAE\xB8\xC1>\xB3\x92}\xF6\xD9\xE7\x98c\x8E9\xEC\xB0\xC3\xDA\xDA\xDAN<\xF1\xC4\xE7\x9F\xBE\xFAUl,UC\x84\xA3G\x8F~\xFA\xE9\xA7_y啅\x9A\xFA\x87o\xE8С.\xAC\xD7\xEB.4\xE7嵵\xB5\x95\x8EO9\x87z\xA8\xD6\xFA\xFF\xF8G\x9F>}֮]\xBB\xFB\xE5cǎ]\xBBv\xED\x82*\xBA\xDA\xFB\xF6\xED\xFB\xFE\xFB\xEF\xE7Ι3\xA7\xB3\xB3s\xDF}\xF75w-t\xC2        '\xDC}\xF7\xDDMW\xFE\xE4\x93O6}\xCEСC\x9Fy\xE6\x99?\xFC\xE1\xE6\xEE\x90!C\xDEy\xE7\x9D\xEE\xBD\xDDСC[9t\xA5\xBB㿰\xF4U\x8F=\xF6Xgg\xA7iNꆡC\x87\xFE\xFD\xEFo\xE5\xE3hoowA\xBF~\xFDD$\xF7\x89\xEC\xB9\xE7\x9Ek֬9\xEC\xB0æN\x9D\xFA\xF9\xCF~\x8B-\xB6p\xBD\xFE\xFA\xEBK\x97.\xFDկ~\xF5\xC2/<\xFF\xFC\xF3\xE6\xE5"bJP\x9D\x9D\x9D\xFEzn\xBA\xE9\xA6h\xADp\xF1\xC5\xBB.\xAB\xEF}\xEF{f\xE0\xF8\xDDwߝ>}\xFAn\xBB\xEDv\xDBm\xB7M\x9C8\xB1{;\xC0\xFA\xD3p\x88\xF0\xAD\xB7\xDE\xDA{ッ\xB9\xE6
\x9A5k\xD6\xF4\xEAU\x9E\xC3V\xAF^-"\xED\xED\xEDmmmmmm7\xDEx\xE3駟^\xF5fQ$"|\xF0\xC1\x9Bo\xBE)"\xEE\xB0\x99%\xCB,\xEC\xF3\xBE\xBD\xBD\xDD_\xD8\xCA\xCA[܀\i͘1\xA3\xDBoWTz\xE8J\xD7\xDF\xF4U+W\xAETJ\xF5d\xB6\xB0Pǰa\xC3\xE6Ν;r\xE4\xC8ɓ'\x8F5\xEA\x85^pu\xD4QS\xA6L\xF9\xC5/~\xF1\xD6[o]t\xD1En\xF9\xAE\xBB\xEE*"\xB9\x893&O\x9E\xBC\xFD\xF6\xDB_\xFD\xF5\xE6\xCC\xC1\xE2\xF5\xED\xDB\xF7\xA2\x8B.\xDAe\x97].\xBB첮n$@\xC3
-֝w\xDEiF\xB2D\xA4X\xBE2̌\x9D{\xEF\xBD\xF7ȑ#[y\xB3\xA5K\x97\x8AȈ#\xCC
-W\xADZe\xE6\xC34\xADNÆ-\xEB\xEA\xD6>\D/^l\xFENf=\xD5+o\xE59"2iҤI\x93&\xB9\xBB\xFB\xDBߺ\xF7vE\xA5\x87\xCE4T\xE5\xD6\xDF\xF4U/\xBC\xF0\x82\xD6zŊ\xFF\xF8ǫߴ\x91\xEE\xEDB\x91\xD6z\x8F=\xF6\xB8\xF9\xE6\x9B\xDF|\xF3\xCDC9d\xFA\xF4\xE9\xD7\s\x8D\xFF\x84\x9Dv\xDA\xE9\xE2\x8B/\xFE\xCEw\xBE\xF3\xC5/~\xF1S\x9F\xFA\x94\x88\xEC\xBC\xF3\xCE\xFB\xEC\xB3\xCF]w\xDD\xF5\xEDo\xDB\xA6\xE9\xC0\xAB\xEEa\xDFr\xCB-5zl\x92V\xB0\xB4\xD6k5\x97\xECn\xB0Ə\xBF\xED\xB6\xDB\xDEp\xC3--\xBEٌ3v\xDBm\xB7}\xF7\xDDw\xFC\xF8\xF1;\xEE\xB8\xE3\xFF\xF8G\xB3\xFC\xAE\xBB\xEE9r\xA4\xE9t\xEEݻ\xF7{\xEF\xBD\xD7\xE2
-\xF7\xDF\xFF\x91#G\xFE\xE8G?\xF2/N^\xB1\xF2.='\xE0\xDB\x95\xBA\xD2\xF5\x8BwLJ_u\xD0A\xB5\xB7\xB7\xDFx\xE3\x8D\xD5\xEFX\xBD1\xDD\xA2\xDBo\xBF}\xEEܹ"2p\xE0\xC0\xF1\xE3Ǘv\xA0\xEB[\xDF;v\xEC\xBF\xFE뿾\xFD\xF6\xDBf\xC9\xFF\xF7/X\xB0\xE0\xFA\xEB\xAF\xEF\xD2{\xDD\xFF\xFDO<\xF1\xC4q\xC7g\xEE^s\xCD5\xB90\xC0\xC6Ԩ9\xEB\xB5\xD7^6lخ\xBB\xEEz\xF4\xD1G\x9F}\xF6ٵZ\xED'?\xF9\xC9\xDDw\xDF=lذ\xFD\xF7\xDFƌ\xE6i\xF7\xDCs\xCF\xF6\xDBo\xBF\xDF~\xFB\x9Dp\xC2        \xA7\x9CrʢE\x8Br\xEB9\xF6\xD8c?\xF3\x99\xCF\x\xE1\x85'\x9F|\xF2^{\xED\xF5\xD4SO\x99\xE5\x8F>\xFA\xE8\xB8q\xE3\xA6N\x9D:eʔ\xBD\xF6\xDAkyf\xF99眳\xCD6\xDBL\x9A4\xE9\xD2K/6l\xD80gΜg\x9F}\xF6\xB8\xE3\x8E\xEBׯ߯\xFD\xEB\xDC\xFA\x9F|\xF2\xC91cƌ5\xEA\xF8\xE3\x8F\xFF\xE2\xBFh6\xACt\xE5\xB3gϞ0a\xAE\xBC\xF2ʷ\xDF~\xBB\xF49\xC5\xEC\xF6\xDB\xE5V\xD5\xE2\xA1+]\xBF;&\x8F?\xFEx\xE9\xABn\xBF\xFD\xF6\xAD\xB7\xDE\xFA\xE0\x83>\xFE\xF8\xE3'M\x9Aԯ_\xBF_\xFE\xF2\x97\xFEf\xBF\xF8⋧\x9Ez\xAA\x88|\xF3\
x9B\xF7\xDE{\x8BS\xBA\xB3f\xCD\xDAq\xC7Ǐ?k֬'\x9Exb\xE2ĉ\xFD\xFA\xF5\xBBꪫV\xAF^mN3<묳V\xAE\\xE9\xDEe\xF6\xEC\xD9#F\x8C\xB8\xE0\x82\xA6N\x9D:~\xFC\xF8\x8E\x8E\x8E\xC7\xFC\x94SN\x91        &\xFC\xD7\xFD\x97yڼy\xF3j\xB5ڧ>\xF5)\xD7\xDB\xFE\xCC3Ϝx\xE2\x89&L\xF8\xFF\xEF\xFF]v\xD9eg\x9Cq\xC6~\xFB\xEDw\xF6\xD9g\x9B~\xF9\xFB\xEF\xBF\xFF\xCB_\xFE\xB2\x88\xEC\xBB\xEF\xBE'\x9Cp'\x9Ex\xD0A\xED\xBA\xEB\xAE?\xFE\xF1\x8F\xEB\xF5\xBAY\xC3'?\xF9ɝvک\xFC\xAB\xC0\xA7t\xE3A\x96u\xEB\xD6-]\xBAt\xBB\x{DDAB}\x9E\xCB1\x8E㎎\x8E^\xBDz\xA722֮]\xBBdɒ-\xB6آ\xF8\x84\x95+W\xD6j5\xFF\x84|\xADuGG\xC7\xD6[o]ъT\xF4ꫯ\xBE\xF3\xCE;\x9F\xF8\xC4'\xFCM-\xAE\xBC\xA8\x95\xE7|\xBB\x9CF\x87.\xB7\xFE\xDC1)}U\xC7˖-2dH\xA3\x86\xB9Vt\xEFh\xF8\xCCgݿ\xFFn\x8CWvvv\xBE\xF2\xCA+J\xA9!C\x86\x94V\xBF:;;[\xC7q[[[\xADV\xF32SB<\xB8\xDB[@@Uݰ~\xAFE\xB0"`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`
,\x80\xC0X\x81\xB0#`֫\xD1'\xA9\xC9r;>\xD4f\xE8\x9B6\xF6&\x80MHÀ\x85\xD6i\xADîP)v\x85`C"`m\x8AZIl\x8406Y\xAC\xAB\xD2F\xEA`S@\xC0
-!\xE0a\xCFR.u\x91\xB7\xD8(X\x9B\x98V\xB2Z˩\x89\xBC\xC0FA\xC0
- H\x93{\xD2O黵\xF0j\xB7\x9D$-\xD6+֦\xA2iJk\x92\x8Ar\xAF\xAE~\xAE\xD6\xCDW\xBA\x8B\x80@\xD8YŞ\xAEu\xB5\xBB\xE76Q\xB4XG        + IDATOX!t;a\x95%\x9B\xEA\x95\xE5^Ѽ\xCB\xCA\xBC2\xBA\xB3\x85\x80@\x8B=Xe駵d\xE6\xBD0\x{1CA2BC}\xD50l\xB3X\xCFX\xB4\\xC0\xEAZ\xA1+\xCD:\xC57\xB0\xF9\x8F4
-[\xF9\xCCD\xCC`=#`\x85\xD0ڨ^W\xCBUUMWe\x85\xACFa\xAB<iU6ii\xAD\xC9Xt+\x80&C\x84]\xEC%\xD7-\x8AK6Y\x955]\xB2Ui\xD8*\xAFN5(hQ\xCA\xA0\xDBX\x84"l\x94hr\xC1\xAB\x98\xB7\xF2a+[9\xEBv\xCC"c\xD0U\xACZKX\x99g5N-Z\xEB\xD2sˊy+\xB6\xB2I+\x97\xBB\x8E\x92\xB1\xE81Vݙ\xA5!\xCD7\x8D\xCC?\x96\xCC\xDCQ\xA5\xF9)S\xD3j\\xD0"c+\xC7-=\xAF٬W\x85a\xBBL)K\xEB\xDC\xBCz\x95\xB7
-?ie\xCATe\xAD\x924&\xE5Åd,ZG\xC0
- \x8E[\x9Bc\xBDP\xE9*\x9FX\xA10\xEB\x95?_\x83\x97\x82J\xC2Vu\xD2*\xB4\xB4\xEEB)\x8B\x8C@\x8BX!\x94-6<\xB50W\x94r\x8B\xB3^e\xDA\xD2\xD3d\xA3\xEC?鋽\xB0\xD50i\x95ĬVJYd,\xBA\x8E\x80@\xDC\xDA\xA1M6\xE5\xCB\xD3@\x96-Z.\xA5(->\xE5\xC3V.i\xA5#\x83\xA51\xAB\x95R\x80\xAE#`\xA0ˆKcI\xE9Tڻ\x9D\x8Ezy\xABq\xD8*$\xADlA\xABQ\xCC"c+\x80\x96.d\x92\JQJ\xF9u\xACl\x8B\xBA\x97\xB7\x94W\xBEra˼E6i\x99\x98\x95\xC6)\xBB:\x97\xA5\x92\xA8T\xA8r        \x80 `P\xDA\xE4^\xA4T\xC3K
-~s\x8F\xB8ԥ\x95\xAB9yQ̅\xADl\xD22\x81\xA8"f\xF9\x8B]Y\xADd,\xD0+\x80\xA7iЅS\xB5\xF8\xDD\xEB\xD9榭R\xF6\x9E΄-\xD7ѕ,4\x81J\x92\x9AVu\xCCr#\x83&KUVd,\x8AX4B\xC0
- \xAEWU\xB0\xB2S\xE4'bљ\x93\xCDU\xE2R\x97\xC9=^\xD8J\xB2\x8E-LJ\\xCCJ\x96VĬ\xA4>\xB9U\xBC\x84\x8C@\xB0\xA8\xAE`\xF9\xEC\xFE\xB24K\xF932\xE4r\x95\xE4\xA2U&l\xF9e\xAD\xA4\xA6\x95+h5\x8EY\x8DJY\xB9\x96\xAC\x92\x8C\x9A!`P]\xC1\xF2J>\x99\xCB\xFF\xE9$fe\xD1\xF6Q\xFBP\xC3h\xA5sIKTiA+\xB3\xCCk])\xAB<c\xB9-Όaڝ\xA0\x88@%V\xF5u\x{1463D5}\x9C9\xA8Jn\xAB\xFC\x92\xE4_sJ`\xF2\xD3ݵOS鿶\xFB]\x94R\xDA\xC4&\xEF\xB6V&\xA2)QI3\xBCR&N\xA5qM)U@,\xE9Ӓ\xFC\xB5t\xC8X\xE4\xB0\x88덇\xC9\xC3\xEFd\xB7\xF9\xC8T\xB9
-\x96\x98\xFAT\x92L\xAFV\x92\x9CLw\xBCR~\xCB\xE4 \x98$\xADi\xD9\xDBJL\xC6\xAD\x92\x8Cd\n\xC4P2\x89*W\xDC\xB2\xAD!`P\xB0\x8Ag\xFA\xF3/d{ޓ\x80\xE4\xA5.\xBFeӕ-%\x99A7\x80\x98\x94\xA9\x92\\x95\xC6,KDi32i;\xAD\xDC-\xADg,oO(bP\x8E\x80@\x97V\xAE^\xE5?\xC1\xA6%w\xAE\xA0(\x95T\xB0
-cb\xFBlM\xCB\xB1\xBC~,Q\xB6p\xE5\xB5\xD7\xDB`\x97v\xB3K\xD3:\x96yiY\x93("`P_W\xB0J
-Hi\xC7U\xDA\xE0\x94]\x9E>\xCD&\xFDU\xE2r\xA3\x84"\xCAִ\xBC\x82\x967\xCC\xD0J\x94\x96ȽO.c\x89\xBD]\x92\xB1D\xF2\xBD\xEE\xDEܤ\xB1(A\xC0
- 6M\xEE-\xE2\x85;\xD2)\xAF\xFCaA\xC9f\xAF4u\xB9Fvs;)e)\xA5\xD2\xF6t4\xB0,fe\xCAZ\xA2$\xB6\xF5\xB0lƒd\xFEҒ\x8C%\xD2l\xA0\xB0\xB0\xD34\x94M\xD6P?\x89\xA5C\x846{\xF9'&w\xBD8e\xBA\xB2\x94(\xA5T\x94\x8C&7"U\xB3\xBC\xB1\xC2Hrr+Yj\xFB\xB1\xFC\xDB\xC5\xEATi\xBD\x8A"+\x80\xD2iJ\xA2FnP\xC4ͬ^\x98\x88A\xB9\x89\xAF\x92l\xD2J\x87\xB5\x9D\xC1\xDC\xD0:\x8A\xA2|5\xCBU\xB1-e\xA9\xCCpa\xB2\xB1nvQ\xE5fɲ3re
-\xF3E,\xAEQ@+\x80\xDCD\xA3\xB6=\xA90\x83H2\xC3B.fٓ\x93\xC9E\xED][\xB2]\xEAew\x95\x89\xEC\xEC\xB1%\xCA\xDE3g\x83=\xADPDI6\x99)\x88GG\xC0
- \xCEU\xB0\xB2\xB5+\xFF^\xAE\xCF=-\xF4ۭ\xC4$'s;9PEJى\xAF25\xAD\xC8\xB6\x94D\xC94-\xB1\x8EU\x94\xF4fE\xA6\xEB\xCA-Ƣ\x95D\x91$*QZ\xB4\xD2\xF9\x93
-M\xCB4f\xB9nw\xCEw\xB3\xA5\xAD\xEE@XA\xE4\xCE"̏-z\x{1D55EB}\x92\xFB\xF9\x8E+\xC9g,s#V*R"⒖\x8A\x94\xB0\xB31\xCB,1\x83\x86\x91RJ\xC5\xE6\xBD"1\xEE\x89\x89\xE3l\xC6ҺpRa6J:\xDB+\xE6\xA5-!`Ѵ\xCB"\x94\̲\x95*\xBF\xC9\xDDo\xBAJ\x93V\xEC\x96)\xA5D\xE9\xC8\xB4\xA2Hi-Qd\xAFB\xD99F\x95x?\xB5D\x91\xC4\xDAT\xB0\xFC\x8Ce\xE7t/d,\xC9wb/\J\xB0\x88\xCB\xE6\xC1Jx\xD3/H6i\xA5K\xFC\xD4yy\xCB[Q\x94)e)\xA5\x94\x8E\x95Eq2\xA8\x89V\xE9\x9Bj%\x91\x88V:\x92\xC8J)\xD1&]ű(\xA5%\x8A\xEC\xE4\xEEb\xFA\xB1\xB4\x96t\x92w\xD7\xED.\xD9)\x8A%\xC0C\xC0
-`]g]L\x83\x95\x89#\xB9\xBE+\xF1{\xAD\xC4\xE5'\xAFKT\x94\x94\xA9t\x9C\xDCN\x8BX:\xB3\x94N\xCAYn\xC40\x96H)\x89%6Å\xA6%˯`)\xAD\xE3\xD8-#&-֨\x9A\x9CN,V\xF9&w#\x9D\xF5*;\xFDU\xBE\xBD\xDDk\xC3\xCA\xF5])%q=MZq=)e\xC5i\xD62AJ\xE9XE*\xD1:v#\x86fӒw\x8ADb\x89%\xF4j1ӏ\x965\xBCK\x93"V\xB1՝6,X\xD8
-VI\xAAȆ*U\\xE2\xCD}\x95\xE6\xAD\؊\xA2H\xE2zd\x9A\xABt\xF23-X\xF6\x86h\x95\x94\xB2"\xBB\x88\xE56*\xA5U\xEB4W\x99\xE8\x94\xFE\xCC6\xBC\x97\x8ER\xC4\xA0\xAC\xF2=X\xD9\xCC\xE1U\xB0ҡ@\xC9O+j'iȶ^)3\xAFU\xACU\xA4t\xAC\xDC\xCF+r\xA5,{\xB2`҃\x95l\xA7+\x8CD\xEB\xE4\xBCB\xD1\xCAΘ\x956\xBC\x9B\xCCը\x88\x95C\xC9
-\x80V\xCD{\xB0t_Ifd0\x97\xB1\x92t\x95t\xB5\xFB?M\xB1JGɼ\xEE:2ժXb\x93\xB7\x92Gu,\xB6\xCBe\xAC\xB4\x8E%vtP\xDB9\xAF\xDC@\xA1wi\xC2\xE2^\x95Ήe\xA3\xD5V\xCD&\xF5z\xB0\xFC\x8E+\xF1\x8BU\x99\xB3\xCD3M\xBB\x95RJE\xD9֫X\xE9H\xA9HG\x91-R:)e\x99\xA8e\xFA\xD9E\xA2X\xE2(R"\x99\x8CKE\x91\xD6"Z\x9B\xA9GK
-]CU\xD7:\xB1+\x88.\xF7`\xE5GӼ\x95N\xC7`JTI{\xBB\xE8(RQr.a\xB3ܘ\xA0\xB6#\x86:m\x8BXٌ\x95\xABX\xE2HE\xDB\xDBfq$:NZ\xE0\xCDpa29\x83HrE\x9F\xB2"Vʿ24\xB0X\xD4KV\xE9X\xD9\xACl\x93\xBBRJt\x94\xAE(\xB23\x8BF:\x8A\x94\xC4:\x8A\xCC,i\xBDJ\xB4\xF8c\x82\xB6y]\xC4;e\xD0e,\xA5\x94\xB6MWJ\x8B\xD6Z\xB4(-Z+\xD1bڰ\x9463_);\xA97\\xE8\xCE\xCCL\xE6P\x8E\x82`3G\xC0
-\xA0\xE2R9\xE5=X-Xv\x88\xD0OZ:J\xDBM\xCC\xD2Qղ\xF5*\x9B\xAEL\xFC2թ\\xC6\xA5mVl\xA6M\x9E\xA1\xB4\xF9Ǥ+\xD7\x{DB92}\xA1\xC0\xF4\xB4\xC1\\xAEr)*\x99\xE8\xD4ܥ-V\xF5\xD2&\xF7\xD2y\xB0\xFC\xACl\x96JfdP\x99\xA4\xE5-\xBA\x98e\xCANQM\xFCR\x96\x88.\x94H\xEC\xA06\x8D\xEE\x8BDZ\xA5\xF5-\xA5\xB4y@\xE9dDPi1\xE9*\xEDvw\x9DX~        \xCBb\x82*\xB0\xA8hrϵ\xB4\x8B78(IK{&l\xC5f\xD6+\x9B\xB4\xF2Â\xB1\x92\x9A\xEB\xBB\xD2R\x8B\땈\xF8\x85+\x93\xB1\xE2䧙\xC3=J\x86\xFB\xB4\xE8X\x8BJR\x94\xD6I\xF9)9\xA3\xD0<\xA2\x93)2\xA5\xACf\xAD\xEE\xC0 `P\xDA\xE4\x9E\xDE\xF3JYŮ\xF6\xA4\x8D\xDD[\xAE#m;\xDCӳM\x93{)\xAD\xB5\x8ATT\x8BD+\xAD%\xAA%\xF1+y\xADL\xAE2\xE5)3\x96\x88\x98!B7J\xA8\x95\x968\xB6\xD7&\xD4)\xD1\xDA/b\xA5[\xAF\x93hհ`Ō\xA3\xB0\xA8hr\xCFu\xB8\x8B\x98\xEE\xA7ܔWq\x92\xAD찠K]*RQ%1\xAB\xE9X%\xDDWK2ӕ\xB8aAqU+\xAD\xB4_\xCA\xAD\xB4\xB6Sc\xE9؞.\x8B\xB9:\x8EvL\xAAR\xDA6\xC2\xDB&\xF7\\xAB\xBBH\xF9\xF9\x83\xB40X\x946\xB9\xA7QÎ\x9A%
q\xFE\x82\x83\x99\xB0\x99F+\xA5\xA2H\x9B\x99Eu\xA4\xA3Zd\xC6U%\xDDW\x92t\xB8K\xB0Ĕ\xAC\xDCȠ\x88D\xB6\xEFJT\xA9Hk\xAD\xE3X\xA9HDZVQǑ2e0\xAD\xB42\xD3bi;\xAB\xBB;\x9DЦ\xABL\xAB{2\x9DC#\xF4\xB96{\xAC*\x9A\xDC˧Q\x91\x9D\x9A!ʄ-3\xE8n\x98)\xAF\xB4\x96(\xCAv_\xD9,\xB1U\xAB\xE4M\xED\xAD\xB4V\xB1V\x91H\xAC\x95\xB9\xAB\xB5Rq\xAC]KǦN\xA5ܔ-\xE9        \x81\xDA\xCE4*60U\x8C2@@+\x80z\xB6\xC9]y\xD1J\xC4%-\x9B\xB2l\xB4ry+\x93\xB1̬W\xB6\x82ec\x96\x96Z\xE4w_%+.\xDCpu,Q"*m\xC3r\xFFIrW\xE2X\x9B,i3\xE1\x96Nz\xB0\xC4Ny%n\xBE\x86\xE2(a\xBE\xB2UHYf\xB6RF\x9B'V\xAD\xF7`\xC7\xD3v+\xD6+\xA5\xA4f\xAE\x8D\xA3U\xA4\xA4i-n\xEE+\xA9E\xB6m\xDD\xDDPJ)\xDBw%"\x91\xD4c]T,J";D\xE8jWf\xF6QS\xC4\xD2\xD9V\xF7t\xBE\x86\xEC(a\xC1l\xF6r;MB\xC0
-\xC2\xF4`\xE5\xF3\x95׃\x95\x9Bb4׀E\xDA;\x85PE\xB5H)\xA5\xB5\x9B\xF5*\xD2:\x8EjI\x96\xD4̉\x80\x91H\xAC\xB4\xA432\xD4]\xDFU28\xA8\x95\x8E\xEBqf\xB80k\x9D\xABtR\xC4\xD2\xDAub%mXZ\x94\xCE6ReG        K\x86%\xC0C\xC0
- ߃\x95"\xCC7`\xA57\x92\xB0e\xAE9\x98t\xB8\xEB\xA4V\xE4M.\xAA\xA3Z$ZG\xB5(\xD6\xC9y~"\x92\xCC,\xAA$\xB6\xA7*\xA5bI\x96(oX0\xC9[\x91\x98\xC6v3,\xA8cS\x9ERbZ\xAFL5K\xA7\xF35$\xEF:se
-T\xB4\x82\x80\x80\xE9\xC1r\xC9#\x93@lPb\xA7i\xB0}Wf\x88P\xA5I+J
-ZQ\xA4\x93j\x96\xC9@\xB5\xF4\x84A\xA5#;\xF4\xA7\x942\xF1*R\xB6^\xD7\xE3H$\x8E\x95TQ-\x8E\xB5\x8A\xBDn\xF7\xA4\x8EeF\x93\xC1Ao\x88P\xE5\x9Aړ.x\xAF|\x95<Z6JX\xC4f\x9A\x86\xB2!BS\xA9\xAF\xC9]G\x91d\xE7pw\x93\xB6K,v\xD6+38\x98L%*:\xB6c\x82\xC9ȠYU$Q\7S3H\7SAĦ\xB7]\xC5\xE9@\xA1\x8E\xB5J\xFA\xD9\xCD\xA1֑\xD6:)b\xB9i\x94H2{\xBB\xD8)۵\x99\xB2!ٵ\V1W1N\x80A\xC0
- W\xC1J\xE4\x9A\xDC\xD3        \xB42\xCD\xE7\xA6le\xAF6\xA8\xE3d\xF7\xA8\xA9\xD8V\xB3jbfd\xB1\xD7\xB4#\x83\x9EH$\xA5\xA4n/ڬt\\x8F\x95\x8AL\xA2\x8A\xE3XT\xA4"I
-VZ'1\xCB^Gk\xAD\xB4\x96d\xFCQ\xCC(a2\x95\xA8\x88\x98\x91A\xADJ'k(UL\x85ؼ\xB0\xA8jr/v\xB8\xC7%Ww\xB6Â\xE9\xACW\xF6*\xCE\xC9-Z\xEB(ioOF\xDD\xDB$U\xABz\xAC\x94\xD2*ֱ2}Wq\xAC\x92aA\xA7\xE2XG\xB5\xA4+\x95f,#\x99\xCBN1*\xF6ꄒN\xCD\xD0`@\x90\xFA+\x80\xE4b\xCF\xD9x\x91k\xBD*\xEFp7ը\xECϨ&:\xDB}\x95\x8E\xBA5\xBB\x91A\xFB\xA6\x91H\xAC\x94J\xA6h\xAF'\x93`\xA9\xD8U\xAA\xB46\x933\xC4Z'\xDBۮu2Ũml\xD7ɄX\xEE\xB29J\x94:L\xA7h\x8C\x80\x80\xAD`\xB9\xF3ſ\xEBe\xAC\xA4\xA5]D\x92jU\xAC\xCC\xF5pҟ:Ic~\xF7\x95\xB2=X\xEE\x95\xD7_\x95\xF4Z\xC5:\xAEǢ\x94m\xC0\xD2:\x8EM\xAB\xBB\x8A\xD2ɮ\x92\xC1\xC0\xB4|\x95\xA4(\x94\xD0\xC8Nw\x95\x99-\xCB{H\xFBŭ\xF5}\x9C\xF8\xB0 `P8\x8B0\x99VT\xCA{\xB0\x94RJ\xC5u\xDB؞\xB6\xB7\xBBaAEJǮ\xFBʦ\xAE\xF4\x928J)\xBF\x82eN!L
-c\xBFd\x95Ա\xE28V\xB1\xD2JK\xA4s\x85v\x8E\x86t\x94Pkm.D(\xC9\x85:\xA9c\x95͆U\x9CÝ\xB0\xD8\xCC\xB0\x88\xEB\xE6\xB20\x99\x81\xB4\xEC\xEC\xED\xDEmm'kPɘ\xA0h%J\x89\x8E%6U+w\xCD\xC1\xF4J8J\xA9\xB8n\xCF"T\xCA\xF4\xAD\x8B2\x93/$\xA7\xFA\x85+\x95\x96\xAC2\xB1\xC9M\xCD`
-\xCD\xA1\x9D\xCB\xF5\xB3'Ä-glX\xE4z\xB0\x94?D\xA8\x94\x88\xCE\xF4]\xC5\xE6t\xBCH\xC4\\xB1&\xB3$-I)\xCBډڣH\\x97\x95\xB2}WZ\x9B8\xDB\xF6v-:\xD6\xE6\xE4AS\xB2J:\xB1\xB4\xF6\xFB\xAE\xDC(\xA1\xB9k$\xFDX\xE2\xDD\xCD\xEE\xA97&X\xB8rN\xC9=6S\xAC\xCCej$;D\x98\xB4\xBC9\xDCE̵\x9CE\xC7\xC9\xE5Mu*\xA9W\x99\x8Euۀ%~S\x94(q32(\xDBϞL\xAFL\xA22\xA5\xA9X+1E,;(fj\x868\x8EUTә\xA9۵N:\xDC]O\x96r7\x93\xA9DE\xB9i\xB1\xE8\xB8\xA0\xAC\xCC\xA1+\xFE\xF8\xE1\xC3 \x93\xA1숛)\xB4+\x8ALR6\xA2EJ\xEBHL\xC7Ud/լŜ9\xA8"\xA9\xC7Qd\xE6bp\x8DVvR\x86Xűe:\xAC\x92\\x95L\xD0`F        \xBD\xEE+\xB1\xD1JI\xD2\xF9.\xAE\xDDʰyK)%\xC5\xE9F\x8B\xF5*\xEAW\x88+[\xC1J\xEEf\x96JZ\xA8칄&HE\x91ҢmW\xBBi\x8FT$\xB1\xA4Sjٌ\xE5V\x95^d0s \x9B\xECJ\x8B\xC9[\x92t\xB8\xC7:VI+N\x87\xEDaz7\xF9\xCFd)IޓY\xAF\xCD\x9A\xA4\xAC@\x82\x80\x80        Xi]ǝ9(\xA2E{ӊjӉnfY\xA5\xA2d\xE6\xF4XE\xC9\xA1&T\x99U,q$\xF6\xEA\x81J\xEBX\x8B$\x8DV\xF6ڂ\xA2\xB5W\xB22S6h\xC7iK2\xB9ʍ
        \xA6w\xC5l\x83\x88-h\xA5yʎ\x8A:L\x9EC\x88\xA0V\xF9K\xE5d&hH'\xC1r\x93\x8B*\xA5t,b\xAF\xEE\xACu\xA4\xCC\xC5lt\xA4\xB5\x8Ej\x91iJwS\xB7\x8B\x88\x88%\x91V\xA2\x94-m"bg\xD5RR\xAF+1\xB3lյ\x9D\xB5A\xA9H\xA9zl\xDE7\xAE\xC7*Jz\xDE\xFD        \xE3XG*\xBD\x88NzFa\x92\xC4ҫ\xE5\x98\xEB=ksAh\xB5\x9B\xEC\x88\xB0\xC20\xA4\x97J[鱅+W\xFCѱ3w\x95)\xC5bN'4-R\xA6\xDBI\xC7\xE6B\x81~˔2\xE5%\xF1/\xE8\xDEZ\xDB7\xB5S-\xD8-)N\xC1\xD6;V\x85\xB3\xCD?"bڬ\x94\x9D6c\x99\xB3u\xD2\xE4EJ$\x8AE\x94\xD6*\x8AD%\xA7\xA4\x87]D\xB9\xCB\xDDı\x88\xBB\xB0\xA0NkQn\xCA+[\x8C{\xAA`v\x940\xD3w\xE5\xEE&s7xa̍\xA6\xC5+s\xC1\x9C2խWfUT\xB7\x9BVq\x9C\x9Dh\xD4t_\xD9i\xB0L\xBA2I˖\xB5\xB4\xD8۱H$\xB1N\x92Vl.\x80#J\xCC\x9B\xD3D\xA5tf,\xCF\xCE\xD5nz\xAD\xE28\x8E\xB21]\xED^\xC6r\x91J%\xF5-{\xCE`\xB2\xCD\xF6\xAE\xEBsW\xEE\xA4A/Z\xE5\xE3T\xC5i\x83~\x80\xCD+\x9Bi\xEC].\xBCk<'30(\xD1JGI'\x95\x99\xD6!\x9189CP"\xD7\xD2n.\xD8l\x95\xBB\x9E`z\xA1m:\xA8\x92
nw\x89jI؊s\xF3\x88\xDA\xD0\xE4\xBA\xB3\xBDY\xAF\xCC\xC3\xC9 \xA6W\xF4\xD2U2ik\xE1
-\x80\xCD+\xC7"\x92\xB6;\xB9\xF6v1\xA1J\xCC$X&W\xC5\x9BR\x96V%\xB1*\x99@4S\xDC\xD2Q\xA4\\xE1ʔ\xB2\x92        \xE2L\xCBը\xE2XG\xE9\xA0\xB8z\x95tE\xACt\xB2+\xB1}\xEBb\x9F.\x92\x9CH(\xAE\x94\xA5\xBCt\x95\xDF\xE7\xAAxŔ-\x80\xCD+3D\xE8(7(\xA2\x93\xB0Ҙ%\x92\x94\xB2\x94Rf|\xD0e,\x95\xB4\xB7DZD\x91\x92$cE\xDA̼`\x9A\xB1D\xA7,7\x98^e0\xAA%\xFF\xDA\x95׆\x95\xEFʲ\xE5\xABd40.\xCC*\xA6\xA5\xEA\xDA\x95-X\xE8\xA4\xCB\xDEM\xFEU"\xA6\x9D]\xFB1+\xD1J\xDCD\xA3q\xAC]Ɗ\xCD$f\xAC$H\x99\x91A\xED*Xnr\xD0$V\xA9(\xF4縲〶\xB7]\xFCj\x95?\x98\xE4-I.\xF6\x9C\xCC\xEFmeg\xF1
-V&`\xB9\xCB*XJ%aF\x89N&\xC0\x8A%2ÅQ%1(Iz\xB0\x92\xBC
-\x96\x97\xB4\x92\xF6X"\xE5:\xB1tz=AI[\xD8\xED-;\xFC\x97\x96\xA8\xDC\xF3\xD2\xF9l!\xCC\xF6\xB6\xE7'u/d\xEC\x80\xA6Xı\x99\xC9=3Ѩ;\x8BP\x94\xAB`\x99\x99:E\x8BRZkQ'ӵ\x8B\x98w[j\x8AE\xAB\xA40\x95\xCC\xF9kI\x9A\xB4\xB2\xF3/\xD8l\x95\xF6Z\xF9\xB5\xBB\xAA\x95k\xC9J\xF8c\x82Mg\xCCҺz:Qm\xF3d\x979\xACr\x8D\x8A\x88$G%s\x9E\xE7+X\xE6\xCCA\x9D\x8C\x9AIҵ\x88Vv@P\x929յ\x8Ec3˻\xB8I\\x8A\xF22\x96\xBB\x9B\xE6*w7ٸL\x9A\xCAT\xB3\xDC\xF8\xA0w7\xB7\x83\xCD.\x91\xC3\xC8 V.\xC4$\xEC\xA3b\xAF\x90\x93\xCEːT\xB0$\xADc\x99A\xBA8\x99KT\xA4\xB5Vi7\x95\xB2\xA3u.Fٴ\x94        U\xE9d\xA1iAK2\xB7\x93-\xB5'\xBAG3\xBBQ6&X=*H\xE1
-\x80"Vv\xAC\xF4*ɒ\xA9`\x89\x95\x96\xB2t\xFA3\x8E%\xB9\xDC`$J\xABd\xAE);O\x95\xF6\xD8m6\xF2\xFAW\x95\xF2Ә%\xDE\xDDl]ʋY\xEE9\xF9\x9D\xD2\xC95\xABv\x9C\xBAeX\x98\xB0\xE2ū\xE43\x92F\xAB4c%\xC3mq\xAC\x95\x8A"\x93\x84\x94(te\xAA\xA4t\xE4\xA5)?^\xB9ZT:h]\x92ƬB\xAC\xB2u/\xCBK\xC7\xB5\xEBv\xAF\xDCk
-W\x94"`\xE0"\x8D\xF9\xC7ƫ\xE4\xDF\\xC6R\xE9D\xEF\xDA\\xC2\xD9-*mgu\xD0ʖ\xA1\xFC!\xC2$\x84\xB9w\xF5O\xB4\xC5E1\xFB\xFC\x82\x96H\xE6\xF2\x9DUnP\xB2\xC9\xFEj.0@V\xA6IrC\x84bf3\x96\xBF\xE7]\xE9LK{7\xFCAI\xDAYC\x93w\xF6O\xD4\xFE\xA55\xADܖ\x96\x9D0XV\xC6*\xDDS
-W4G\xC0
-\xC0ť\xE4nf\x880\x9F\xB1\xC4\xF6\xBE\x9BW\xE6\x8AX\xD98\xA5\xB5\xCEW\x982#\x83\x85\xF0T:䗟\xB5!\xBF\xF5Ҵd%I\x92#Y\xD0V6\xB8$\xE9\xC3$-o\x880\x93\xB1\x94N
-K\x8B\xF6\xC6鲽V\xB9\xB9\xFCv\xAC\xF2T\xFA\xAA\xDB\xDCJ\xD5\xCA>\xADiKpX!$C\x84Nr\x91I\xA3\x95\x97\xB1\xB4N
-u~\x94\xB0|\xE5\xC9\xF4W-\x9E\xA9\xBDL\xD6`K\x97\xB2J\x9E\xDDҳ@kC\xD3\xE9\xA4Y.]\xA5\xA3\x84ɰ\xA0l\x84\xD2\xFASZǪz\xC7\xE6Oʿ\x84^+\xBA\x8F\x80@\xA1˰{\xCE\xB1\xBA\x98Z
-]Y-\xCAW-^\xD8r\xA6J^"\xC9-\xA0\xFB\xA2\x8D\xBD\x9B\x81L\xA7\x94\x9B\xAD*]\xE25\xAEK\xE6\x9F.\xE5\xA34\x87\xA6ih\xE9\xE5i\xBA\xEA\xE2\xEE\x80<*X4hrO\xEE\x85g˝E\x98f\xB5\xCBe.\xD0k\xFD\xD2\xDA^!\xC7-j\xF1[\xDDsmX\xE6\xFCAm\xAF\x99cK\v\x8A\xD1\xEE&![9k0=)\x8A\x80B\xE3\xB37\xF2\xB5\xFA\xB2\xCF=X\x81\xB0k8D8C\xDF\xE4n{S7\x89\xDF^\x9D\x99\x87)\xD6Z\xEB\xF4g\xAC\xE3X\xEB8\x8E뱎u\\x8F㺎\xE38\xAE\xEBx]=\xAE\xC7q=\xAE\xAF\x8B\xE3uq}]=\xAE\xC7\xF5\xCEz\xDD\xDC^\xAF\xEB\xAC\xC7\xEB\xEA\xF5uq\xBD\xB3nn\xAF묛g\xD6;\xEB\xC93;\xEB\xE6n\xE6!\xEFF\xBC\xAE\xD7u}]\xBD\xBE.\x8E\xEB\xC9]\xF3\xBEv{\xE286\x9B\xEAndw!\xDD\xC1t\xA0Mk\xEF\x80H\xF7\x9B\xA2\xC0G,\x80\xC0>M\xEEJ)\xB5        \
-Oy\xAD\xEBvkt\xE6q\xE5=qc\xB7\xB7J\x94R\x9BĖ\xB09\xD9T+XJ)e\xF2A\xF0\x8B$\xFF\xD9\xEC\xA1G\x92Pb&\xF7\xBA\xFBvٕذh\xBA\x85ɖ\xC8\xFA\xDC\xEB\xE4-\xC0z\xB6        ,\xE5Ŏ@\xAB\xB3y\xC6\xCB.\xD9\x98\xD4\xF0B%\xC9Z\xAC'\x88P\xA5!\xA8\x9B/\x97LH\xAD\x8F\xE8\x90\x8A tc\x83*\xFB\xEF\xD9\xC9\xCF\xF0[\x92\xEE\xA3_\xEB\xEE\xEA\xD6\xCB\xF1`\xF3\xB6q*X\xCAE\x90\xAE\xFEe\xB7A\xAA\xAB\xDDE\xCA%        \x95\xB9\x99
-\xCC\xDE\xF9uq+\x8B\xEF\x9DF\xC0\xC2@df3
-\xD9\xF2[\xA7۟\xA5.n\xA4\xF7\xA1\x80\x9E\xD9,\xA5\x94\xAD\x94\xCA\xF6\x88W\xBFD\xBA\x906\x94\xA7\xDC\xBB6\x9F\x82y\x89Nr\x8A\xB9\x91\xB6\xB7{\xF5+\xFEv\xE5\xBD6muW\xB9,\xD5E\xB9i=\x95v\xA38E\xC6 \x88-\xB0\x94RJ\xB5<sTU\xAF?ɫBU>S)%J\x9BZ\x89RZ\x94\xE8\xE4\xE5Z$\x89/\xEB\xEFB}\xFEny\xC1\xCB@\xBC-W\xE2\xEFru\xC5J5]]\xC9K\x88Yt\xDFX\xADU\x91\xAAC\x95\xF2\x83T\xE9s\xB2\xA9EU\xF4\x86\xDBX\xA3\x93Z+\xA5Dk%J\x94VZI\xBE\x88%]\x9F\xA6!_\xBE\xCAA\xE6\x86)\xCB\xF79߰\x88\x95\xA6\xB3\x86\xF1\xA8if\xCD"\xD0-\xEB=`\x99B\x914\xA4\xAB\xAE?5JT~:)\xC9-iMH\xDB\x96N\xF2\x96*\xD9\xA5\x943\xA8\x95\xC7\xCCf,\xC9\xC6,\xA9lr\xF7\xB70\x97\xAE\x9F\xC5\xE7\x9F\xF0轶\xB8\xFB~\xB9\xAB|m\x95U\xAB\xB4V\xADbS@\xEB1`%\xF5\xA1\xA6e\xAB\x95/7\x95,/\xF9\xA3\xEFeU\x88t\xDEC^c\x96\x94\xD0\\xF7Ƥ\xA3d\xA00\x9F\xB1ďYҰ+\xD9\xAB\xFC&*?\x8A\xC6s\x9A\xEEc\xE6\xFDK_毿\xEC@\xB7T\xA9"eк\xF5\xB0\x94R\xBA\x95d\xD5h$\xAB,T\xD9i9s\xD3\xC0\xE
4\xD6\xE9-\xA8\xE5b\x8D6u\xF6\x86?Jh\xFB\xB0\x92\x81B\xC9f,I\xA3\x88\xB6\xFF\x94T\xB0\\xB4J\xF7ыt\xD9Ʃ\xCC\xF8`\xEEFY(\xF4F3G&_g\xB2\xB9-\x84\x8B\xB1,=\xE4\xAD\xE4'z\xB3hA\xE0\x80eBE\x93q7\xFE\x95\xAD\xCA\xFF\xFDV\x85@\xE0jZ*\xB3 \xFF\xCC$oh\xE5\x86\xDB\xECSM\x87\xBB\xB67rE,%6c)\xADҌ%\xE9\xA1\xE3ɼm\xCA\xFA\xE9\xCAOT*W\xBE\xB23\x8Bھ\xB1d\xF9Ș\xBE\x9F\xCBrG,E\xB3e\xAA\x92C\x9D\xCD\xE6-\xAAYT\xB0\x94j\xAD\xA4\xE4\x8FzZ\xA4\xB1aŅ\xEF96\xA3x\xAFq\x85\x9Cܨ\x99\xAB\xF9jb\xF3V.\xF1\xF8E\xAC(\xAD\x95ı\x88\xB2լ\ƒ\xC2afO\xFC\x95\x8DG\xC5\x94R\xA2\xA2\xC8/ee+m\xDE!\xC9\xDE\xF6\xF7.\xB3\xD7^\xE9\xCEی\xCC1kp`Oj\xF01\xB5\xF2Q#X\xC0RIS\xC5\x94(\xC9-\x96\xFAw3\xFD\xB3\xA3\x84i\x90\xCA>ۏXna\xA9ؖ\xAEt\x92EL\xEDJ\x99\xC9V#\x9186\x83\x83\xCA\xFD\xCCe,q\xCDYn/\xB7\x99\xAD\xF56\xD2-\xFFe~F\x91R濴\x97\xEE\xA6\xD9\xECl\xA2\xCA\xECeq\xDF\xDDF\x8B|\xD9`U6tX؋\xA6\x8A\x88@\xA9K)U=o\x94\xF9_\xAD\x8A\xC3X\xEE\xA6\xF7\xA8\x8B\xFE
m\xA5\xBCW\xB9t\x91\xFC\xCC\x84숤"L\xD6!QI\x8BH,n\xA0P\x8B-V*ɌJ\x8B\xD6"Z\x94V\xE2\xF6\xD3\xEDJf\x9E\xFF\x80\xE4*X\x9A\x98ҭ\x8CL؊\xD2\xE4\x94\xFCW\xBE;ng\xFDU\xD9C\x9D\xBEW\xE6}\xC5{I\xB3\x8F \xB3\xAC2E\xA9BV=X-T\xAErO0AA\xA7\x82\xB9ҋ\xF2_\xEA\xEA@^hp%\xFD7\x97cl19J\x89\x8Et\xAC]\x93\xBBD\xA2\xB4\xD2&M)I
-\xA3Hi\x8B(-\xB1\x88\xE8\xB4\xE7ݔ\xB2$\xAD`%tY\x96\x8BV"\xB9\xADJ\xAAV\xEE\xA7\xF2\x89S\xAE\xA0\xE5\xB1\xA2(\xB2*3\xE2)ގ\xFBa+=P^\xAA+D\xA9\!P\xCA\xEFz\x9FD%2\x9E\x86\xEB$5yCnLJZ\xFB\xC7\xFA\x8B+X\x{18E5F1}\xEC[L\x8ATE^\xA8\xB22\xD5,\xB3\xC4\xC5'{;_\xCB\xB4Ҩ\xE4E\xAEd\x85vC\xD3}h!B\x95\xAF\xCC㔲Hl\x84k~\xF4\xA8\xC8KT\xF6V\xA3\x98\xE5U\xB0$\x8A"\xDBqe\x9B\xB1"W\xBB\x92|\xF0J[\xB5\x94\x8A"\xB1\xB3\x950\xB1\x99ʕвé\xF6\xA6R̟\x8F\x99\xDC\xC9\xBD\xD2\x80fX\x98\x80\x95\xDEmX\xC1\x92\N%I\xEBUd۰\\xF9\xCAE\xABȥ(\xF7ףe\xB2\x96\x8B`\x92y\xC0-\xF1\xFE\xBCB\x94\x97\xB3㛹Q\xDA\xFC\xDEV\xAC\xA2l\xC0\xCAW\xB0l\xB4rÂn\xA8\xCEOW\xC9"\xD3u\x95F+\xF3\xDC(\xF7\x9C\xF4Q\xC9F-Ӷ\xA5
-\x8D\xF0Ż\xD9\xE0ո:U\^\xA2\x88X\xB0PQ$\xC5`aV\xAD\x94?,h׀\xA9\xC8\xFE\x97v\xBBGق\x96_\xE5\xF2
-c.Qy\xFD\xEE\xF7\xEC6\xF8\xE79\xE6\xAAZ\xDEY~\xAE*\xABcU\xF7c\xB2\x9B5V\xB9,7\xE7\xBA\x94c\xB3\x91\x8D0vdP\xFC9\xB1"S\x8DJ\xEAXQf\xE80S\xC1\xB2\xAF\x8A$\xC9XiK\x96W\xE9\xA5wz\xA3\xB2-ɤ\xAB\xE2\xD0a\xC9\x9DR\xF2 \xC8 `\x90f\x8A\x97f\xD2r\x91+>\xB9\xDB\xE9(a\xA1\xA0\x95\xDE\xF5:\xB4\xFC
-\x96\x9B\xEB!Jz\xDEs\x9D^\xB9\xD1I;D&\xFFy-\xEE^\xE1*\xB7\xDCɗ\xA6*B\xF1\xB0#`\xD5"\x91b\x81'\x9B\xAB\xB2\x93)(\xA4/RQ\xA6p\xB9!\xC2LY+\x9B\xB7\xFC'\xB8S\xCD\xCFҎ+\xBF\xFD]\xBC\xBB\x92\x96\xB2r[\xEE\xEDI\xE3 U=\xC8X!7\x94\xEBdIDAT`\xF3D\xC0
-\xC0zsd\x9BܥP\xC1Rv\xCA;\xE5UvN,U\x8B\xAC\\xB9+_ʲ50\xBF\xA0\xE5?V\xE8\xCFM\x9A\x9FN"\x89]n\xBF\xCA\xE2Q\xC9BRY\xACL+\xE4\xE7\xADl\xB2\xC9͆\x95\x96\xAFT\xA4\xA2Z\xA4l\xB4\xCA\xF5\xB9Gi\xF0ʗ\xB2\3\x96\xC9X\x92\x9Eu(\xE6\xC9\xF6\xBD\xD2\xE9\xB2̆y\xAD\xF1\xCA\xDF\xE0Ҳ\x96\xCA\xDE\xF1\x8F+\x80\xDC\xA1\xCA\x81\xBC\%"i\xB47h\xBA\xD4\xEDlX5[\xD0\xCAg\xAC\xEC\x8CY\xB6\xFBݞx\xE8\x8Aaio\x96_\xAFJc\x94?\xB3\x83\x9F\xA2l\xDE\xF26\xDE\xFE\xCC\xE7@5V\x95\xCB;\x8F\xCFXi+z\xB0\x94(\xD5"\xB0\x92RV-r\xFF\xA9(\x8Ajʅ\xB0(\xF2F\xD3zU\xB6\xA0e\x87#\xED\xF1\xEE\x8D3\xFDX\xF6\xAC´o,7\x80X\xAE\xBA\xFF\x80\xCD+\x80\xA8\x96;\x8B\xB0\xD8$\x9E\xB67EQZU\xCAM\x82\x95\xAC(\x9F\xA2l?V2w\x83_\xD9r\xCB%\xAA\xB4\xA0\x95f\xB8(\xADf\xA5Ӿ\xA7#\x86\xE2\xE6\xEB\xCA\xE5$I\xD9i\x85\xF9LE\xC6@DXA\xD8
-V\xE94-^|\xF1\x9A\xB1"37iI\xC0R\xFEXa\xE4\xB1\xA2(\xAA\xB9\xE6շ\xB2\xF38$]ZޔZ.iEI\xD22\xE4u\xBD\xFB\xD5,w\xB2\xA379Vf\x8F(V\xD0+\x80\xA8WM
-\xE5W\xF8q\xC3m\xEE,BI
-3\x8D\x8A\xA4\xD2        \x93\xC1As\xC3\xCFU\xC5:V:P\xE8F3\xFD[nF\x86LGV\xA6c]eg-;_\xB0j2\xD2җ\xB0"``\x86\xF3\x9E\xCCd-\xE9\x9F\xB9i\xD2h\x95o`\xCF\xAC\xF4\xC3\xE44C׃ez\xB3\xBC\x92\x95-_\xF9\xD31\xF8\xF537\xBF\x83ع\xB2\xC4\xBAM\x95\xB4\x84U8)4C\xC0
-\xA0\x96T\xB0J\xE6\xC1\x92\xECTX\xC94
-"\xAE/*7\xE3\xA8wa\xE4\x86\xFDte\xFF\xCB\xDC\xF6\xC7]\xBD*;IiZ\xD0\xF7v~\xFA*\xAF\xB6\xE5GF)\xB1\xCAKwl\xC6X\xD4zez\xB0\x9BQrmX*ӏ\x95KW*-Xi\xA5\xAA\xA6T\x94KTQvV\xF7l\xCFV\xB6\x94\xE5l\x96\xCAt_e[\xB1\xFC\xED\xCF\xDCHw';9V\xEEV\x95=X^(?\xE3\xA8Jgg\xC8\\xEF9ӷ^6_\x83\xCAU\xB0l\xE1\xCA>\xD3or\xCF\xB4\xD2\xC1\xC1\xB4˟q4\xBD\xB4\xF8%\xAC\xC2>\x93\xA8h\x8C\x80\x80\xA9`\xE5\xAB8-\xF4`\xD9\xC2Uf\xC40\xAAE\xFEpa\xA1\xD5=\x9B\xB7\?\x96\x97\xB127(\xAFЕ\x9D\xA6\xA1\xE1\xE0`fv\x9B\xB1\xFC})E\xE4\xC0"``z\xB0*.\xF6,~1\xC8M\xD0`-\xB7\xBA+\xBFˍ&s\xFDX\xE9sҎx\x93\xA8\x92\x82V\xE3l\xAAK7@\xFC\xF1A\x95\xDEM\xA3\x94ۋb\x8A*\x8FUd-\xC0捀@\x94\xAD`e2\x87-V\xAE+\xBDH\x8Ek\xC9rU%\xAD\xDCp\xA1߉\xE5u\xBB\xE7\xC7
-\xD3\xF9mXi\x9F\x96ml\xF7f\xDERv\xB9\xC9\xCF&j+m\x92߯\xA5,jX\xACj\xB9,\xAF\\xB2\xCDXi\xA8\xF2:\xB1L\xF4\xF1{\xB0\x92\xB3sS\xBAN'\xF4\xF2Vn7\xBCY\x8Bd'\xCAJ\xCBW\xAE\xA4\x952ɦ%\x95(\xF4e\xCA\xB0\xA8\xF5n\xDC\xE4.\xD5}\xEE\xE9lX\xE5=X^\xEB\xBA?3\x967\xEFhz\x82a.o\xE5O34\xE3\x8F\xCAou\xF7\xBB\xDD\xDD9\x86\x99\x93\xFDh%d)ZC\xC0
-\xA0\xA5&w?Ty7\xD2\x{1F4225}TT\xCB-\xDA\xEE\xAB\xCCLCon\xF7\xCCܤn\x89\xBD\xA1\xCAW\xB6\xCB*\xB9]L\x8B\xE6g\xD9h\xC3El\xBEX\x98
-\x96cCUz_2M\xEE\xAE\xF9=\xADZ\xA55\xADl\x96?\xA5{\xF5y\x85飹'\xA4\xFFE\xB6\x82\xB9\xF2UZ\xD0\xCAW\xAD\xDC$\xEF\xE5\xBB\xE3\xEFWq\xDF\xD8\xCC\xB0\xC8\xF7`^.I\xC7\xBD\xC9\x92~\xBA2լ(\xBD\xE1ό\x95f\xAC\x8A\x89ܣ\x99n\xF7\xC2\xAE|\x95\x99\x86T\xEC-\xC9\xE6\xBB\xF1A\x95͈R\x91\xCC\xE7\x80\x87\x80@\xA1\x82e~\xE6*=\xB9\x81BU:bh/#\x98\x99\xD4բ\xBC\x8B=G\x99\xD3\xFDi\xB1\xF2\x85ޜ\xEF\xA6\xDB\xDD\\xAE'\xF9鷅\xA9t\xD33\xD1\xC9۫Rd)\xB2X\xB4ރ%v\x9A\x86|\x96\xF2.\xE8O=\xA5\xD74\xCD\xEF\xE9\x95s\xFC\xE6w\xAFv\x957L\xE6nH\xDE-\x8A\\xEF\x95]\xE8Z\xEF\xD3&w\x97\xF9J\xC7Ӥ\xD8q\xB0\xD9#``\xCF"\xCCu#\xE5o\xE5\x95d\x9A\xDCs-Y\xE9O\xBFv\x95\x9D\xB8\xC1LU4,N\xEE\x906iy\xAC4\xD2y\xB33x\xC9/\x93sU-\xC9ݵ\xCBY>\x9CX\xF4\xCA\xFACf\xB9,\xB13\x8E*ۉ\xE5͌\x90\x93\xA2(\xF2\xAFQ\x98\x89V*߉\xE5wh\xE5\xA3U6We\x96\xA8\xE4Ui\xC1,\xDB\xDE\xEE\xEDK\xD9I\x85\x85\x9D%Y\xE0#`Pz\xB1g\xBFp\x95.P*\x8D\\x99:eӕ\xBD\x93.\xF4/\xFF\xEC]\xD4\xD9-,
\xA4+V\xD2t\x9A+JkT^\xF1̟w>\x95\xDBx\xFB\xD4̮+\x80\xD2&w{;[\xBB\xF2\xA6\xF5o\xA7\xAD\xEE\x91\xCDZ\xF6Z:~\xB4r5-7'\x96\xB0J\xE6t\xF0ӕ\xFF|78(.Ty\xE5\xABt|\xD04\xCC\xED2\xC9
-\x80
-\xAC*\x9A\xDC\xDDr\x9B\xB4\xBC\xB6\xF1\xEC\x90\1W\x95͌\x95\xED\xC4\xCA\\xBA\x90\xBAl\x9F\x96ʍz\x83\x83\xFE(\xA1۞|\xE1\xCA\xEDF\x83\x89\xB2à\x81\x8F-F\xACJ\x9B\xDC-\xD79.\x92\x89VҠ\xE7=\xCDU\xDE\xF8\xA0\xCAΏ\xD5 `U\xA5+\x95N\xE3\xEE\xBAa\xCA\xFCɃ"\x99&w\xE5\x87ŒzVq\xAF\xC9Y\x80\xCD+\x80\x8A&w\xA9\xE8\xC1\xBF\xABɦ\x994\xB9k\xA6wW\x8D\xCF.\xCCִ\xF2\xA9\xFC\xD3\xD2AI\xF7\xBE\x99\xACfc\x81-\x84-6C\xACʛ\xDCE\xA4Q\x96HU\x96?ZW\xCC@~~2O\xF0
-W\xE9\xC0\x9F\x9B%+;\x99\x96\xB9\x9DN|eG$\xBD\x9F^\xF7U\xB1\xCC֠\xBD\x9D\x9C\x80\x8F\x80@\xA1\x82\x95\xBD\x97%\xD96,\x91\xD2t\xE5\x9DfX\x96\xB1r\xA5,\xBB\xB0d\xC4\xD0\xCC\xFB\xA0\xBCf\xCEU\xB4W\x98v]\xED*\xEDm\xF76\xA9\xB8\xB3\xFE\x80f\xE1\xB1\x80\x8FVQi\x93\xBB\x884\xEA\xC1\x92|\xB4\\xD2t\xE5ڤ\xF23c\xC7
-3\x85\xAB\Y\xCB=\xC7֮\xEC\xC8c:\xE9\xFDTi\xF9\xAA,\xF0\x95\xEE>\xE5+rX\xE4+XFa4-\xAD\xECCJy\xB7\xD3P\x95\xBD\x91\xCE\xF6^\xB0\xF2O\xC8>'\x97\xD2r\xD9J2\xC1\xAE|O\xFD\x93
-\xA5\xBC\xC2X!4\xEF\xC1\xB2wďV\xE2\x9D\xCD\xE7\xDFN;ͳW\xD1I\xF5\x8A\xCD\xE9\xE2\xAE2\xA3\x8Aٻ\xB9\xE6%-ɧ\xAB\xC6\xE5\xAB\\xF8J\xEF\xAA\xC26W\xAC\xCA+XF\xE9lX\x92orO\x9F)\xE5r\x98n
-\xD37d\xA2U\xBE\xA6\xA5\x92\xD9D]\x96\xDFw\x95\xCDU\xD95{٨\xA4Ê\xF2\xAD!``z\xB0r\xB2a%S\xE6Q~@\xB1\xB1ƻ۰+\xCDOe\x83\x86\x99'4\xA8r5\xAA]y9ϛ\xF9\xAAY\xF9\xCA\xDB۞C>JX\xD4z5\xBCTN\xEE\xBE\xCA\xD5~\xBC$\xE3\xEE\xDA\xDB\xF9~,e&\xCA\xF2fXȜiX\R|I\xDA\xE7\xEE
-W\x83\x83v'\xDCF\x96\xEC#\xF0\xB0\xA8\xE5*X\xF9.%\xFF\xB6\xF2\x97\xFA\xED\xEDb\xB3\x8DHYoVT\xC8=~\x90Rɘ\xA0ߤ\x95\xB9tt\x83tհ\xF5\xAA0 X\xBAGłV\xC3\x9BVQu\xABq'\xB8\x8BP\x99%^\x93{i\xB3yn\xE8Pe\x93\x9DGT\xE5{\xE4s%\xAE\xCAt%\xE9\xC6xSHd\xF7\xAD\xB8S\xC0 `\x90\xAF`\x89Hi-'\xA4Jf\xE7ǒ\xE6-Y\x8D\xA2\x95\xD8\xECUxy\xBE\xCAU\x9A\xAEr\x83\x83\xE2\xDD*\x80\xF6\xE0\xC0\xF0E\xC0
- ׃\x95Q6>X\x88,\xF9&\xF7\xF4ɹj\x93?]Vd\xA3X\xB67\xABa\xD1\xCB\xCE\xF2P\x9Cd+?\x8A٨EL2\xCF*\xD9W\xC6VQ-?|\xE6\xF3cG\xB1\xB1)\x9F`\xFCL\xE37f\xA9\xF2\xC8U^\x85*\xA9{U\xBDʾK\xEEݳg\x96\x96\xAF@VQY\xAB\xB2\xABQ\xBAJ\xEF\xFA+\xD3U\xECo!Z\x89_\xEB*d2Iggȿc\xE9\xCE\xE468\xBF\x80\xCD+\x80\xD2,'\x9F<
-\xA1\xA44`\xBA\xCBC\x84eŧB+\xAE\xA4,\x96I\xC3tU,\xBF\xA4h\x8A\x80@T\xEBN\xC0jRЪ8\xB5P\xBClT\x88S\xF6\xF9\x99h%\x92\xBB\x{DBEB}Y\xBAj48H\xF9
-\x80XT\xAC\x92\xF6p\xFFv\x9A\xA5ܒ#\x86\x8DO0\xAC\xBA]^\xB8*\xAEGZKW)ZA\xC0
-\xA02`d\xDD\xF2\xCDLn\x89K?R\x92\xB12YJ\x8A}Z\xD2 ZI\xBE\xE9J\xFC8եtE\xF9
-\x80\xC6XT6\xCBX\x99\xA4a\xC6\xF2^\xE8\xE7\xAA\xDC\xDDt$1UR\xB8\x92lV+\xBEK\xA3mf\xEE+\xAA\xB0H\xA6ih\xAAqdIo\xE6\xD2UY1\xA9A\xCC\xF2z\xAD\xA4<Z\xA5\xAB-D\xB4\xFC\xCA\xCB7\xD9,\xCA\xEDi\x80<V*\xAAnro\xB2\xA8\xA4+K\xF2I\xABq\xCCJn\x97\xB5ƗG\xAB\xD6\xD9 \xE4\x80\xD6\xB0h\xB5\x82U\x9AT\xE6\x92V\xBE\xBC\x94\xB9\x94\x8D*,\xE9r\xB4\x92\xD3\xE5+Z@\xC0
-\xA0\xBA\x82\x95>\xAD\xB2+\xF7\x8C\x92|\x93\xA9N\x95.L_\xD9(ZIY\xBAjT6\xCBo!\xE9
-\x80\xD6\xB0\x88\xA2\xEE\xF4`T\x9F\xA6W\xAA$\x9B\xA2\xA4\x8B\xD1J\xBA\x9B\xAE@V\xAA\xB5\x80U6>X\xF5\x9C\xD2|\xA3\xB2\xF1\xA8<WIU\xB4jey\xA3w\xAF\xDA`\xB0\xE8~\xC0*]ޠ\xAC\xD5(T5x(\xBB\xE6\x8A\xEA\xE9
-\x80\xD0XD\xAD\xF5`%\x84\x93bj\xC9,\xA8Uҵ\xFCT|HHWE\xC0
-\xA1,r\xB4DʟR\x92\xB4ʒP\x93\x8E\xF8\xCAG\xA5$x\x95l3\xE9
-\x80n!`\xD0\xED&\xF7\xC2\xE3M\xBA\xE0\x9BלZ*J\xB5\xF0!]\xD0}\xACZ\x9C\xA6\xA1\xFC\xB5\xA1%\xFBX\xE5)\x87]\xCBUUO\x93\xEE\xE4\x80A\xC0
-\xA0;٣\xF25\xA5VL\x9AU|I\x8BѪl\xB5-\xBC5\xA8D\xC0
-\xA1\xB5\xFC\xD1bJi\x98f*sR\xC9\xBB\x94\xAB\x92\xA5]\xD9\xD0+\x80\x9E&\xA7\xD6V\xD7RY\xAB\xECyݎV-\x9F*\xB0h\x92B\xBA\x98Q\x9A\xAD\xAC<g\xB5\xB2\xA2+\x84\xA0C\x84\xDE\xF3\xBF\xA0\xEC\xA1\xC6C\x8B]\xC8U\xCD\xDF4C\xC0
- \xF0aWޠ2\x835
-\\xD5oE\xB4\xA0\xA7X\xAC\x8F\xE4ԽW4\xAC\xEC\xC1k@\xCBX!\x8D&]ZY\xF3T\xD4\xC2ڈV\x84E\xC0
-`\xC3䓮\xC5 rkS\xD1Ӹ\xB6\xEEz\x80\x80\xC0\x86\xCE+\xDD\xEF\xF8"W\xB0!\xB061A#\x89
-\x80\x8D\x82\x80\xC2&cHTl
-XVd)6Y\xACM\xE1        \x805V\xE4!\xE0\x8B6\xF6|\xD4\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0SZ덽-)T\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\
x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0
#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0#`F\xC0\x8C\x80 0@`,\x80\xC0X\x81\xB0\xFC\xFFv\xEBX`\x90\xBF\xF5$vE\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1\x98        \xC0L\xB0f\x820,\x80\x99`\xCC`&X3\xC1
\x98        \xC0L\xB0f\x820,\x80\x99`\xCC
-\xB1E\x95\xC1c<\x87IEND\xAEB`\x82
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectiononboxshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 777x35
- text run at (0,0) width 777: "The shadow should match the color of the top square and not the color of the bottom square. The top square and its shadow"
- text run at (0,18) width 232: "are both color-corrected from sRGB."
- RenderBlock {DIV} at (0,52) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,152) size 784x18
- RenderBR {BR} at (0,0) size 0x17
- RenderBlock {DIV} at (0,170) size 100x100 [bgcolor=#560063]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionontextexpectedpng"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.png (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.png        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.png        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,42 +0,0 @@
</span><del>-\x89PNG
-
--IHDR X')tEXtchecksum264c31661ebcf3cb3772c9511245efca!\x88VdbKGD\xFF\xFF\xFF\xA0\xBD\xA7\x93 IDATx\x9C\xED\xDDypU\xE5\xFD\xF8\xF1\xC3fH$"
-"\xA0\xAA\x88(\x8A\xA2,\xB5\xB4T\x8B\xA2V\x87Zu,VK\xB5j\xB5c\xD5q\xC6\xDA\xEFTFE+\xAE\x9DnS;Uh+u\xA4Zк+"\xA2\x88\xA2Z\x83\xB2\x91M(\xA0,\xB9\xDF?\xCE\xEFw\xF9%wK\xF2!\x8A\xBC^\xD3鄛{\x9F\xF3\x9C\xE7>\xF7\xE4\xEDMe\x99L& \xCEn\x9F\xF7\xBEl@0\x81L`X\xC1@0\x81L`X\xC1Z5\xEDa}\xF4\xD1֭[\xAB\xAA\xAA:t\xE8\xD0\xE4c\xAF]\xBBv\xE3ƍ\xE5\xE5\xE5]\xBBvm\xF2 \x9F\xAF\xA5K\x97&IұcNJ\x8A\x8A\xA2w^\xB3fͦM\x9BZ\xB5jեK\x97?\xB5\xA6+多|.\x8DZ\xB1\x85\xEC\xC6\xC6ʷ{\xEB\xB3<\xE3M\xF3\xE5>\xBB\xD4\xBDF\x952x\xBA\xB7+++\xAB\xAB\xAB\x9Bv\x94e˖\xD5\xD4\xD40\xA0}\xFB\xF6eeeM\x9Dl\xB3\xE4;\xD3]a\xB1+\xCBXS\xA6Ly\xF7\xDDws~j\xE8С\x9F}\xF6\xD9%\x97\2z\xF4\xE8[o\xBD\xB5\xC9\xC7\xFE\xF0\xC3o\xBB\xED\xB63f\xACX\xB1"I\x92\xC7\xBC\xA6\xA6梋.*\xFA\xC0\xD2﹣\x999s\xE6\p\xD7]w\x9D\xFE\xF9E\xEF\SS3q\xE2ę3g.^\xBC\xB89\xAD'\xE4D\xEA*多|.\x8DZ\xB1͛7\xAF\x{1EF101C}+\o\xF7漽\xB1\xAB4ac\x8F=vذa&L<x\xF0\
xF0\xE1ß{\xEE\xB9\xE7\x9E{.\xFDl\xFF\xFE\xFDG\x8F\xBDiӦ_\xFD\xEAW\xB5\xB5\xB5I\x92\xEC\xB6\xDBn\x97_~yEEE\xC3\x96r
-ʹ\x83\xF6\xF3J\xBEg\xB9\xC5O\xF7\xF6\xC9'\x9F<q\xE2\xC4&⮻\xEE\x9A;wnYY\xD9        '\x9CPUU\xB5x\xF1\xE2\xFC\xE0-\x9FY\xF9\xCEtW\xD8B\xEC\xCA\xF2~\x8B\xF0\xC18p\xE0ȑ#G\x8Du\xCF=\xF7̜9s\xE4ȑÆ-\xAB\xAC\xAC|\xE2\x89'F\x8E\xB9\xEF\xBE\xFB6\xF3؇v\xD8СC\xEB\xF1\xF6\xDBo/p\xFF\xEC?\x9BX\xF4\x9E;z\x90\xAC1cƴk\xC4;8\xF0\xD8c\x8Fm\xE6
-9\x91\xBA
-\x9FT\xBA\x80M>\x97F\xADX\xBD\x83\xE6\xBB=d7\x90s\x85\xEB\xEDޜ\xB77v\x95\xEE\xBD\xF7\xDE$Ir\xDF}\xF7͟??I\x92aÆ-2\xE4\xFA\xEB\xAF\xDFo\xBF\xFDN>\xF9\xE4$I***\xAE\xB8\xE2\x8AG}\xF4\xD1G\xBD\xE2\x8A+\xD27>\xB0\x94Sh\xA6\xB4\x9F[F\x89\xFFk\xBEg9D\xE1\xC1\x9B\xBF\xB77m\xDAt\xED\xB5\xD7\xDEp\xC3-\xB7\xDEzk\xBF~\xFD&O\x9Eܨ=\xF8\xCF\xD4\xE6;\xD3&o\xA1/\xD4?\xA1\xFB\x85\x9A_(y\xDF\xC1\xEAѣlj'\x9E\x98~ܦM\x9B\x8E;4(I\x92\x83>\xF8\xCE;\xEF\xDCS\xF9\xEDo\xBBm۶|\x9F\x9D:u\xEA\xF2\xE5\xCB/\xB9䒢\xF7, d\x90\x86v\xDB\xED\xF3\xFCQ\xB6\xC0\xA9+\xE7I\xD5]\xC0\xF0\xC1\xF3\xC9wШ\xC9\xB5\x83V\xB8\xA1\x9E={\xF6\xEA\xD5+I\x92^\xBDz\xA5$I\x92~o\xA8C\x87\xD97v\xDF}\xF7\xB6mۦx`]-v
-;\x85\xDB9M2Ú\x9A\x9A-6TUUUWWWWW7j|\x91\x97\xE85\xB7/\xD4d\xF8\xA2\xC9X\x93&M\xCAy{\xA7N\x9D~\xFE\xF3\x9F\xA7\x97\x97\x97ϝ;w\xFA\xF4\xE9m۶7n\xDC{\xEC\x91\xDE>cƌ\x97_~\xB9\xBA\xBAz\xECر{\xEE\xB9g\xC3A\x9Ez\xEA\xA9g\x9F}\xB6\xB6\xB6\xF6\x83>HoY\xB8p\xE1ܹs+**F\x8F\x9D$ɒ%K&O\x9E\xBC~\xFD\xFA\xEEݻ\x9F{\xEE\xB9K\x97.\xFD\x9F\xFF\xF9\x9FL\x9E<\xF9\xAB_\xFD\xEA\x82\xD2{\xBE\xFC\xF2\xCB555\xFD\xFB\xF7߲e\xCBc\x8F=VQQ1nܸ\xCA\xCA\xCAt\xCCٳg?\xFF\xFC\xF3k֬\xD9{\xEF\xBDO:\xE9\xA4L&\x93s\x90\xF4\xCE3g\xCE|\xE1\x852\x99̐!C\x8E;\xEE\xB8$I
-^\xD7'\x9F|r\xF7\xDDw\xAF^\xBD\xFA\x88#\x8E8餓\xB2\xB7]\x87\x86\xFD\xCB_\xFE\x92~\xF7\xE7\x90C9\xF4\xD0C\xB3\xF7\\xB6l\xD9\xF3\xCF?\x9F$I\xFF\xFE\xFD>\xF8\xE0\xEC\xED\x85\xD7-\xFB8U\xEF\xB3/\xBE\xF8\xE2\xAAU\xAB?\xFC\xF0>}\xFA̙3\xE7\xBD\xF7\xDE\xEBر\xE3ȑ#\xF3\x9DԻロ]\xC0SO=\xB5=\xD9\xC2+\xF6\xAF\xFD+\xE7d\xEA4\xFB\xEEW\xC3\xC94a7\xBE\xF4\xD2K|\xF0A\xBF~\xFD\xB6o\xDF\xFE裏VVV\x8E;v\xF3\xE6\xCDӦM[\xBE|\xF9\xE8ѣXo\x85\x93\\xBB\xB7\xF0\x{D96F}R\xD1Nʧ\xF0\xB5I\x92/\x9C<0ɵWjx\x9F_|qɒ%\xFD\xFB\xF7\xEFܹ\xF3\xE4ɓO;\x{DD06}\xEFǔx\xB8zC\xED\xB3\xCF>۷o?\xF4\xD0C\xBBt钎ܵk\xD7\xC7\xBC\xE1\xF2\xB8\xA4;*}R:t\xE8p\xEE\xB9\xE7VWW\xA7![ʳ\x99\xF5\xD6[o=\xFB쳫V\xAD\xEAڵ\xEB\x99g\x9EYYY9{\xF6\xECW\x8F\xD7\xDDۧ\x9CrJ\xF2\xFF\xEF\xED\xEF\xFF\xFBٟ5,\xB0\x9D֮];}\xFA\xF4$I\xA6N\x9DZQQ1`\xC0\x80\xD7_\xBD\xA2\xA2\xE2\xE4\x93Oή\xE4>\xFB\xEC3eʔ\xD3N;m\xFB\xF6\xED\xF9\xAE\xB7u_t-ϴ\xAA\xAA\xAA\xF0u\xB29\xCBXUU\x95\xFCZPtn\xF5\xF6̩
\xA7\x9Eڭ[\xB7\x8B\x96\xF3\\xB2?\xBB\xD6pO\xE6\xBB:A\xAAYo\xBD\xBC\xFA\xEA\xAB\xCF<\xF3L\x87\xEE\xBC\xF3\xCE\xFE\xF0\x87\xE9\x8DW^y\xE5ĉ\xBF\xFB\xDD\xEFf2\x99~\xFD\xFA\xAD^\xBD\xBAޣ\xAE\xB9\xE6\x9AK/\xBD\xF4\xC4O7n\Ϟ=\xD3{\xF7\xEE\xBDhѢ\xF1\xE3\xC7'I\xB2r\xE5\xCA\xC1\x83}\xF4\xD1\p\xC1\x93O>\xF9\xD1G}\xF8\xE1\x87K\x97.mժU\xBBv\xED8\xE0\x80\xEC=\xFB\xF5\xEB7q\xE2\xC4\xCB.\xBB\xEC駟\xAE\xAA\xAA\xBA\xE5\x96[.\xBB\xEC\xB2t\xC0        &\x9Cw\xDEy\xC7{\xEC\xB8q\xE3֬Y\xF3\x8F\xFC#\xDF I\x92\xDCx\xE3\x8DW_}\xF5        '\x9C0bĈ\xFF\xF8\xC77\xDExc\xE1\xC1\xEB\x995kV\xF7\xEEݻu\xEBv\xF1\xC5_|\xF1\xC5%\xAEC4hܸqo\xBD\xF5V\x9F>}\x92$\x997o\xDE<\x90$I][\xB5j\xF5\xCC3Ϥ_~\xB2
-\xAF[\xDD{6\xFC\xEC\xC0\x81\xAF\xB9\xE6\x9AiӦ\xA5';k֬k\xAF\xBD\xB6\xC0I\xD5]\xC0z?\xC6Q\xF4d\x8B\xAEX\xBE\xC9\xE4;h\xC3ۛ\xB0=\xF4\xD0;\xEE\xB8c\xFC\xF8\xF1\x8F<\xF2Hyy\xF9\x84        \xBE\xFE\xF5\xAF\xDF~\xFB\xED7n|\xF5\xD5W\x8F?\xFE\xF8O>\xF9\xA4\xEE
-'yvo\x81\xDB\xB5J\xD7^{m\x9AG?\xFB\xD9\xCF\xEA=х~`\xE9\x9B$\xC9\xF5\xC2I\xF2\xEC\xD5zr\xDE\xE7\xB0\xC3\x9B8q\xE2\x8F~\xF4\xA3\xCB.\xBB\xEC\xFE\xFB\xEF_\xB9re\x93Wo\xA8\xAE]\xBB\xD6\xF9\xAA\xAB\xAEj\xB8\xBC\x85\xAFeee\xD9'%I\x92\xEC\xA3Jy6\xEB\xBA\xFBt\xE9r\xFE\xF9\xE7?\xFD\xF4\xD3١ҫ\xC7SO=U\xEF\xEAQt\xF0|{{\x8F=\xF6(}o\xF4\xD1G[\xB6lI\x92\xA4m۶\xEDڵ\xAB\xBB\xEA\xAD\xE4\xFC\xF9\xF3\o\xEB\xBD\xD2\x9Ci\xC3\xEBd\xF3\x97\xB1\xF0ׂ\x9Cs;\xEF\xBC\xF3\xB2o\xB8\xFD
-/Z\x81sɹ'L\x92$I2%\xD8\xFF\xFD\xCF>\xFB\xECz7>\xFC\xCA+\xAFL?\xBE\xE3\x8E;\xF6\xDF\xFFL&\xB3dɒ\xF2\xF2\xF2W^y%\x93\xC9\xD4\xD6\xD6v\xEA\xD4\xE9\x9E{\xEE\xA9\xFB\xA8\xA5K\x97\xB6n\xDDz\xFA\xF4\xE9\xE9\xF3\x9B\xDFt\xEE\xDC9\xFD\xF8\xDE{\xEF\xED֭[&\x93\x996mZ\xE7Ν\xB7mۖ\xC9dV\xACX\xB1iӦtw\xDEyg\xBD{֛\xC6M7\xDDԧO\x9FL&\xB3|\xF9\xF2֭[O\x9B6-\xBD}\xF5\xEA\xD5\xFD\xEB_\xF3-\xB2lٲ6mڼ\xF8\xE2\x8B\xE9\xEDO<\xF1D\x9B6m\x96-[\x96o\xF0z\xF6\xDAk\xAF?\xFC\xE1\xE9\xC7ӦM+++{\xF7\xDDw\xF3\xADÝwޙ.T\x81\x83\x9Es\xCE9\xC7|z\xFB\x85^ثW\xAF\xDA\xDA\xDAL&\xF3ӟ\xFE4\xB0\x9E\xC2떕\xF3\xB3}\xFA\xF4\xB9\xE5\x96[\xD2;\xFC\xE2\xBF8p`\x81\x93\xAA\xB7\x80\xD9s)\xFA\xA4\x97\xB2b&S\xF7\xA0uս\xBDi\xBB1\x93Ɍ1\xE2\xB2\xCB.K?\xBE\xED\xB6\xDB\xD2\xA6K\x94$\xC9K/\xBDTw\x85\xF3\xED\xDE\xBB\xBAɫ\x945w\xEE\xDC$I\x8E<\xF2\xC8Qut\xEC\xD8q\xF8\xF0\xE1\xA5<<U\xE2&\xC9\xF9\xC2)\xB0WK\xD9\xCF٧fɒ%+W\xAEl\xCE\xE1\xEA-5|\xF8\xF0\x9F\xFC\xE
4'\xE9_{\x{DD46}\xCB[\xF4:\xD0\xF0I\xB9\xFB\xEE\xBB<\x9B\xF9\xBC\xF9\xE6\x9B\xE9>\xF8`UUU\xFA\x82Mg\x9B~\x9C\xBDz\x948x\xBD\xBD\x9D\x9Ef\xA6\x91{;}\xCF{\xEDڵ\xE9\xD3=PonK\x96,\xF9\xFD\xEF_\xF8z[\xE0L\xB33lx\x9D,\xF1L\xB3[(\xE7\xE0E\xBF\x94>\xB7|\x9B\xA4\xDE -ϥ\xB6\xB66ߞ\xAC\xAD\xAD\xCD7\xC8d2M\xFC5-\xF5TTT|\xFA\xE9\xA7I\x92\xBC\xF9\xE6\x9B۷o\xF3\xCD7ӿҮ]\xBBz\xEF\xBF\xF2\xCA+[\xB7n=\xE6\x98c
-\x8Cֿ\xFF-6>\xFC\xD2K/=\xF5\xD4S\xD37)Eeee:\x8D\x993gnݺ\x{1688CE}Jo\xEFر\xE3g\x9C\x91\xEFQ\xAF\xBF\xFE\xFA\x96-[9\xE4\x90\xF4\x8Fزe˼y\xF3\xEA}/#;xÆ-\xCBd2\xF3\xE7\xCFo۶m\xE1u(pбcǞx\xE2\x89˗/\xEFر\xE3\xDBo\xBF]SS\xF3\xFC\xF3\xCF6\xEC\x8D7\xF9\xE6\x9B\xBD\xF0\xBA5yU\xB3'\x95\xEF=\x95\xA2Ozso\x82\xD2wc=UUU٧\xB8}\xFB\xF6I\x92\xD4{\xC6\xF3\xED\xDERvusV)I\x92뮻\xAE\xEE\xB7e\xBF\x{1B5BD5}\xFEغ
-o\x83\x9C/\x9C\xC7{\xAC\xE8\xA4\x94Q\xF7\xEE\xDD.\\xF8裏\xA6\xECҥ\xCBƍ\x9Bv\xB8\xEEݻםv\xF7\xEE\xDDs.o\xD1\xEB@\xCEG\x95\xF2l\xD6ӯ_\xBFw\xDEy\xE7?\xFF\xF9ϛo\xBE\x99\xBEoTO\xF6\xEAф\xC1\xEBj\xF2\xDEΧ{\xF7\xEE#F\x8C(\xFDʰCϴ\xE1\xE0\x8D\xBAj\x9E[\xBEMR`\xC0\xEC\xB9\xE4\xDB\xDE;\xEF/\xA2e\xFFt\xF6\xFA\xF5\xEB\x93$\xA9\xAA\xAAj]\xBBv\xED\xEE\xBD\xF7\xDE\xF3\xCE;\xAF\xEEV\xADZUVVV\xF8\xF7\xF5\xE8\xD1c֬Y\xBD{\xF77n\\x9F>}\xFE\xFD\xEF7v\xE9\xAB"\xFD~Q\xEB֭K\x92$\xFB\xD2M\xFFZVzcc\xA5?\xBB\xFD\xD9g\x9F]\x871bD\xE7Ν\xA7L\x99\xF2\xF7\xBF\xFF}\xFC\xF8\xF1C\x86\xB9\xFF\xFE\xFB\xE7̙S\xF4RUxݚ\xBC\xAAٓ\xCAw\x87\xA2'ۜ\xC1\x9B\xA39\xCB)\xDF\xEE-eW\x87O\xA6i
-o\x83\x9C/\x9CR^ %\xBE\x88\xE6͛w\xEB\xFF5eʔ&\xAE\xA1\x9C\xCB[\xF4:\x90\xF3Q\xA5<\x9Bu}\xF2\xC9'GqĤI\x936l\xD8ЪU\x91\xFFdm\xEC\xE0\x8D\x9Ayӆ*\xFDʰC\xCF4\xE7\xE0M\x98\xDB\xFA\xF5\xEB\xF3ͭɋ\xF85\x82]J\xCC;XY\xE9\xEF\x8B;\xE2\x88#z\xF7\xEE\x9D\xEF\x99Lf\xE5ʕ\xFB\xEC\xB3O\xBEA2\x99̡\x87z\xFF\xFD\xF7\xAF[\xB7n\xE8Сw\xDCqG\xBE\x9F\xB8\xCFg\xFF\xFD\xF7O\x92\xE4\xC3?\xEC۷o\xD1;\xF7\xE8\xD1#I\x92\xB5kצ\xFF9\x92\xFE\x98Hzcc-[\xB6,I\x92^\xBDzm9)\xB8Z^^~\xD6Yg=\xF0\xC0\xBDz\xF5\xFA\xE3\xFF\xB8y\xF3\xE6+\xAF\xBC\xB2\xB2\xB22\xFBc@\xF9^\xB7&\xAFj\xF6\xA4\xF2ݡ\xE8\x93ޜ\xC1\x9B\xA39\xCB7`\xCE\xDD[ʮ\x9FL\xD3\xDE9_8\xA5\xBC@J|\x8D3f̘1\xD9?\xBE\xF0\xC2M;\C9\x977\xFD        \x9Bׁ\x9C\x8Fz\xFF\xFD\xF7\x8B>\x9Bu=\xFC\xF0\xC3鷟\x92$\xC9\xF9\xA6N\xBD#6j\xF0\xE3$A۩\xF4+\xC3=Ӝ\x837mn[\xB7n\xCD7\xA5\xA4I\x8B\xF85\x82]J\xF0;X\x83-\xDA{\xEF\xBD\xEF\xB9\xE7\x9E|w8\xEE\xB8㪪\xAA\xEE\xBD\xF7\xDE\x83<\xF4\xD0C\xB3f\xCDJ\x92\xA4\xBA\xBAzРA\xAD[\xB7N
\x92\xA4u\xEB\xD6i\xB5\x94\xE2\x98c\x8E\xE9ݻ\xF7M7ݴ}\xFB\xF6\xBA\xB7\xE7dРA={\xF6\xFC\xE7?\xFF\x99\xFE\xF1\x91G\xE9ݻw\xFA;)kʔ)|\xF0QGUt
-\xF4\xDCsϝ3gNuu\xF5\xEE\xBB\xEF>f̘\xAD[\xB7Κ5렃*|\xF4\x9C\xEBV\xF8\xB3\xD5\xD5\xD5E\xC5_\xF6\xA4\x92\xFC\x98\xF3do\xB8\xE1\x86\xFB\x{FFFF}\xF4\xC1\xF3M&\xDFS_tK}+\xDF\xEE-eW\x87O\xA6i
-o\x92\x9C/\x9CR^ M{5\xF9p-\xE5\ޢׁ\x9C\x8F*\xF0l\xE6\xDCҙLf˖-黰E\xB3\xA3\x94\xAD\x92\xB4\xEC\xDE.\xFDz\xBB#δ\xF0\xE0M\x98[\xFAA\xCEC4y\xD1
-\xECɺ\x93\x994iRc\xDF\xE0K\xAE\xF0\x8Fh=\xF7\xDCs\xE9\xDB'x\xE0u\xD7]\x97\xFE\xB7]&\x93y\xEC\xB1\xC7z\xF4\xE81x\xF0\xE0\x993g.Z\xB4\xE8\x94SNi߾\xFD\x9F\xFF\xFC\xE7L&\xF3\xC4O\xEC\xBB\xEF\xBEG}\xF4g\x9Cq\xF6\xD9g\xD7\xD4\xD4\xD4\xF3\xA1\x87\xDAs\xCF=\x87r\xFA駏3\xA6}\xFB\xF6\xFAӟ\x9Ex\xE2\x89Q\xA3FUVV\xDEr\xCB-\xFB\xDB\xDFz\xF5\xEAu\xD5UW]z饃-Z\xB2dI&\x93?~|\xA7N\x9Dƌ3a\xEC=\xA7N\x9D\x9A\x9D\xC6\xDBo\xBF=jԨ=\xF6\xD8cʔ)\x99L\xE6\xF5\xD7_?\xEC\xB0\xC3\xFA\xF4\xE9s\xFA\xE9\xA7\xE7;\xDFIo\xCC9\xC8\xFA\xF5\xEBgϞ=p\xE0\xC0K/\xBD\xF4\xE2\x8B/>\xFC\xF0\xC3_}\xF5\xD5\xF4D\xF2-^\xD7I'\x9D\xF4\xCDo~\xF3ꫯ\xFE\xDE\xF7\xBEw\xF8ᇿ\xFD\xF6\xDB\xE9\xED-\xD7aƌ'\x9Ex\xE2{\xECq뭷\xFE\xF7\xBF\xFF\xCDyЬ\xFE\xFD\xFB?\xF7\xDCs\xE9\xC7\xE7\x9Cs\xCEĉs>AE\xD7-kƌ-?\xFB\xBB\xDF\xFD\xAEU\xABVGy\xE4\x99g\x9E\xF9\xEDo\xBBK\x97.S\xA7N-pR\xD9\xFC\xE5/Y\xF7\\x9E\xEC֭[\xF7\xDE{\xEF\xF6\xED\xDB7\x9Cs\xBE\xC1\xF3M&{\xD09s\xE6\xD4'{\xFB/~\xF1
\x8B\xA6\xED\xC6\xE9ӧ\xF7\xEC\xD9sРAӧO\xED\xB5\xD7F\x8Fݾ}\xFB\xDBn\xBBm\xFD\xFA\xF5\xE9\xDF\xBA\xF0\xC2'O\x9E\w\xAB\xE4ܽ\xF9vu\xBDg\xBC\xE8K\xA3\xA1g\x9F}\xF6\xAC\xB3\xCEJ\x92dԨQ?\xFCp&\x93ٸq\xE3\xF5\xD7_ߵk]\xBB^\xFD\xF57n,:H\xE9\x9B$\x93煓s\xAF\x96\xB2\x9F\xD3\xC51\xC7\xD3\xF0\x85\xD3\xD8\xC3\xD5*\xFD\xE3\xD1G=eʔ\xF4\xB7s.o\xE1\xEB\xC0\x9C9s\xB2\x8F:\xFD\xF4\xD3\xCF>\xFB\xEC\xF4\x97\xF3\xD9̷\xA5?\xFE\xF8\xE3=z\xF4\xED\xDB\xF7\x84N\xB8袋\xCA\xCB\xCB\xEF\xBB\xEF\xBE\xEC\xD5\xE3\xC5_\xACw\xF5ȷ\x85\xEA\xCA\xCE\xF0\xC6oL\xCFz\xE6̙.,}o\xBF\xFF\xFE\xFBcǎM\x92\xE4\xF2\xCB/\xF2\xC9'\xB3{\xE0\xE6\x9Bo\x9E2eJ:\xE6\xE4ɓ3y\xAE9_t-\xCF\xF4\xFEu\x81\xEBd\xD13\xAD\xBB\x85/^\xDCp\xF0&\xCC\xED[\xDF\xFAV\xF6\xE1-\xB7_\xE1E\xCBy.\xE9*\xE5\xBB\ם\xCCW\xBE\xF2\x958 \xE7>g\xD7T\x96\xD9\xBF\x856\xFD\xCB)\xADZ\xB5\xEA֭[\xBE;,_\xBE\xBCK\x97.\xF9\xBEY\xBEe˖\xA5K\x97VVVf\xDF^\xCEd2K\x96,\xD9s\xCF=K\xFCɪԊ+6nܸ\xDF~\xFB\xB5iӦ\xE8 \xABV\x
AD*///\xFA;\x9C\xF2Ͷm۶\xF5η\xE8:8\xE8\x8A+:w\xEE\x9C\xFE\xD5\xDFu\xEBֵm۶\xE1\xEF+\xCA7\x93\xBA\xEBV\xF4\xB3\xABW\xAFeKß\xD6\xCCyR\xB0\xE1ɾ\xFF\xFE\xFB\xA7\x9Ez\xEAo\xBC\x91o&-W,\xE7d\xF2\xB4\xC4-Qʳ\xD0(\xF9vo\xD1]\xBD#&\xD3\x857I\xAA\xDE'U\xCA\xA4i/\xA2&\xAE\x9E|\xCB[\xF8:\x90>\xAA\xBC\xBC\xBC\xEE\xCF\xCE\xE7|6\xF3m\xE9m۶-[\xB6\xACku\xE7_x\x9E\x85\xB7Jv\x86\x95\x95\x95\xFE\xFE\xD4v*\xFDz~\xA6Eo\xECܺt\xE9R\xF8gᛳh-\xF7d\xDDɤ\xBF\xF4\xA4s\xE7\x96/\xABX\xF0\xF1\xC7\xDFx㍧\x9Cr\xCA7\xBE\xF1\x8D\xCF{.\xC0\x96E`\xB1C,Z\xB4\xA8\xB2\xB2r\x87\xFE\x81Вli\xA0Q@\xB0\xCF\xF3_)\xF8RX\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1Z\xFE\xF4\x8A\xF
F\xAEX\xBCnq\x8B̤$\xAD+\xFAw\xEE_\xE2\x9D7l\xD9\xF0\xD6ʷv\xE8|\xAB\xE7\xFE\xAD+r~\xCARDz\xD4-\xA6\xC0R첊\xD6\xE4\xF9\x93\xAF\x98qE\xCBL\xA5\x87\xEC}\xC8\xFC\xF1\xF3K\xBC\xF3\xBC\xF3\x86\xFEa\xE8\x9DOcͽh\xEE\x80.r~\xCARDz\xD4-\xA6\xC0R\xEC\xB2|\x8B \x98\xC0&\xB0\x82        ,\x80`e\x99L\xA6\xC0\xA7\xD7~\xBA\xF6\x95e\xAF,X\xB5\xE0\x9DUS\xEA\x9D/\xF8h\xE3G-6\xB9$I*ZW\xB4\xD7A};\xF5\xFDj\xA7\xAF\xF6\xEDԷ\xE7\xFE};\xF5-\xF1\xB1\x9Fn\xFBt\xF6\xB2\xD9\xEF\xACz';\xFF?\xF9\xB06S\xBBC'\WyYy\xCF\xEA\x9E};\xF5\xCD\xFEoP\xB7Am\xCA\xDB伳\xA5nK\xBDC'\W\xA3\x96`\x97U$\xB0\xFA\xE4\xB3O|\xBC\xA0\xEE\xA7\x9Au5\xDBj\xB7\x85\xCCf\x9F\xF6\xFB\xA4\x97\xEC\xF4O\xDFN}\xF7\xAF,)<I\x92\xCD\xDB6/\\xB5\xF0\xFF\xCC|ՂwV\xBD\xF3\xEE\xEAw7o\xDB2xe\x9B\xCA\xF4\xABf\xF6\xBE\xB2\xD7Wږ\xB7m\xF2\x80\x96:K]\xD7ε\xD4\xBB\x88FVC[k\xB7|\xF7\xC1\xEF\xADy\xAF\x99\xE3<>\xF6\xF1o\xF6\xFEf3i\xAC\xDAL\xED\xD9SϞ<r3ǹr\xBC5dJX\xEA\xC4R\x97`\xE7Zj\x80/\xA5\x8
0\x9F\xC1j\xBD[\xEB\xF2\xB2\xF2揳{\xABݛ?Hc\xEDV\xB6[\xC8\x8E\xB7kծ\xF9\x83e\xA9K]\x82\x9Dk\xA9\xBE\x94\xFC\x90;@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81\xAC\xD5\xE7=\x81\xFFg\xD2˓\xFE\xF6\xF6\xDFZ\xFE\xB8\xB3\x97\xCDn\xF9\x83~\xBE,u\x8B\xB1\xD4\xBB\xA6/P`\xFD\xF5\xED\xBF~\xDES\xD8UX\xEAc\xA9vM\xBEEL`X\xC1@0\x81L`\xFB\xFD\x9A\x86\x8F\xB8\xB0G\x87-ܩ\xA6\xCE]1\xB7\xE5\x8F\xFB9\xB2\xD4-\xC6R욾@\x81u\xEEa\xE7\xE91\xA4\xE5\x8F\xFBޚ\xF7v\xB5/E\x96\xBA\xC5Xj\x80]\x93oX\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81L`X\xC1@0\x81\xACU3\x9F\xC9d\xB2\xFF\xDF\xFC\xA1\xD2q\xCA\xCAʚ?Z\x89GLv\x9E\xC9\xEF\\xB3mx\xC4d\xE7\x99\
xFC\xCE5ۆGLv\xDA\xC9|i4\xF7\xAC5\x9F\xAEyi\xE9K\xB7nl\xFET^\xFDϫ5\xEBj2I\xC0\x86mڶ\xE9\xF5\x8F^_\xB6aY\xF3\x87\xFA\xF7\xDA\xCF\xFFx\xFE\xA7\xDB?m\xFEP\xF9Xꔥ.l\xE7Zj\x80/\xAB\xB2\xD2\xFFK\xF7\xB3\xB7\xE6\xBDE\xAB-\\xB5p\xE1\xEA\x85\xE9\xAB7\xAF\x8E\x9DP\xDB\xF2\xB6v<\xF0\xA0\xBD\xEAөO\x9F\xBD\xFA\xA4\xEC\xB5\xFB^\xCDv{f\xFB\xE2u\x8B\xEBM>\xE4\x8BP]eIY\x8F=\xD29\xB4\xD7A\xE9\xFC{t\xE8\xB1[Y\xE3B\xD6Re\xA9\x93\x9Dm\xA9v)E\xEB\xB5\xFF\xBC\xF6\xA77\xFE\x94^\xBE\xAF[\\x9B\xA9m\xB1\x99յ\xD7\xEE{\xA5\xF7\xC1\xDD\xFF`\xE0J|\xD4\xF2-\xCB'\xBD<i\xD1\xEAEW/|o\xCD{[\xB6o١\x93̧]\xABvv<0\xFD\xB2\xF4\x93\xC1?\xE9T\xD1)\xE7\xDD,u\xF3Y\xEAS\xE2R첊֯f\xFD\xEA\x8AW\xB4\xD8l\x8A:d\xEFC揟_\xE2\x9D_\xF8\xF0\x85\xA1\xBAC\xE7\xD3Xs/\x9A;\xA0ˀ\x9C\x9F\xB2Ա,u\x8B)\xB0\xD4\xBB,o\xF2X\xC1@0\x81\xAC\xBF\xA6\x80Rx \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x9
8\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98
\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\
xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\x
C0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0\x8D+"\xCBfIDAT&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80` \x98\xC0&\xB0\x82        ,\x80`\xFF%\xC8:
-\x89pIEND\xAEB`\x82
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionontextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,23 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 618x17
- text run at (0,0) width 618: "The distinction below is subtle, but the middle \"H\" is color-corrected, and the first and last are not."
- RenderBlock (anonymous) at (0,34) size 784x172
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,3) size 117x166
- text run at (0,3) width 117: "H"
- RenderText {#text} at (117,123) size 4x17
- text run at (117,123) width 4: " "
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (121,3) size 117x166
- text run at (121,3) width 117: "H"
- RenderText {#text} at (238,123) size 4x17
- text run at (238,123) width 4: " "
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (242,3) size 117x166
- text run at (242,3) width 117: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionontextshadowexpectedpng"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.png (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.png        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.png        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,62 +0,0 @@
</span><del>-\x89PNG
-
--IHDR X')tEXtchecksum3a641ae6a50684a7ec6e27a330d6c652\xCB\xD1\xD5bKGD\xFF\xFF\xFF\xA0\xBD\xA7\x93 IDATx\x9C\xED\xDDy|T\xF5\xBD\xFF\xF13\xFBd\x92IBH\xC8d!\x90\xA0&e_QTj\x8A\x80\xAE(\xB5\xA1R\x94\xE2-\xFA\xB3\x94\xFAxX\xF5Q\xBD*Z@\xA5\xB6\xBD\xD7J\xAB\xAD\xE8\x95J\xE1R\xAB\xA0DvA\xC4H\xF6\x84\x84\xECˬ\xE7\xF7\xC7\xE9\x9DNg\xCB$\xF9$x=>|Lf\xCE\xF9n\xE7{fޜs\xE6\x8CNUUr\xF4\xDFt\xCE6,a,a,a,a,a,a,a,a\xC6\xEE\xADV]]\xEDv\xBB\xEDv{RR\x92l\x83z\xA2\xAC\xACLQ\x94\x94\x94\x9B\xCDi\x993gδ\xB5\xB5\x8DF\x87\xC3!^xW        c\xB7\x8B\xAA\xAF\xAFomm5=lCR=\x8D\xB4\xF9\xFA\xA6\x81\xBAڣ\xBE\xD9e\xBA=\xBDcT^^^\\<v\xEC\x84\x84\xD0W\xBF\x9Do\xBD\xA1/\xE7\x9BTu:]/\xD5\xD2OgNo\xBC-;\x9D\x83;\x97\xC3\xE1\xE8\xBD        \xDF7"\xAC-6\x9C8q"\xECK\x97^z\xA9\xD3\xE9\xBC\xEF\xBE\xFBfϞ\xFD\xCC3\xCF\xBD\xFA\xBF\xFF\xFB\xBF\xC5\xC5\xC5\xF7\xDCsO\xA7uǾd\x8C\x8A\x8A\x8A\xEE\xBE\xFB\xEE\xE7\x9F~\
xC1\x82\x91\x96)..^\xB9reQQ\xD1\xD7_-^xW:t(\xD20\xF6YQ%%%\xCF>\xFB\xEC֭[\xAB\xAA\xAAz؆(\xA4zi\xF3\xF5M/u\xB5G\x82\xDB:\x8AnO\xEFX<\xFF\xFC\xF3\xD4\xE9t3f̸\xF1\xC6C\xE8\x9B>F\xB1cǎ;vh\x8FG\x8F={\xF6춶\xB6_\xFF\xFA\xD7>\x9FOQ\xBD^\xFF\xFD\xF7\x8B|\xF7\xE5|\xF3\x8F\xEA\xD3O?\xDD{\xB5\xF4ә\xD3o\xCB=\xCB\x8C\x8B\x8B\x9B\xBA\xFD\x99\xDB7:\xED\xDAҥK\xE3\xE3\xE3{^\x91窬\xACzI<3\xF4:5\x829s\xE6ly\xF7\xEE\xDD\xC8\xC8Ș9s\xE6\xEEݻ\xB7o\xDF\xFE\xDCsϭX\xB1BU\xD5iӦ-[\xB6,t\xC5\xE4\xE7\xE7G*\xB6{K\xC6n\xE0\xC0\x81/\xBF\xFCrؗ|>\x9F\xF6`͚5C\x86\x91-<\xA5\x91\x9E\x8F4\x8C\xDD\xD0\xED\xA2~\xF7\xBBߥ\xA7\xA7\x8B\xB4!
-\xA9\x9EF\xDA|\xBDыH\x9BOc\x8Fzc[G\xD1\xED\xE9]kk\xAB\xDDn/))\xA9\xAF\xAF\xFF\xFC\xF3σ^\xE9c\xF4ю\xD1\xFB(\xCA\xFE\xF0immm\x93'O\x9E<yr[[[\xCF\xCB\xF7\x9CoQ\xDE%\xB4\x97\xB4Q\x9F(\xFA\xE9\xCC\xE9\xE1۲\xF8\xA8j3\xF0\xE5\x97_\xEE\xEA\x9C3gλ\xEF\xBE\xE93\xD7\xE7\xF3}\xCBw.\xC1\x91\xD4v\xAE\xD0\x832Co\xEF=\xF1VNN\xCE̙3\xB5\xC7f\xB39%%e\xE2ĉ\x8A\xA2>|͚5Q\xDB\xEF\xFF{\x8F\xC7K\xB6\x8B}\xC9.\xD1\xEB\xC3\X\xB6q\xE3Ɗ\x8A\x8A\xFB7
-\x8F$R\xA5R\x8DA\xAF\xD9LgͶ...nnn\xB6\xDB\xED\xC9\xC9\xC9\xC9\xC9Ɂ/}\xABJk[RR\x92\xFF A\\\x9C\xC5b\xD1\xF4\xB0\xF0\xDE\xFD]\xE2\xDE{\xEF\xFDFZ%\xA8\xB7g\x8E҃\xB7\xE5\xDE\xD8=\xBB=\xB5\xCF\m\xAD.}\xE6v\xEA\xACٹ3C\xBFxk\x8D\xB0V\xAF^\xF6\xF9\xD4\xD4\xD4_\xFE\xF2\x97\xDAc\x83\xC1p\xF0\xE0\xC1-[\xB6X,\x96\xC2\xC2\xC2\xC4\xC4\xC4\xE3Ǐ<x\xD0f\xB3͞=[Q\x94\xD2\xD2\xD2\xF5\xEB\xD7755egg\xDFy睁\xDB \xF6%C_ݹsgmm\xED\xB8q\xE3\xF2\xF3\xF3\xF7\xED\xDB\xF7\xE5\x97_\xA6\xA4\xA4|\xEF{\xDF\xD3nll|\xE1\x85\xEA\xEA\xEAƏ?k\xD6,EQN\x9C8\xF1\xF8㏏;v\xFD\xFA\xF5s\xE7\xCE-\xEA\xD1֭[w\xEFޝ\x9C\x9C<\xFE\xFCD\xAF\xD0\xC2\xFF\xFE\xF7\xBF\x87mLP\xA5V\xABU+!\xB41\xA1\xC3K\xC3Xآ>\xFB\xEC\xB3\xED۷\xD7\xD6\xD6fdd\xDCr\xCB-v\xBB]+\xE1\xFF\xF8\xC7\xF6\xED\xDB}>ߩS\xA7K.**\xFA裏TU\x9D:u\xEA%\x97\\xA2(\xCA믿\xAE1bĨQ\xA3\xFCK\x96\x97\x97\xF8ᇊ\xA2\x8C=z\xF8\xF0\xE1\xDDk^\xD8#\x8Dj\xE8\x89\xD4\xCD\xC7|\xEAԩ\x91#Gz\xBD\xDEw\xDF}7!!a\xFE\xFC\xF9\xED\xE
D\xED\x9B6m\xAA\xA8\xA8\x98={\xF6\x84        \xC2Q\xE8\xE6۳gχ~x\xE6̙\xB4\xB4\xB4Y\xB3f\x9Dw\xDEyQz$\xBB\xADE        [{踅
-]f\xE7Ν\xA5\xA5\xA5\xA3G\x8FNOO_\xBF~\xFDu\xD7]\x97\x99\x99}\x95\xFA\xFA\xFA-[\xB6(\x8A\xB2q\xE3F\x9B\xCDv\xF3\xCD7\xFB\xDFaE\xFA:ڡmصk\xD7\xD7_=lذ\x9C:uj\xECر7\xDEx\xA3N\xA7\xEB\xE1U\xFEM\xEFp8n\xBD\xF5ք\x84\x84={\xF6\x8F=\xDA\xE5rm\xD9f\xB3\xFA\xAF\x8A>\xDFv\xEF\xDE]\\<j\xD4(\xB7ۭ\xAD\xFB\xC3\xFEпDžv*\x96w\x89뮻\xCE?\xAA[\xB7n5\x9B\xCD.\xEC\xC6\xCCIMM\xBD\xF6\xDAk\x87-\xA6\xD3\xE9Κ\x99\xA3        |[\xBE\xE6\x9Ak\xFCUD\xF0#F\xF8ϙ3'...t\xF9\xE8o \xD7^{\xED\x85^v\xF4\xBA\xA1{\x9F\xB9\x9DQ7v\xAE1c\xC6\xDCt\xD3M]\x8A\xADa\xED\v\xBB]\xDBAw\xAE\xC0$\xFA\xCE\x98\x82:u\xFA\xF4i\xFF\xC7\xCD\xFC\xF9\xF3\xBF=\xE4\xF5h\xF7\xEF\xDF\xFF\xC1$%%\xADY\xB3\xE6\xC7?\xFE\xB1\xA2(yyy_|\xF1\xC5\xE2ŋE\xA9\xA9\xA9\xB9\xF8\xE2\x8B'M\x9At\xF7\xDDw\xBF\xF7\xDE{\xD5\xD5Ձ\xEBƾd\xE8\xAB&LX\xBE|\xF9\xA6M\x9BE9r\xE4\xAE]\xBB~\xFE\xF3\x9F\xFB\x97ߵkWvvvVV֢E\x8B-Z\xA4(JIIIYY\x99\xD1h\xB4Z\xADAo\xC7˖-[\xB9r\xE5\xCD7߬\xAA\xEAȑ#\xEB\xEA\xEA\xA2w9\xB
4\xF0H\x8D\x89Ti\xE8\xF3\xA1\xC3\xD8i\xC3"\x8DXآ^x\xE1\x87ñ`\xC1\x82\xF7\xDF\xFF\xE6\x9Bo֞\\xBE|\xF9\x92%KfΜYXX8t\xE8Pɏ>\xFA\xE8C=4cƌ\xE9ӧ\xFF\xE4'?y\xF4\xD1GE\x998qbaa\xE1g\x9F}\x96\x9F\x9F\xAF(ʡC\x87^{\xED5EQ222\x8CF\xE3|\xA0}\xDEw\xAFyak\x8C\xBE\x89\xFD"\xF5\xC2oԨQ\xABV\xADZ\xBCx\xF1;\xEF\xBCc0\x9E|\xF2\xC9+\xAF\xBC\xF2\xB9\xE7\x9Ekmmݿ\xFFW\\xD1\xD8\xD8v\x88\x826ӓO>y\xD7]wM\x992\xA5\xB0\xB0\xF0̙3\xFD\xEB_\xA3\xF4Hv[+\x8A\xB6\xF6\xB0\xE3$\xEC2cƌY\xB9r\xE5\xBD\xF7t\xE9\xD2u\xEB\xD6\xD5\xD4\xD4t\xBAJuu\xB5\xCB\xE5R\xC5b\xB1\xF8C\x80`\x83
-        ۆ#F<\xF2\xC8#?\xFCpjjj^^\xDE\xFD\xF7\xDF/\xF2\x8FW\xFF\xA6\xFF\xE0\x83\xB4M?r\xE4ȕ+W.]\xBA\xF4\xFD\xF7߷\xDB\xEDO?\xFD\xF4ҥK\xB5\x85;\x9Do\x81\xEB&$$\xAE\xB6S\xDDx\x97x\xFE\xF9\xE7\xBB7s\xEA\xEB\xEBϾ\x99\xA3        }[\xDBUU+---\xEDt\xD6E\xB9\xF2\xCA+\xB57\x90>\xD37;\xD7\xFC\xC7|w\xAE\xC0\xCCةӧOG\xC9߰X\xCE#2\xE4\xF6\xDBoz2\xF0|\xF0\xAAU\xAB\xFC'\xEF]\x9B\x95\x95\xA5\xAA\xEA\xA6M\x9B\xD2\xD3\xD3=\x8F\xAA\xAAUUU\xA1\xA7\x9Fc\2\xEC\xAB\xF9\xF9\xF9O?\xFD\xB4\xB6\xC0c\x8F=6a\xC2\xEDq\xE0\xF9\xF8M\x9B6\xE9t\xBA'Nh]X\xB3f\x8D\xF6\xBC\xFFR\x83\xD2\xD2R\x83\xC1\xB0w\xEF^UU}>_jj\xEA\x8B/\xBEe"\xA91\x81\x95\x8D\xA7\xFF\xF9\xB0\xC3\xD8i\xC3I\xA4-r\xE4\xC8\xED\xC1\x9F\xFF\xFCg\xBBݮ\xAAjYY\x99\xC9dڲe\x8B\xF6\xBC\xFFj\x92\xF2\xF2r\xB3ټs\xE7N\xED\xF9m۶\x99\xCD\xE6\xF2\xF2rUU\xEF\xB8\xE3\x8E+\xAE\xB8B{~\xE1
\xB9\xB9\xB9\xDA\xF9\xEF|Pkg\xF7\x9A\xA5\xC6H\xA3\xEA\xDF|\x91zd\xFA\xF4\xE9K\x97.\xD5?\xFB\xEC\xB3\xFEa\xD1.O\xFE\xF8\xE3\x8F\x
C3Q\xE0f\xAA\xA8\xA80\x99L\x9B6mҞ\xAF\xAB\xAB{\xE3\x8D7\xA2x\xA0\x9Eo밵G7\xFF\xF8DY\xC6ߒ\xD2\xD2Қ\x9A]QV\xD1U\xD6\xD7\xD7\xF7F\x89҆1c\xC6<\xF6\xD8c\xDA\xF3o\xBC\xF1\x86\xD1h,---*\xE7\xE0\xC1\x83\x8A\xA2\x\xE1\x85\xD7HII\x996mZh\xCBՐMx͓\xF6\xFCO<\xA1]\xF6\xE3|\x9B6m\xDAO\xFAӠu\xA3t*\xFA\xBBD\xE85X=\x9C9eeef\xB3Y;\x80\xA1\x9E3'\xEC\xDBr\xD8\x{194555}Uˬ\x8B\xE5-$\x906'L\x98\xE3+\xF6\xCF\xDC\xDE۹\xB4\xE1
-\xEDZ\xB7w\xAE\xD0^D߹B/\xB1\xF2g\x86\xC0N}ܴ\xB6\xB6\x86m\xCC7\xA2\x9B\xB7ib\xB3\xD9:::\x82\x9E=ztss\xF3\xB4iӖ,Y2w\xEE\\xEDLmXї\x8C\xBD\x9C \x97]v\x99\xAA\xAA\x9F~\xFAi\xD0\xF1\xBF#G\x8Ex\xBD\xDE#G\x8Eh_\x9C\xB1Z\xADa\x8FLv\xAF\xF0n\xF0c\xA7-\xEBtL\xB7\xC8ȑ#\x8F;VYYy\xE4\xC8\xED_\x93{\xF7\xEEu\xBBݓ'OZ\xEB\x93O>q\xB9\#F\x8C\xD0\xFE;v\xAC\xCB\xE5:t\xE8Pff\xE6\xFC\xF9\xF3gΜYQQ\x91\x92\x92r\xF4\xE8\xD1\xE2\xE2\xE2?\xFC\xF0\xB2\xCB.;|\xF8\xF0SO=TN\xEC͋Rc\xA7\xC3\xA9Q\xD8\xEDv\xFF\xB0h_x\xD1\xFE\xA2@EEEn\xB7\xFB\xA2\x8B.\xD2\xFELII        \xFD&T\xD8] \x8Aطu\xD8\xDA7o\xDE\xDC\xE9\xB8\xC52\xB6\xD9\xD9فu\xF5ds\xF4\xA4\x8F\xDDh\xC3\xE4ɓ=ϑ#G\x82\xBA\xA0Y\xB1bE\xE0\xC5\x97_~y\xA4\xEA\xA2ozEQ\xB4^tc\xBE\xF9\xD7XfN\x94\xFDo\xCBf\xB39l{\xB2\xB2\xB2®c\xFB#\xBD\x81\x84Z\xB1b\x85vnWevO\xDF\xEC\a\x87\xEB[\xB2s\xF9}ܘ\xCD\xE6n\xD2Kz\xF1F\xA3999\xBBv\xED\xCA\xCB\xCB+,,\xCC\xCF\xCF?y\xF2d\x{1D633D}\x9C \xDA)d\xA7\xD3i\x81\xA6\xA6&EQ\xECv\xBB\xD5j\xB5
Z\xADk\xBD뮻\xA4
-\xEF\x89N\xFB\x98466\x8E?~\xF5\xEA\xD5\xCD\xCD\xCDF\xE3?\xF3tmm\xADN\xA7\xBD\x9FJCC\x83\xA2(\xFE<\xA4\x9D\xC9֞\x9C>}zzz\xFA\x86-\xDEz\xEB\xADŋO\x9D:uݺu\xFB\xF6\xED\xBBK\xC4(5v*R/\xBA*\xEC\xD2\xDE\xFC
-\xC8\xEAt[\x87\xAD=\x96q\xEB\xC6\xD8\xF6dsDѥ-\xC66h\xD2\xDC\xDCܓ\x86u\xBA\xE9\xF5d\xBE\xF5\xC6\xC02sB\xF9ߖ\xBBڞ^j`\xE7\xEAvB\xE82G\xB0\xC2RUuԨQ\xEB֭khh\xB8\xF4\xD2KW\xADZ\xE9"\xBE\xE8K\xC6^N\x90\xF2\xF2rEQrss#-\xA0\xDDRo\xFC\xF8\xF1yyy]\xEB[\x85\xF7D\xA7-\x8B}L\xDE~\xFB\xED\xD2\xD2\xD2(\x8A\xE2\xFF7\x84\xC3\xE1PU\xB5\xA6\xA6fРA\x81\xE7\xE4\xE4(\x8AR__\xAF\xDD>Q\xBB\xC6B{\xD2`0\xDCv\xDBm\xAF\xBD\xF6Znn\xEE+\xAF\xBC\xD2\xDElٲ\x84\x84\xED\x8Cx\xB7\x9B\xA5\xC6NE\xEAEW\x85\xA2@C\x86Q\xA5\xA4\xA4\xA4\xA0\xA0\xA0'\x85\xD5\xE9\xB6[{,\xE3֍\xB1\xED\xC9戢K;Z\x8Cm\xD0N\xD0h\x83\xD3m\x9Dn\xFA@=\x99o\xBD1\xB0=\x9C9\xDA\xF7NΦ\x99\xA3\xBC-k[3\xF6\xF6\xF4R\xFB\xFB;W\xE8\xC7M\xBFt)\xA8\x8F`\xBD\xF9曻v\xEDR%99y\xE2ĉ&\x93\xA9{K\x86}599\xB9\xD3\xE2mذa\xF8\xF0\xE1\xDAr\x93\xC9\xD4\xDE\xDE\xB4\xC0ĉ\xD3\xD2\xD2^|\xF1Š\xE7y\xE4\x91u\xEB\xD6\xC5^x\xA4Ƅ\xAD4\xCA\xF3\x9D6\xCC/\xF6\xB1UU\xD5\xE5riG\xDA\xFC\xB3\xFC\x92K.\xB1\xDB\xEDk-\xADw\x
E8С\xFB\xDBߴ?\xDFy睼\xBC<\xED\xAB\xA2\xDCy\xE7\x9D\xFB\xF6\xEDKNN\x8E\x8B\x8B\x9B7o\x9E\xDB\xEDk\xD7\Г\xE6E\xA9\xB1\xD3M\xA9]v\x88\x94\x80\xCD4y\xF2似\xBC'\x9Ex\xC2\xEB\xF5v\xB5\xF0\x9Eo밵G\xDFR\xB1/ژ\xAE\xAE\xA2H\xF41\xB0\x90\xDB\xF0\xF6\xDBo\xF4\xF0;\\x916}X=\x99oQ:\xD5{\xEF\xE7\xC8\xCC        \xE4[\x8Eq\xC0\xBB:뤬^\xBD:\xC6\xC3\x9D:gw.\xA7b\xFF\xB8\xF9D\xBFDkǎځ\x8A\xF3\xCE;oŊ_}\xF5\x95\xF6\xFC\xE6͛srr.\xBE\xF8⢢\xA2/\xBE\xF8bΜ9\xF1\xF1\xF1\xAF\xBE\xFA\xEA\xB6mۮ\xB9\xE6\xED\xEB3\xF9\xCB_rssx\xE0\x81%K\x96L\x9C81\xE8r\xD4ؗܺuk\xE8\xAB\xFF\xF5_\xFFe4/\xBC\xF0\xC2[n\xB9\xE5ꫯv87nTUu֬YW]u\xD5C=t뭷\x8E7\xEE\xE8ѣZ!\x8B/NMM\x9D7oޯ~\xF5\xAB\x993g&&&>\xF3\xCC3---۶m\xCB\xCC̜4iҍ7\xDEx\xFB\xED\xB7\xBB\xDD\xB4\xF8\xF8\xF8\xD0шTx\xA4\xC6\xF8+ݷo_`9\xFE\xE7{챰è\x8DOPâ\x8FI\xA4-r\xFA\xF4霜\x9C\x82\x82\x823f\xDCs\xCF=\x83ᥗ^RU\xF5\xCD7\xDF0`\xC0ԩSo\xB8\xE1\x86y\xF3\xE6\xC5\xC7\xC7\xFF\xF1\x8FTUuϞ=&LX\
xB2dɢE\x8Bƍ\xB7\xFF\xFE\xC0zG\x8F\xBDc\xC7\xED\xF1wܱr\xE5ʰ\xD3&\xF6\xE6E\xA91\xEC\xA8nݺ5p\xF3E\xEA\x85ߖ-[\x86:q\xE2\xC4-[\xB68p`\xF6\xEC\xD9\xF1\xF1\xF1\xCF>\xFBlSS\x93\xF6\xF5\x99\x85;v,\xECn\xBEO>\xF9d̘1\xF9\xF9\xF97\xDCp\xC3\xF5\xD7_\xBFaÆ(=\x92\xDD֪\xAA\x86\xD6i܂\xC6'\xEC2Z\xCB'O\x9E\xAC\x95$\xEC*_}\xF5\xD5\xFC\xF9\xF3E\xB9\xFF\xFE\xFB\xDF{\xEF\xBD\xDE\xE8c\xE0hG\x9Acƌ\x992eʣ\x8F>\xBAhѢ#F>|8\xE82\xD8\xED۷\xDFv\xDBm\x8A\xA2\s\xCD5o\xBF\x{76AAAB6D}\xAD?\xFCpFFFFF\xC6\xC3?tl\xE0\xDE\xF1\xA3\xFD\xC8`0\xFC\xE67\xBFٶm\x9B\xBFG\x8F\xBD\xE6\x9Ak\xB5\xB1\xEAt\xBEi\xEBN\x9E<\xB9\xA8\xA8\xE8\xB3\xCF>\7R\xA7\xA2\xBFK\xDCt\xD3M\xFEQݹsg\xCFg\x8E\xCF\xE7;\xCBfN\xD0\xDB\xF2g\x9F}\xA9=\xDAl        p\xFF\xE3\xBD{\xF7\x86m,o \xB5\xB5\xB5\xA13\xF0ꫯ\x8E4}>\xDF\xF9\xE7\x9F?lذ\xD01T\xBB\xFE\x99\xCBuo\xE7
-*\xA4ӝ\xAB\xA5\xA5%p\xF9Н륗^\xEA\xD2εnݺ\xC03Cccc\xE0gz\xE0\xC7MIII\xFDF\xE8TU\xED\xBD\xF4\xE6r\xB9\xCA\xCA\xCA:=\xEE}ɰ\xAF\xD6\xD5չ\\xAE\xD0\xDF\xD3\xB6X,\x81詪ZZZ:`\xC0\x80\xD0+i|>_ii\xA9\xD1h\xF4/\xFF\xD5W_͝;\xF7\xF0\xE1ÑZTx\xA4\xC6D\xAA4Jc\xA27,\xB4%\xB1\x8C\xAD\xC7\xE3)//\xCF\xC8\xC8\xBA\xFA\xCF\xE7\xF3UTT8\x8E\xD0䵵\xB5\x83!\xF4\x963UUU\xE9\xE9\xE9\xDAw\xAA,K\xA4\xFB\xCB\xC5(5F\xDA\xC41\xF6"va\x87(t3i_Q<xp\xEC\xD7Q\x8Al\xEB(\xB5G\xDAR\x81bY\xA6'\xAB\x88\xF41\xB4\x90\xD06h\xF7\xBE\xBA\xFD\xF6\xDB-\xC3\xE0\xC1\x83E~\xA7̿\xE9M&S,\xF6p\xBE\x85v*\xFA\xBBDrrr\xD0\xCD\xD5B\xDB\xE3\xCC\xC9\xCE\xCE\xFC\xBAImm\xAD^\xAFOII\xE9Rk;\xD5\xF73G\x89\xFC\xB6\xB6=\x81\x95\xFA'$$h[\xBF]\xEE\xEDV\xE9\xE9\xE9Rvc\xE7
-\xDA\xFA\x81;Wvvv\xCFo\x82\xA5\xF4\xF2\xCEة\xAE~\xDC\xF4\x99\xDE-X\xFD\xD1\xE9ӧ}\xF4\xD19s\xE6|\xF7\xBB\xDF\xFD\xA6\xDB\xE0_\xB4π_\xFC\xE2\xDFtC\x80\xB3-;Wo\xE8ŋ\xDC\xFB\xA9\xFA\xFA\xFA\xE5˗w\xEF\xDB\xC5z\x89\xCB\xE5r\xBB\xDD\xCD\xCD\xCD^\xAF\xD7`0|\xD3\xCD\xCE\xEC\\xBD\x84#X\xFA\x81͛7\x97\x94\x94(\x8A\x92\x95\x95u\xED\xB5\xD7~\xD3\xCD\xCE\xEC\\xBD\x84\x80 \xACo\xD3pn\xEA\xC25X\xD5\xD5\xD5n\xB7\xDBn\xB7w\xF5v\xAB\xF5\xF5\x{16DB6D}\x83!\xFA\xD7\xC1\xFA^YY\x99\xA2()))\xDD\xF8\xF1\xEDn\x8FF$gΜikk3\x8Dڍ\xE3\xCEJ\x9D΄\xF2\xF2\xF2\xE2\xE2\xE2\xB1c\xC7&$$\xF4q\xDBԅ\x80u\xE8С\xFB\xEE\xBBo\xF6\xEC\xD9\xCF<\xF3L\x97\xEA())y\xF6\xD9g\xB7nݪ\xDD\xF6ۣ\xA8\xA8\xE8\xEE\xBB\xEF~\xFE\xF9\xE7,X\xD0\xD5u\xBB=\x91\xAF\\xB9\xB2\xA8\xA8\xA8\xD3\xA8\xF6_\xD1g\xC2\xF3\xCF?\xF0\xE0A\x9DN7cƌ\xD0\xFB\xEB-;v\xECرc\x87\xF6X\xA7ә\xCD\xE6!C\x86\u\xD5U\xA1_\xD2>q\xE2Ė-[\xBE\xFE\xFAk\xAFכ\x9C\x9C\x9C\x9B\x9B;y\xF2\xE4\xFC\xFC\xFC\xA0BE1\x8D)))S\
xA6L9rdt\xF0\xEDԅS\x84\xDF\xFB\xDE\xF7\xBA\xF7ݺ1c\xC6\z\xE9\xA5\xDDX\xB1\xB7͛7\xCFj\xB5vu-\x{DAB5}n\x8FF$&L\x982e\x8A`\x81})\xC6+\xF9\xA2̄\xB6\xB6\xB6\x9F\xFF\xFC\xE7\x8F<\xF2\xC83\xCF<\xD3g\xD1\xE4\xB2\xCB.\x9B:u\xEA\xC3?l6\x9B\xAF\xBC\xF2ʂ\x82\x82\xD7_=77\xB7\xA8\xA8ȿ\x8C\xD7\xEB]\xBCx\xF1\xB5\xD7^\x9B\x9D\x9D\xFD\xB3\x9F\xFD\xEC\xBF\xF8\xC5̙3w\xEFp\xE1\xC2\xD0B\xBE\xFB\xDD\xEF\x8E7\xAE\xB4\xB4t\xECر<\xF0@\xDF\xF4\xF0-\xC4m\x94.\xDDQm\xE3ƍ\xF7\xDDw_ﵧ\xDF\x93\xE2\xE2\xE2\xE6\xE6f\xBBݞ\x9C\x9C\x9C\x9C\x9C,նNiu]p\xC1_|\xB1\xA2(W_}unn\xEE\xFE\xE7\xFE\xCF\xFF\xFC\x8F\xB6\xC0/\xF9\xCBW_}\xF5\xE8ѣ\xFE;\xF8\xA5\xA6\xA6N\x9A4\xE9\xCE;\xEF-D\xFB\xE9\xEB\xEF\xFF\xFB%%%\xABW\xAF\xFEկ~\xF5\xAD\xFAiw@\x9F\x89\xB0JKKׯ_\xDF\xD4Ԕ\x9D\x9D}\xE7\x9Dwj\xF7\xEC6ܲe\x8B\xC5b),,\xD4\xEE2\xFC\xD9g\x9Fm߾\xBD\xB6\xB66##\xE3\x96[n\xF1\xDF.\xF6\xFF\xF8\xC7\xF6\xED\xDB}>ߩS\xA7K.**\xFA裏TU\x9D:u\xEA%\x97\\xA2(\xCA믿\xEE\xF3\xF9E1
bĨQ\xA3\xFCK\x96\x97\x97\xF8ᇊ\xA2\x8C=z\xF8\xF0၅\x84V\xBAs\xE7\xCE\xD2\xD2\xD2ѣG\xA7\xA7\xA7\xAF_\xBF\xFE\xBA\xEB\xAE\xCB\xCC\xCCܺu\xEB\xEEݻ\x93\x93\x93\xE7ϟ\xF6\xFE\xBC\x8D\x8D\x8D/\xBC\xF0B]]\xDD\xF8\xF1\xE3g͚\xA5\x91'N\x9Cx\xFC\xF1\xC7ǎ\xBB~\xFD\xFA\xB9s\xE7F\x8D {\xF6\xEC\xF9\xF0\xC3Ϝ9\x93\x96\x966k֬\xF3\xCE;/l\xE1\xA1B\x97        \xDB\xC1\xEEUTԠA\x83\xBC^o,CT\xBE\xAA\xAA\x81cb\xB5Zîi&h\xEA\xEB\xEB\xB7l٢(\xCAƍm6[vvvYYYPcB\xBB\xF0\xF1\xC7\x9F:uj\xE4ȑ^\xAF\xF7\xDDw\xDFMHH\x98?~{{\xFB\xA6M\x9B***fϞ=a\xA0\x8A\xC2N\xE9@\x83!77W\xBBϲ\xA2(\xCF=\xF7ܭ\xB7\xDEz\xE4U\xABV\x85\xDDj\x9A\xA4\xA4$\xBD^/r\xABq@\xF1\xE0MMM\xCD\xC5_<iҤ\xBB\xEF\xBE\xFB\xBD\xF7\xDE\xF3\xE4\xEC߿\xFF\x83>HJJZ\xB3f͏\xFCc\xED\xC9^x\xC1\xE1p,X\xB0\xE0\xFD\xF7߿\xF9曵'\x97/_\xBEdɒ\x993g:\xD4_\xF2\xA3\x8F>\xFA\xD0C͘1c\xFA\xF4\xE9?\xF9\xC9O\xB4_t\x9A8qbaa\xE1g\x9F}\xA6]\xD7r\xE8С\xD7^{MQ\x94\x8C\x8C\xA3\xD1\xF8\xC1hA!Ph\xA5cƌY\xB9r\xE5\xBD\xF7
t\xE9\xD2u\xEB\xD6\xD5\xD4\xD4,[\xB6l\xE5ʕ7\xDF|\xB3\xAA\xAA#G\x8E\xAC\xAB\xAB\xED\xE9\xAE]\xBB\xB2\xB3\xB3\xB3\xB2\xB2-Z\xB4hѢ(\x8D,)))++3\x8DV\xABU\xFB\xEC;\x81\x9E|\xF2ɻ\xEE\xBAkʔ)\x85\x85\x85gΜ\xF9\xEB_\xFF\xA9\xF0 a\x97        \xED`\xB7\xAB**###\x96\xA1-?hL®i&\xF8UWWk\xBFj\xB1X\xACVkh7\xC3vaԨQ\xABV\xADZ\xBCx\xF1;\xEF\xBCc0\x9E|\xF2\xC9+\xAF\xBC\xF2\xB9\xE7\x9Ekmmݿ\xFFW\\xD1\xD8\xD8XK\xA4)\xC8\xE9t~\xF1\xC5\xDA\xD1,EQ<\xD8\xD2\xD2\xF67_\xA3\xFC\x98Ɖ'\xFE\xF2\x97\xBF<\xFC\xF0\xC3߮\x9F\xF4\xA5H?R\xB8iӦ\xF4\xF4t\x8Fǣ\xAAjUUU[[\x9B\xAA\xAAӦM[\xB6l\x99\xB6\xC0\xAAU\xAB\x86\xA2=>r\xE4\x88\xF6\xE0\xCF\xFE\xB3\xF6Oeee&\x93i˖-\xDA\xF3\xBF\xFB\xDD\xEF\xD2\xD3\xD3UU-//7\x9B\xCD;w\xEEԞ߶m\x9B\xD9l.//WU\xF5\x8E;\xEE\xB8\xE2\x8A+\xB4\xE7.\\x98\x9B\x9B\xAB\xFD6\xE7\x83>\xB8w\xEF\xDE\xD0\x86V\xD8\xC2\xD2\xD2\xD2m]\x9Fϗ\x9A\x9A\xFA\xE2\x8B/2p\xE0\xC0\x97_~\xD9\xDFe\x9DNw\xE2ĉ(\x8D2dȚ5k\x82\xEA
--\xBF\x8A\x8A
-\x93ɴi\xD3&\xEDϺ\xBA\xBA7\xDEx#J\xE1k֬\xD1
-\x89\xB2L`kjjzR]PQ\x9D]\xD8\xF2Ǥ\xB4\xB44t\xADH3!\x88v\x9C\xB2\xBE\xBE>t;~\xF2\xC9'\x91\xBA0}\xFA\xF4\xA5K\x97j\xCF?\xFB\xEC\xB3\xFEM\xA0]D\xFF\xF1\xC7VvJ<xPQ\x94+V\xBC\xF3\xCE;\xFF\xFD\xDF\xFF}\xC5WL\x992\xE5̙3\xDA*7nT孷\xDE
-mp \xAD\x90/\xBC\xF0\x9Ak\xAE\x996m\x9A\xD5j\xBD馛\xBE\xFC\xF2\xCB\xE8k\xCEbO\x8E=\xBA\xB9\xB9yڴiK\x96,\x99;wnjl6[GG\x87\xF6x\xE4ȑǎ\xAB\xAC\xAC<r\xE4\x88v(b\xEFn\xB7[\xBB$%\xD0'\x9F|\xE2r\xB9F\x8C\xA1\xFD9v\xECX\x97\xCBu\xE8С\xCC\xCC\xCC\xF9\xF3\xE7Ϝ9\xB3\xA2\xA2"%%\xE5\xE8ѣ\xC5\xC5\xC5~\xF8\xE1e\x97]v\xF8\xF0᧞z*\xB4\x85\xA1\x95\xCA\xCE\xCE>r\xE4\x88\xD7\xEB=r\xE4\x88\xF6\xBD<\xAB\xD5\xF6\xFC\x94\xDFe\x97]\xA6\xAA꧟~j6\x9B#52Һ\x81\xA3\xE1WTT\xE4v\xBB/\xBA\xE8"\xEDϔ\x94\x94o\xBCq\xF3\xE6͝e\x94;x\xFC\xF8\xF1w\xDF}W\xFB\xD3\xE1p\xB4\xB6\xB6v\xAF\xBA\xEC\xEC\xECX\x86.lwW\xBBV\xA4\x99\xA3\xEC\xEC\xECÇDz9\xECv\xBB\xC4\xC7\xC7+\x8A\xB4E\xA2L麺\xBA\xF2\xF2\xF2?\xFD\xE9O'O\x9E\xFC\xF2\xCB/\xB5\xD5E\xD1A\xB9\xDD\xEE\xC0r~\xFF\xFB\xDF:tHU\xD5\xC4\xC4\xC4Gy\xC4\x95Պ+\xB4\xC7mmm\xABV\xAD>|\xF8o\xBC1{\xF6\xEC\xEEuЯE<E\x98\x93\x93\xB3k\xBC\xBC\xBC\xC2\xC2\xC2\xFC\xFC\xFC\x93'OFZ\xB2\xB1\xB1q\xFC\xF8\xF1\xABW\
xAFnnn\xF6\xFFvmm\xADN\xA7\xBDGTCC\x83\xA2(\xFE\xCF6\xEDTړӧOOOO߰a\xC3[o\xBD\xB5x\xF1\xE2\xA9S\xA7\xAE[\xB7n߾}a?\x9B\xC3V\xA4\xA9\xA9IQ\xBB\xDDn\xB5Z\xADV\xEBڵk\xEF\xBA\xEB\xAE\xC8C\xF1ϫݝNg\x94Fv\x89\xF6\xF4C\xF1\xB1c:\xF4\xCC\xFFٰaC\xB7\xABv\xE8\xDF\xE9Z\x91fB\xEC\xA46G\x94)\xFD\xFD\xEFѢE\xAF\xBC\xF2Jcc\xE3\xF2\xE5\xCB\xFD\xCF(\x8At\xE3\x8C\xC2\xC2\xC2\xCC\xCC\xCC^xA\xFB\xE6`hE6\x9Bm\xF9\xF2\xE5\p\xC1\xE3\x8F?\xDE\xD5F\xCE\x8F`\xA9\xAA:jԨu\xEB\xD6544\z饫V\xADZ\xBDzu\xD8%\xDF~\xFBm\x{D912}\xA2(\xFE#I\x87CU՚\x9A\x9AA\x83.\x9C\x93\x93\xA3(J}}\xBDv\xABI\xED*"\xEDI\x83\xC1p\xDBm\xB7\xBD\xF6\xDAk\xB9\xB9\xB9\xAF\xBC\xF2J{{\xFB\xB2e\xCB/^c\xA5A\xB4;v\x8E?>//\xAFӁP\xA5\xBC\xBC\Q\x94\xDC\xDC\\xAD\xC0\xB0\x8D\xEC\x92!C\x86(\x8ARRR\xA2}Nk\xA2\x8C@\x97\x96Qey\xF3\xE6\xCD\xF3\xFF\xF9\xD1Gu\xAF\xBAPa\x87N\xBB\xA0*\xA8\xFCN\xD7:y\xF2dؙ\xBB\xEEu!T\xA7Szذa\x8F<\xF2\xC8\xCF~\xF6\xB3믿\xFE\xF2\xCB/W\xE5\xBC\xF3λ\xF0\xC2\x
DFy\xE7\x9D|0pI\xED
-\xBC\xE8װ\xC7\xC5ũ\xFC\x9C\xAB"\xC1z\xF3\xCD7w\xEDڥ(Jrr\xF2ĉ\xA3\\xAE\xAB\xAA\xAA\xCB\xE5r:\x9DJ@ֹ\xE4\x92K\xECv\xFBڵk\x83\x9E8q\xE2СC\xFF\xF6\xB7\xBFi\xBE\xF3\xCE;yyy\xFE\x8B\x88\xEF\xBC\xF3\xCE}\xFB\xF6%''\xC7\xC5\xC5͛7\xCF\xEDv\xEFڵ\xEB\x82.\x88\xB1\xD2к\xD2\xD2\xD2^|\xF1\xC5H-\xB2aÆ\xE1Ç_t\xD1EQi2\x99\xDA\xDB\xDBc,p\xF2\xE4\xC9yyyO<\xF1\x84\xD7\xEB-lU\x94\x88}\xC1\xEAB\x85\xBA\xB0\xE5+cv\xADH3!v\xDD\xEBB\xA8X\xA6\xF4O\xFAӱc\xC7\xFE\xE0?hiiў\xF9\xEDo{\xE8С^x\xA1Kum߾\xFD\xC0\x81s\xE6\xCC\xD1\xFE\\xBDzu\xA4\x9F\xCEN\x91.\xCEںuknn\xEE<\xB0dɒ\x89'\x96\x96\x96n9''\xE7\xE2\x8B/.**\xFA\xE2\x8B/\xE6̙\xFFꫯ\x9E>}:''\xA7\xA0\xA0`ƌ\xF7\xDCs\x8F\xC1`x饗TU}\xF3\xCD70u\xEA\xD4n\xB8ay\xF1\xF1\xF1\xFC\xE3UUݳgτ        \x96,Y\xB2hѢq\xE3\xC6\xED߿?\xB0\xDEѣG\xEFرC{|\xC7w\xAC\\xB92l\xF3\xC2V\xAA\xB5p\xF2\xE4\xC96l\xD0۶m[ff\xE6\xA4I\x93n\xBC\xF1\xC6\xDBo\xBF\xBD\xB8\xB88\xA8\x9CY\xB3f]u\xD5U=\xF4Э\xB7\xDE:nܸ\xA
3G\x8Fj\xCFGj\xE4\xE2ŋSSS\xE7͛\xF7\xD8c\x8F\x85\x8D\xA0\xF2?\xF9\xE4\x931c\xC6\xE4\xE7\xE7\xDFp\xC3-\xD7_\xBDְ\xB0\x85oݺu\xE6̙\x89\x89\x89\xCF<\xF3LKKK\xD8eB;\xD8\xEDꂊ\x8Aq\xE8\xEF\x93}\xFB\xF6\x85]+\xD2L\xF0\xFBꫯ\xE6ϟ\xAF(\xCA\xFD\xF7\xDF\xFF\xDE{\xEF\x856&l\xB6l\xD92t\xE8Љ'nٲ\xE5\xC0\x81\xB3gώ\x8F\x8F\xF6\xD9g\x9B\x9A\x9A\xB4\xAF.\\xB8\xB0\xB6\xB6\xD6_K\xE8\x94o\xDF\xED\xB7߮(\xCA̙3\xFD\xEB_k\x8B\xED߿\xDF`0\~\xF9\xE5\xFEkۏ?~\xD3M7͜9\xF3\xFF\xFD\xBF\xFF\xF7\xF8\xE3\x8F/X\xB0`ҤI\xF7\xDCs\x8Fv\xBD\xFC\xF6\xED\xDBo\xBB\xED6EQ.\xBA\xE8\xA2o\xBC\xF1\xA6\x9Bn\xBA\xE4\x92K
-
-
-\x9Ez\xEA)\xAF\x95p\xFE\xF9\xE76,\xEC&\x9C\x95tj\xE4\xB3.\x97\xAB\xAC\xAC,!!\xA1ӓ;\x8F\xA7\xBC\xBC<###\xE8\x92\x9F\xCFWQQ\xE1p8B/\x93\xAA\xAD\xAD5\xA1\xDFu\xAF\xAA\xAAJOO\xD7N\xBE444X,\x96ЛE\xAF4\x88\xCF\xE7+--5\x8D\xA1\xB72
-\xEC\xA6\xC5b        ] \xB4\x91\xAA\xAA\x96\x96\x960 ʥH\xA1\xAA\xAA\xAAZ[[\xD8\xD4H#\xBD\xBDZ]\x90HCT~И\x84]+\xCAL\x88]\xF7F#P\xECS:\x94\xDB\x{DBAC}\xAC\xD4\xE9t\x87#\xEC\xD1/\xB7\xDB\xED\xF1x|>\x9F\xD5j5\x81/i\xB7\x84HOO\xEFvNt\x87f\xB0IDAT\xCB\xFDK\xB4\x80\x80n\xE8¯\xC4 ,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a\xC6(\xAFU}YS\xB4~O\xEF\xD5\x977\xF3'\xD3#\xBD\xDA\ײm\xED\xBDW\xBB\xA2(3\x96L\xB7%\xC5\xF5j\xE0-`U\xAB\xDA\xF0\xF0۽WwJր(\xAB\xE9tK\xAF֮(ʥwL&`q\x9C"F\xC0\xA6SU5\xD2kn\xA7\xA7\xE4pY\xF9\xB1ʊcU\xE5\x9FW\x96\xAB\xAC\xFA\xB2\xC6\xEB\xF6v\xBB\xB2\xF8\xB6\xAC\x82\x8C\xAC\xEFdd8\xB2
-2\xB2Gd\xA6\xE7\xA5EZ\xD8\xE7\xF5\x95~Z^~\xAC\xAA\xFC\xF3ʊc\x95e\x9FWV\x9D\xA8q\xB5\xBB\xBA]\xBB\xC5f\xCE\xC8wd822\xB2
-Y\x83Gf\xE9\xF4\xBAnV\xB4\x80\xCA\xEB\xF1U\x9F\xAC)\xFF\xBCr\xED^nmh\x8Bq\xADI7L\x98\xB1\xE4ʬ\x82\x8C\xA4\xF4\xC4n5\xF2\x9FT\x9FZ\xF3umű\xAAu?\xDDPq\xBC*Ƶ\xF2.z\xCB\xE3\xD7e8RsRt:\xE2\xE8u];Eh0\xEA3\xF3\xCDg\x89\xB7ľ\xD6б\x83\x87O\xCB\xEFa\xBARE\xA7ץ祍\xBBzT\xB2#)\xF6\xB5҆\xF3\xFDiC\x92\xAE@\xDF\xE0,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a,a\xC6>\xA8\xA3\xF8`\xC9\xD8)X`CU\xA3`i\xB2\xFA"`\xED\xD9x`\xCF\xC6}P\xC0\xB7\xA7\x84\xB0\x84\xB0\x84\xB0\x84\xF5\xC5E\xEE7?6\xF7\xFA_\xCC,\xF0\x97\x97?}t\xFBq\xC1q@@@@@@@@@@@@X_\xFCس \x9F\xCF\xE7\xF3\xAA>\xAF/\xF6U\xBCoG\xAB3ƅu:Eo\xD0k\xFF\xE9t\xBA\xD0\xDAU\x9F\xEA\xF5\xF8T\x9FOUcoB\xACt:E\xA7\xD7\x8Cz\x9D^\xA7ד}\xE8\xAF\xFAY\xC0\xF2\xBA}m\x8D\xED\x97'\xF6U:\x9A\x9D\x9FWƴ\xA8Ng4\xE2\xAD\xF1\xE2\xAD        \x9D!8`
\xA9^\xB5\xAD\xA9\xBD\xB5\xBE\xAD\xA3\xC5\xE9\xF3xcoC\x8C\xF4F\x835\xC1?\xC0fK\x8C\xE3\xD8"\xFDW
-X\xAAO\xEDh\xE9\xA8=U\xD7\xDE\xD4\xFBZ-U\x8D6\x89eI\xBD^g\xB5[\xE5\xA6f}'\xC3h`\x8E3\xFF[\xED\xAA\xEAjw\x9D)\xAB/\xFF\xBC\xB2\xAE\xAC\xDE\xD9\xE6\xEAZ\xEBc`\xB1\x99N\xC9\xFEN\x86\xD1l\x8C3\xC4\xCB}\xA3?,\x9FO\xEDhq\xD6\x9Fno\xEEZ\xC0:s\xC0\xB2\xA7&\xBB(7!%>9=Q\x89\xFB\xF7\x97U\xC5\xD5\xEE\xAE+\xAD?\xB9\xF7\xEB\x92#em]        y1\xB2%\xC5-\x9Dg\xB7&9\x92\xAC        \x96\xD0s\x94\xA0_\xE8OKQU\x9F\xC7\xE7luy]]8=\xD7\xD6\xD4Q\xFAiyؗ\xB4\xA3\xD3\xEB\xF5z\x9Dި7\x9A\x8D\xB7\xB7\xE5L\xAB\xAB\xDD\xED\xF3\x85\xB9\xC6J\xBB\x9C\xAB\xB9\xAE\xA5\xAE\xAC\xBE\xA5\xAEE\xBB\xCC\xE7\x{169AAA}(JW\xAF\xCA\xFAg\xED:\xDD\xFF]\x{165CE7}\xDAS\xB2\x92\x9Dm\xAE.]d\xBEm\xFAS\xC0\xD2\xE9u&\xAB1a`\xBC\xC9څf\xFB<^\xE7\xBF_/\xA5\xD3\xE9\xF4\x9D\xDEh0Y\x8CF\xB3\xD1d1\x9A\xE3̦8\x935\xC120;%%+ٖh5C\xCE\xD0\xE9\xA3٘\x90?ppJs]K\x9C\xDD\xEAls\xB9\xDA\\xAE\xB7\xC7\xE5\xF18=^\xB7\xC7\xEB\xF1\xA9>U\x8D\xB5t:\x9DN\xAF3\xF5F\x8B\xC9h6\x98,&\x93\xD5h\x8E3[l\xE6\xA4\xF4
\xC4\xD4\xC1)\xF1\xC9qF\xCEП\xF5\xB3\x80g\xB7:\x86-\x8AK\x8C\xEB|\xE9\xA8\xE5X\xE2-\xF6Ԅ\xC9        \xE3m\x89q\xD6\x8B\xD5n\xB5%\xC5%-J\x94\x97\x96\x9C\x91l4G\x9DNg\xB1\x99ӆ\xF4L\xCEKv$5\xD76\xB77wt4wt\xB48\xDBۛN7\xD7W6\xB6Ե\xB8:\xDCJ\xD4CY:\xBD\xCEg\xB2LHr$%\xA6%\xD8\xE3\xACvk\x9C\xDDj\xB5[S҆\xA6\xA6h\xB6\x999?@\xFFկ\x96Ng\xB6Y`\xB5[{R\x8E\xC1\xA8\x8F\x9F\x{15D321}cs\xD2\xF3\xD2\xE2\xD8,6\xB3\xD9f\xB6\xD8\xCCV\xBBՖ\x97h5\x84;\x86d\xB2\x9Ad&[,\xE9yi\xCEV\xA7\xB3\xCD\xE5ls9[\x9DM\xA7\x9B+\x8EW8\xE5q\xBA=.\x8F7\xDC\xE9\xC5\xF5B\xAF\x8B\xB3[Ӈ\xA5\xE5\x8E\xE28?\xDD>0\xDEo\xB1\xD8\xCC\x9Bْ`\xB5%Z\xE3\xE3L\x96\xFE\xB4]@\x90~\xF6An0\xEA\xADv\xAB\xD1ܣf\xEB-z[R\x9Ccؠa-\xCD\x9EiK\x8A3\x98z\x83\xDE`\xFC\xBF;`\xE9ua \xE9-zK\xBC\xD9d5%LЮ\xBE\xF2y|\xB7\xB7\xF9t\xB3%\xDE\xD2t\xBA\xB9\xB6䌮\xA1]Q\xA2]A\xA5\xD7\xEB\xAC        \xD6\xD4!s\xC7:.'!%\xDEh2\xE8\xFF\xAFj\xED&X\xBE\xA0_\xEBgKѮa\xEAa\xFC\xD0\xE9L\xA3-ٖ\x9C\x9E\
x98\xECH\xB2&X\xBAT\xBB\xC1\xA83\xFFu\x97*UU-F}b\x9Aݖh\x8D\xF1\xDA)\x83\xC9`K\x8CKdOv$ڒ\xE2\x88S\x9Ce\xCE\xD5\xDBY\xEAt:\xBDN;X\xD5\xF3\x92\xFEUT\x8C\x85\xE9m=\xAB8\x9D\xAB\xA0\xD7\xB0\x84\xC5t-\x96\xB3\xCDUu\xA2\xBA\xE2xU\xC5q\xED\xFFU-U\x8D\xB1ױ\xF9\xD7?\xBA\xFD\x8B\xCC\xFC\xF4\xCC|Gf\xBE##ߑ\x9A\x93\xFB\xA91\x8F\xCBS\xF5e\x8DV{\xE5\xF1\xAA\x8A\xE3U\xC5Kb\xAF\xA0\x8FEX\xA7\x95\xFE\xE9\xC17*\x8EWՕ\xD6G\xBFyft\xCDu-G\xFE~\xF4\xC8ߏ\xFA\x9F1Ǚ\xE7:Rޏ~{g\xA4\xB5\xAA\xF3\xC3?T\xAF:\xFDu\x9D\xEC\x9D͝\xADΒC\xA5\xAD\xF5\xAD\x97,@-`Օ\xD6\xDEv4\xCA\xDD\xE6jw\x95.k\xA9k\x8D\xB2LkC{\x8C\xBF!؝t\xB8+\xBF\xA8\xEE\x8Dl\xE0,a,a\xD1N\x8E\x9F5z\x83\xFA\xFB>kJ\x90\xACG\xEC\xB57\xDF\xF9垍>\xFDDZ\xFA\x8A\x86\xE8\xD7lY\xE2-\x83Gf\x8D\xBBzԀ\x8Cd\x89\x96\xFC\x8E`#`#`#`#`#`#`#`#`\x8Bv'\xF7\xB3\x99\xFAo\xA4
-SzZ8\x9C\x93KUUU\xF5y\xBC\x97\xD7\xE3\xF4\xE8\xF5\xBA\x96\xE7qz\xBCn\xAF\xCF+\x90\xD5\xC0Y\xE0\X\xAA\xAA\xBA:\xDC-gZkK\xCFL\x93\xB5\xA7\x83\xD0\xD1\xEC<S^\xDF\xD6\xD8\xE6q{\xC9X\xE0\X>\xAF\xAF\xAD\xA1\xAD\xEA\xCB\x83\xD1P}\xB2\xC6h\xEE\xE9 \xB8\xDA\xDDu\xA5gjK\xCE8[\x9D\xAA/\xDA\xEFL\x80s\xC1\xB9\xB0\xBC_kC{\xC5\xF1\xEAƚf\x8Bͬ7\xF4\xF4J\xAF\xC7\xDB\xD1\xECl\xAEkq\xB6:U\xF2\xE7\xBCs1`\xA9>\xD5\xD9\xEA\xF48\xDDM\xA7\x9B\xF5z\x9D\xA2\xEB\xE95X\x8A\xAA\xFA\xBC>\xAF\xC7\xE7\xF5x\xB9\xCE\x9C\x8BKQէz\^\xC5\xE5\xFD\xA6\xCEB\xE7b\xC0\xD2\xE9tz\xA3\xDEh6\xCD\x83\xD1\xD0\xF3X>\x9F\xEA\xF3\xF8\xDCN\x8F\xD7\xEDỄ\xE0\Xz\x83Ζ\x97\x9C\x91\x94\xECH\x8AK\xB4\x8C\x86\xE8qyZ\xEB\xDBΔ\xD77V79\xDB\\xAA\x97\x80\xC09\xED\x9CXFCBJ\xFC\xE0\x99C\xC7\xE5\xCC`\xB4\x98zX\xA0\xB3\xD5Y}\xB2\xE6\xE4ޯ\x9Dm.W\x87[\xE1\xC4#\xE7\xB6s2`\xF4q\x89ִ\xA1\xA9y\x86d\\xE00\xC7\xF54`\xB57uX\xE2-\xF5\x8D\x95'\xAAu=?\xE3\xFA\xB9s1`)\x8A\xA27
\xCC6s|\xB2͞\x9A`\xB1\x99{X\x9A\xC1d\xB0%ř\xACƞ\xDF\xF1\x9C\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xC2X\xDFt\xBAOUU\x9FW\xF5y}>\xAF\xAF\xA3\xC5\xE9jsy\EUcY\xD7\xE7\xF5\xB9;\xDC\xADNg\xABS\xA7SF\x83N\xAF\xD3\xE9u:\x9D.\xF6\xDAU\xDF?kw\xB6j\xB5{U_L\xB5\xAB>\xD5\xED\xF48\xDB\\xAD.\x83ɠ7\xE8\xF5}\x97j\xDFf\xFD,`\xA9>\xD5\xEB\xF1z\^\x8F\xCB\xE3vz\xDCnW\xBB\xCB\xD5\xE6j\xACi\xAE:y\xBA\xB9\xB6\xC5\xE3\xF2tZ\x88\xCF\xEBs\xB6t\xD4W4T\xAFVTŖl\xB3\xD8\xCC\xE68\x93\xD1b2\x9A-F\xB3\xD1h6\xEA-a⎪\xAA>\x8FO\xAB\xDA\xE3\xD2jw\xBB\xDA]M\xA7[*OT7V7\xB9;\xDCjg        OUW\x9B\xAB\xB1\xBA\xA9\xF2\x8B*\x83\xC9`o\xB6Y\xCCq&\xB3\xD5d4\xB5\xE8\x8Dz\xC2\xFDW?Xn\xA7\xBB\xB9\xB6\xA5\xA1\xAA\xA9\xB9\xB6\xB9\xAD\xA9\xA3\xA3\xB9\xA3\xA3\xA5\xA3\xAD\xA9\xA3\xA5\xAE\xA5\xA6\xB8\xB6\xAE\xF3\x88\xE3\xF3\xFAZ\xEA\xDBʏUy=\xBE
\xEA\x935\xF1\xE2\xE3\xECVk\x82%\xCEn\xB5%ے\xD3\x93\x89\xB6$\x9B\xC1q<.o˙ֆʆƚ\xE6\xF6\xA6\xF6\x8Eg{sGGsGs]kmI]MqmG\x8B\xB3ӃX\xAA\xCF\xD7\xDE\xDCQ}\xB2F\xA7S\xEAJ\xEB\xE3S\xE2\xE3\xEC\xD66 1.i\x90=9#)!%\xDEh\xEEg\x9B\xF8\xF5\xA7Oqէv\xB48\xAB\xBF:\xFD\xF5\xC1\x92\xCA/\xAA\x9B\xEBZ\x9D\xADNg\x9B\xCB\xD9\xE6\xEAh\xE9ho\xEAhklwu\xB8\x95\xCEN\xD3\xF9\xBC\xBE\xB6\xC6\xF6\xEA\x935ͧ\x9B\xE3\xAD\x96x\x8B\xC5f6\xDB\xCCqvk\xB2#)gtv\xDE\xF8!\xE68\xB3\xC1h\xFE\xB7\xDAU\xD5\xD5\xE6\xAA+\xA9\xFBj\xFF\xA9\xF2\xCF+\x9BN7w\xB4:]\xFF\xAC\xDD\xD9\xD1\xDC\xD1\xD6\xD8\xEElsu\xEF|jG\x8B\xF3\xF4\xA9\xBA\xD6\xFA\xB6\x8A\xE3\xD5\xD6\x8B\xD9f\xB6\xD8̖xKb\x9A={xF\xEE\xF8!\xE683\x80\xFE\xAB?}\x8AkѤ\xB6\xE4L\x9Cj\xA9k\xF5\xBA\xBD^\x8F\xD7\xEB\xF1i\xD7B\xF9\xBC\xBENӕ\xA2(\x8A\xAAx\x9C\x9EV\xB7\xB7\xBD\xA9Co\xD0\x8Cz\xBDAo0LV\xD3\xC0\xEC:\xBDn`\xF6\x80\x94\xEC\xA1k\xB9:\xDCg\xCA\xBE\xFE\xA4\xF4\xC4O7{\^\x9F\xD7\xE7o\x80\xEASc\xBAKU\xBCno{SGG\x8B\xD3PӬ7\xE8F\x83ި
7\x9A\x89\x83=.O\xB2#)m\xC8@5\xD1\xCAYB\xFA\xA9\xFE\xB0UU}\xAA\xD7\xEDu;=^\xB7WUU\xBDA\xA77M\x99\xE2}^\x9F\xC7\xE5\xF1\xB8\xBC^\x8F/\xEC\x81(\xD5\xE7\xF3\xB8\xBD\x97\xC7\xEB\xF6\xFA|Z\xED\xA3\xD9 S\xBBO\xF5j\x85{|\xBE\xD8.\x96\xDFN\xD1V5E\xEB\xF7\xF4^\xDDq\x89q32=ҫ\xCDu-\xDB\xD6~\xF8\x8C\xEAS;Z\x9D-\x95\x8D\xCDu-\xD6xK\xCFO\xA2e\x9C\x9Fn0\xFD+\xE9tJBJ|\xC6\xF9\x83R\xE2-ƐؤSLS\xD2 {\xD6w2\xF4}G\x8B\xB3\x87\xB5\x87\xB2&X2\x89i        R\xA1-|#\xA2e\x94\x8AcU~\xBB\xF7\xEAN\xC9%`5\x9Dn\xE9\xD5\xDAE\xF9\xDE\xE2\xCB\xD3\x9F1Ǚ\x92%\xC8L\x8D8:\x9D\xCEl3\xCAM5\x9A\x8DY\xDF\xC9\xF0\xB8\xBC\xE2\xED1\x9A-\x89\xA9\xF6Y\xC9\x9B\x99\xF3\x83\xF4_\xFD\xEA\xA1\xB4\xF3'\xE5-\x9C\xF8\xCC?/Ʋ\x8Fl\xF9\x99\xAD\xA6dGRBJ\xBC\xC7\xEB-\xAF\xBAD\xA7\xD7M\xA3\xC5dW;\xE8/\xCE逕\x90\x9F\x98f\x8F}y\x9D^g\xB2\x9ALVS\xEF5        \x9CtQn+\xE0vzJ\x97\x95\xAB\xAC8VU\xFEye\xF9\xB1ʪ/k\xBC\xEE\xEE\x9F\x8B`\xCB*\xC8\xC8\xFANFf\x81#\xAB #{Dfz^Z\xA4\x85}^_\
xE9\xA7\xE5\xE5Ǫ\xCA?\xAF\xAC8VY\xF6yeՉW\xBB\xAB۵[l\xE6\x8C|GV\x81#\xB3 #\xAB\xC0\x91U\x901xd\x96Nϙ8 ,Z\xC0
-\xA5ݙ\xB3\xFC\xF3ʵ?x\xB9\xB5\xA1-Ƶ&\xDD0aƒ+\xB3
-2\x92\xD2;_:2է\xD6|][q\xACj\xDDO7T\xAF\x8Aq\xAD\xBC\x87\xDE\xF2\xF8u\x99\x8EԜ.l}\xA0k?\xF6l0\xEA3\xF3\xCDg\x89\xEF\x86\x8E<|Z~ӕ\xA2(:\xBD.=/m\xDCգ\x92I\xB1\xAF\x956d\xE0\x98\xEF\x8FH2\x90t\xFAF\xD7:E\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0F\xC0f\xEC\x83:\xBE:p\xEA\xFD\x97?,\xB0\xBE\xB2A\xB04Y}\xB0\xF6\xBEup\xEF[\xFB\xA0"\x80oN#`#`#`닋\xDCo~l\xEE\xF5\xBF\x98%X\xE0//\xFA\xE8\xF6\xE3\x82\xE2\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x800\x9D\xAA\xAA\x9D.\xE4lsU\x9D\xA8\xAE8^Uq\\xFB\xD5\xD7K|^_\x8Cu\xD8&\x97\x93\x99\x9F\x9E\x99\xEF\xC8\xCCwd\xE4;RsRt:]\x8C\xAB{\\x9E\xAA/k\xB4\xDA+\x8FW
U\xAF*>X\xE2\xEEpǸ\xBA%ޒ;.'3ߑ\x91\x9F\x9Ey\x81##\xDF\xE1\x96f0b\\xA0\xAB\xA2\xACS\x87J\xFF\xF4\xE0ǫ\xEAJ\xEBc\xC9a\xB13Ǚ\xE7:Rޏ~{g\xA4e\xAA\xF3\xC3?T\xAF:\xFDu]\xECa.\xA3~PnZF~\xFA\xE2?\xDCm\x98 X2\x80\xA2(\xC6(\xAFՕ\xD6\xDEv\xB47ju\xB5\xBBJ\x97\xB5ԵFY\xA6\xB5\xA1\xFD\xE0\xE6#\xBDQ\xBB\xD7\xE3\xAB<Q]y\xA2\xBA\xA3\xB9\x83\x80\xC4q-\x800\x80\xB0\x98.r@\xEC8\x82 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80
\x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x
8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x8
0 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80
\x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \x8C\x80 \xEC\xFFc\xDF\xE8\xCFʇEIEND\xAEB`\x82
</del><span class="cx">\ No newline at end of file
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionontextshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 746x35
- text run at (0,0) width 746: "This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its"
- text run at (0,18) width 285: "shadow are both color-corrected from sRGB."
- RenderBlock (anonymous) at (0,52) size 784x230
- RenderInline {SPAN} at (0,0) size 78x111 [color=#560063]
- RenderText {#text} at (0,2) size 78x111
- text run at (0,2) width 78: "H"
- RenderText {#text} at (78,77) size 4x17
- text run at (78,77) width 4: " "
- RenderBR {BR} at (82,91) size 0x0
- RenderInline {SPAN} at (0,0) size 78x111 [color=#560063]
- RenderText {#text} at (0,117) size 78x111
- text run at (0,117) width 78: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionuntaggedimagesexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-untagged-images-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformeflfastcsscolorcorrectionuntaggedimagesexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/efl/fast/css/color-correction-untagged-images-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/efl/fast/css/color-correction-untagged-images-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/efl/fast/css/color-correction-untagged-images-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 772x35
- text run at (0,0) width 772: "The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the"
- text run at (0,18) width 362: "same image and same border color corrected from sRGB."
- RenderImage {IMG} at (0,52) size 140x140 [border: (20px solid #560063)]
- RenderImage {IMG} at (140,52) size 140x140 [border: (20px solid #560063)]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionbackgroundsandtextexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionbackgroundsandtextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,41 +0,0 @@
</span><del>-layer at (0,0) size 785x1064
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x1064
- RenderBlock {HTML} at (0,0) size 785x1064
- RenderBody {BODY} at (8,8) size 769x1048
- RenderBlock {P} at (0,0) size 769x34
- RenderText {#text} at (0,0) size 747x34
- text run at (0,0) width 747: "This container has no color correction, and neither does the text inside, so it will not be visible since both are green and"
- text run at (0,17) width 78: "uncorrected."
- RenderBlock {DIV} at (0,50) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,0) size 117x166
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,266) size 769x34
- RenderText {#text} at (0,0) size 751x34
- text run at (0,0) width 751: "This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both"
- text run at (0,17) width 151: "are green and corrected."
- RenderBlock {DIV} at (0,316) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,0) size 117x166
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,532) size 769x34
- RenderText {#text} at (0,0) size 732x34
- text run at (0,0) width 732: "This container has sRGB color correction specified. The text inside does not have the property specified, but the text"
- text run at (0,17) width 584: "inherits the container's style, so the text will not be visible since both are green and corrected."
- RenderBlock {DIV} at (0,582) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,0) size 117x166
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,798) size 769x34
- RenderText {#text} at (0,0) size 761x34
- text run at (0,0) width 761: "This container has default color-correction specified, and the text has sRGB color correction specified. This text is visible"
- text run at (0,17) width 488: "even though both are green since the text is corrected and the container is not."
- RenderBlock {DIV} at (0,848) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,0) size 117x166
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x85
- RenderText {#text} at (0,0) size 769x85
- text run at (0,0) width 763: "This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same --"
- text run at (0,17) width 755: "purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special"
- text run at (0,34) width 769: "CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-color-"
- text run at (0,51) width 759: "correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the border"
- text run at (0,68) width 134: "and the image match."
- RenderBlock (anonymous) at (0,101) size 784x143
- RenderImage {IMG} at (0,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (140,126) size 4x17
- text run at (140,126) width 4: " "
- RenderImage {IMG} at (144,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (284,126) size 4x17
- text run at (284,126) width 4: " "
- RenderImage {IMG} at (288,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundimageexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-background-image-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundimageexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-background-image-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-background-image-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-background-image-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 785x858
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x858
- RenderBlock {HTML} at (0,0) size 785x858
- RenderBody {BODY} at (8,8) size 769x576
- RenderBlock {P} at (0,0) size 769x34
- RenderText {#text} at (0,0) size 768x34
- text run at (0,0) width 768: "The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the"
- text run at (0,17) width 480: "right the same image is tiled as a background, but it is corrected from sRGB."
- RenderBlock (floating) {DIV} at (0,50) size 400x400
- RenderBlock (floating) {DIV} at (0,450) size 400x400
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundsexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-backgrounds-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectiononbackgroundsexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-backgrounds-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x17
- RenderText {#text} at (0,0) size 130x17
- text run at (0,0) width 130: "These should match:"
- RenderBlock (floating) {DIV} at (0,33) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,33) size 784x103
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (200,86) size 4x17
- text run at (200,86) width 4: " "
- RenderBR {BR} at (0,0) size 0x0
- RenderBlock {P} at (0,152) size 784x17
- RenderText {#text} at (0,0) size 236x17
- text run at (0,0) width 236: "These should not match (at this time):"
- RenderBlock (floating) {DIV} at (0,185) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,185) size 784x100
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectiononboxshadowexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-box-shadow-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectiononboxshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-box-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x34
- RenderText {#text} at (0,0) size 777x34
- text run at (0,0) width 777: "The shadow should match the color of the top square and not the color of the bottom square. The top square and its shadow"
- text run at (0,17) width 232: "are both color-corrected from sRGB."
- RenderBlock {DIV} at (0,50) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,150) size 784x17
- RenderBR {BR} at (0,0) size 0x17
- RenderBlock {DIV} at (0,167) size 100x100 [bgcolor=#560063]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,23 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x17
- RenderText {#text} at (0,0) size 618x17
- text run at (0,0) width 618: "The distinction below is subtle, but the middle \"H\" is color-corrected, and the first and last are not."
- RenderBlock (anonymous) at (0,33) size 784x166
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (0,0) size 117x166
- text run at (0,0) width 117: "H"
- RenderText {#text} at (117,120) size 4x17
- text run at (117,120) width 4: " "
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (121,0) size 117x166
- text run at (121,0) width 117: "H"
- RenderText {#text} at (238,120) size 4x17
- text run at (238,120) width 4: " "
- RenderInline {SPAN} at (0,0) size 117x166 [color=#008000]
- RenderText {#text} at (242,0) size 117x166
- text run at (242,0) width 117: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextshadowexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-shadow-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionontextshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x34
- RenderText {#text} at (0,0) size 746x34
- text run at (0,0) width 746: "This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its"
- text run at (0,17) width 285: "shadow are both color-corrected from sRGB."
- RenderBlock (anonymous) at (0,50) size 784x222
- RenderInline {SPAN} at (0,0) size 78x111 [color=#560063]
- RenderText {#text} at (0,0) size 78x111
- text run at (0,0) width 78: "H"
- RenderText {#text} at (78,75) size 4x17
- text run at (78,75) width 4: " "
- RenderBR {BR} at (82,89) size 0x0
- RenderInline {SPAN} at (0,0) size 78x111 [color=#560063]
- RenderText {#text} at (0,111) size 78x111
- text run at (0,111) width 78: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionuntaggedimagesexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-untagged-images-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformgtkfastcsscolorcorrectionuntaggedimagesexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/gtk/fast/css/color-correction-untagged-images-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/gtk/fast/css/color-correction-untagged-images-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/gtk/fast/css/color-correction-untagged-images-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x34
- RenderText {#text} at (0,0) size 772x34
- text run at (0,0) width 772: "The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the"
- text run at (0,17) width 362: "same image and same border color corrected from sRGB."
- RenderImage {IMG} at (0,50) size 140x140 [border: (20px solid #560063)]
- RenderImage {IMG} at (140,50) size 140x140 [border: (20px solid #560063)]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionbackgroundsandtextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-backgrounds-and-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,41 +0,0 @@
</span><del>-layer at (0,0) size 800x1088
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x1088
- RenderBlock {HTML} at (0,0) size 800x1088
- RenderBody {BODY} at (8,8) size 784x1072
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 764x39
- text run at (0,0) width 764: "This container has no color correction, and neither does the text inside, so it will not be visible since both are green and"
- text run at (0,20) width 80: "uncorrected."
- RenderBlock {DIV} at (0,56) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,272) size 784x40
- RenderText {#text} at (0,0) size 767x39
- text run at (0,0) width 767: "This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both"
- text run at (0,20) width 154: "are green and corrected."
- RenderBlock {DIV} at (0,328) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,544) size 784x40
- RenderText {#text} at (0,0) size 747x39
- text run at (0,0) width 747: "This container has sRGB color correction specified. The text inside does not have the property specified, but the text"
- text run at (0,20) width 599: "inherits the container's style, so the text will not be visible since both are green and corrected."
- RenderBlock {DIV} at (0,600) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,816) size 784x40
- RenderText {#text} at (0,0) size 779x39
- text run at (0,0) width 779: "This container has default color-correction specified, and the text has sRGB color correction specified. This text is visible"
- text run at (0,20) width 499: "even though both are green since the text is corrected and the container is not."
- RenderBlock {DIV} at (0,872) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x100
- RenderText {#text} at (0,0) size 780x99
- text run at (0,0) width 780: "This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same --"
- text run at (0,20) width 770: "purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special"
- text run at (0,40) width 748: "CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-"
- text run at (0,60) width 766: "color-correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the"
- text run at (0,80) width 183: "border and the image match."
- RenderBlock (anonymous) at (0,116) size 784x145
- RenderImage {IMG} at (0,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (140,125) size 4x19
- text run at (140,125) width 4: " "
- RenderImage {IMG} at (144,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (284,125) size 4x19
- text run at (284,125) width 4: " "
- RenderImage {IMG} at (288,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectiononbackgroundimageexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-background-image-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-background-image-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-background-image-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x864
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x864
- RenderBlock {HTML} at (0,0) size 800x864
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 780x39
- text run at (0,0) width 780: "The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the"
- text run at (0,20) width 491: "right the same image is tiled as a background, but it is corrected from sRGB."
- RenderBlock (floating) {DIV} at (0,56) size 400x400
- RenderBlock (floating) {DIV} at (0,456) size 400x400
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectiononbackgroundsexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-backgrounds-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x20
- RenderText {#text} at (0,0) size 133x19
- text run at (0,0) width 133: "These should match:"
- RenderBlock (floating) {DIV} at (0,36) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,36) size 784x105
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (200,85) size 4x19
- text run at (200,85) width 4: " "
- RenderBR {BR} at (0,0) size 0x0
- RenderBlock {P} at (0,157) size 784x20
- RenderText {#text} at (0,0) size 243x19
- text run at (0,0) width 243: "These should not match (at this time):"
- RenderBlock (floating) {DIV} at (0,193) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,193) size 784x100
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectiononboxshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-box-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 737x39
- text run at (0,0) width 737: "The shadow should match the color of the top square and not the color of the bottom square. The top square and its"
- text run at (0,20) width 289: "shadow are both color-corrected from sRGB."
- RenderBlock {DIV} at (0,56) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,156) size 784x20
- RenderBR {BR} at (0,0) size 0x19
- RenderBlock {DIV} at (0,176) size 100x100 [bgcolor=#560063]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionontextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,23 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x20
- RenderText {#text} at (0,0) size 632x19
- text run at (0,0) width 632: "The distinction below is subtle, but the middle \"H\" is color-corrected, and the first and last are not."
- RenderBlock (anonymous) at (0,36) size 784x174
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "H"
- RenderText {#text} at (116,122) size 5x19
- text run at (116,122) width 5: " "
- RenderInline {SPAN} at (0,0) size 118x167 [color=#008000]
- RenderText {#text} at (120,3) size 118x167
- text run at (120,3) width 118: "H"
- RenderText {#text} at (237,122) size 5x19
- text run at (237,122) width 5: " "
- RenderInline {SPAN} at (0,0) size 118x167 [color=#008000]
- RenderText {#text} at (241,3) size 118x167
- text run at (241,3) width 118: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionontextshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 759x39
- text run at (0,0) width 759: "This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its"
- text run at (0,20) width 289: "shadow are both color-corrected from sRGB."
- RenderBlock (anonymous) at (0,56) size 784x234
- RenderInline {SPAN} at (0,0) size 78x112 [color=#560063]
- RenderText {#text} at (0,2) size 78x112
- text run at (0,2) width 78: "H"
- RenderText {#text} at (77,77) size 5x19
- text run at (77,77) width 5: " "
- RenderBR {BR} at (81,92) size 1x0
- RenderInline {SPAN} at (0,0) size 78x112 [color=#560063]
- RenderText {#text} at (0,119) size 78x112
- text run at (0,119) width 78: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastcsscolorcorrectionuntaggedimagesexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-untagged-images-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-untagged-images-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator/fast/css/color-correction-untagged-images-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 784x39
- text run at (0,0) width 784: "The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the"
- text run at (0,20) width 369: "same image and same border color corrected from sRGB."
- RenderImage {IMG} at (0,56) size 140x140 [border: (20px solid #560063)]
- RenderImage {IMG} at (140,56) size 140x140 [border: (20px solid #560063)]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionbackgroundsandtextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-backgrounds-and-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,41 +0,0 @@
</span><del>-layer at (0,0) size 800x1088
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x1088
- RenderBlock {HTML} at (0,0) size 800x1088
- RenderBody {BODY} at (8,8) size 784x1072
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 764x39
- text run at (0,0) width 764: "This container has no color correction, and neither does the text inside, so it will not be visible since both are green and"
- text run at (0,20) width 80: "uncorrected."
- RenderBlock {DIV} at (0,56) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,272) size 784x40
- RenderText {#text} at (0,0) size 767x39
- text run at (0,0) width 767: "This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both"
- text run at (0,20) width 154: "are green and corrected."
- RenderBlock {DIV} at (0,328) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,544) size 784x40
- RenderText {#text} at (0,0) size 747x39
- text run at (0,0) width 747: "This container has sRGB color correction specified. The text inside does not have the property specified, but the text"
- text run at (0,20) width 599: "inherits the container's style, so the text will not be visible since both are green and corrected."
- RenderBlock {DIV} at (0,600) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,816) size 784x40
- RenderText {#text} at (0,0) size 779x39
- text run at (0,0) width 779: "This container has default color-correction specified, and the text has sRGB color correction specified. This text is visible"
- text run at (0,20) width 499: "even though both are green since the text is corrected and the container is not."
- RenderBlock {DIV} at (0,872) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x100
- RenderText {#text} at (0,0) size 780x99
- text run at (0,0) width 780: "This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same --"
- text run at (0,20) width 770: "purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special"
- text run at (0,40) width 748: "CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-"
- text run at (0,60) width 766: "color-correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the"
- text run at (0,80) width 183: "border and the image match."
- RenderBlock (anonymous) at (0,116) size 784x145
- RenderImage {IMG} at (0,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (140,125) size 4x19
- text run at (140,125) width 4: " "
- RenderImage {IMG} at (144,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (284,125) size 4x19
- text run at (284,125) width 4: " "
- RenderImage {IMG} at (288,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectiononbackgroundimageexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-background-image-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-background-image-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-background-image-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x864
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x864
- RenderBlock {HTML} at (0,0) size 800x864
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 780x39
- text run at (0,0) width 780: "The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the"
- text run at (0,20) width 491: "right the same image is tiled as a background, but it is corrected from sRGB."
- RenderBlock (floating) {DIV} at (0,56) size 400x400
- RenderBlock (floating) {DIV} at (0,456) size 400x400
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectiononbackgroundsexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-backgrounds-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x20
- RenderText {#text} at (0,0) size 133x19
- text run at (0,0) width 133: "These should match:"
- RenderBlock (floating) {DIV} at (0,36) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,36) size 784x105
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (200,85) size 4x19
- text run at (200,85) width 4: " "
- RenderBR {BR} at (0,0) size 0x0
- RenderBlock {P} at (0,157) size 784x20
- RenderText {#text} at (0,0) size 243x19
- text run at (0,0) width 243: "These should not match (at this time):"
- RenderBlock (floating) {DIV} at (0,193) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,193) size 784x100
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectiononboxshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-box-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 737x39
- text run at (0,0) width 737: "The shadow should match the color of the top square and not the color of the bottom square. The top square and its"
- text run at (0,20) width 289: "shadow are both color-corrected from sRGB."
- RenderBlock {DIV} at (0,56) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,156) size 784x20
- RenderBR {BR} at (0,0) size 0x19
- RenderBlock {DIV} at (0,176) size 100x100 [bgcolor=#560063]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionontextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,23 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x20
- RenderText {#text} at (0,0) size 632x19
- text run at (0,0) width 632: "The distinction below is subtle, but the middle \"H\" is color-corrected, and the first and last are not."
- RenderBlock (anonymous) at (0,36) size 784x174
- RenderInline {SPAN} at (0,0) size 117x167 [color=#008000]
- RenderText {#text} at (0,3) size 117x167
- text run at (0,3) width 117: "H"
- RenderText {#text} at (116,122) size 5x19
- text run at (116,122) width 5: " "
- RenderInline {SPAN} at (0,0) size 118x167 [color=#008000]
- RenderText {#text} at (120,3) size 118x167
- text run at (120,3) width 118: "H"
- RenderText {#text} at (237,122) size 5x19
- text run at (237,122) width 5: " "
- RenderInline {SPAN} at (0,0) size 118x167 [color=#008000]
- RenderText {#text} at (241,3) size 118x167
- text run at (241,3) width 118: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionontextshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 759x39
- text run at (0,0) width 759: "This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its"
- text run at (0,20) width 289: "shadow are both color-corrected from sRGB."
- RenderBlock (anonymous) at (0,56) size 784x234
- RenderInline {SPAN} at (0,0) size 78x112 [color=#560063]
- RenderText {#text} at (0,2) size 78x112
- text run at (0,2) width 78: "H"
- RenderText {#text} at (77,77) size 5x19
- text run at (77,77) width 5: " "
- RenderBR {BR} at (81,92) size 1x0
- RenderInline {SPAN} at (0,0) size 78x112 [color=#560063]
- RenderText {#text} at (0,119) size 78x112
- text run at (0,119) width 78: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk2fastcsscolorcorrectionuntaggedimagesexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-untagged-images-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-untagged-images-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/ios-simulator-wk2/fast/css/color-correction-untagged-images-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x40
- RenderText {#text} at (0,0) size 784x39
- text run at (0,0) width 784: "The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the"
- text run at (0,20) width 369: "same image and same border color corrected from sRGB."
- RenderImage {IMG} at (0,56) size 140x140 [border: (20px solid #560063)]
- RenderImage {IMG} at (140,56) size 140x140 [border: (20px solid #560063)]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionbackgroundsandtextexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionbackgroundsandtextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,41 +0,0 @@
</span><del>-layer at (0,0) size 785x1072
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x1072
- RenderBlock {HTML} at (0,0) size 785x1072
- RenderBody {BODY} at (8,8) size 769x1056
- RenderBlock {P} at (0,0) size 769x36
- RenderText {#text} at (0,0) size 764x36
- text run at (0,0) width 764: "This container has no color correction, and neither does the text inside, so it will not be visible since both are green and"
- text run at (0,18) width 80: "uncorrected."
- RenderBlock {DIV} at (0,52) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,268) size 769x36
- RenderText {#text} at (0,0) size 766x36
- text run at (0,0) width 766: "This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both"
- text run at (0,18) width 154: "are green and corrected."
- RenderBlock {DIV} at (0,320) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,536) size 769x36
- RenderText {#text} at (0,0) size 745x36
- text run at (0,0) width 745: "This container has sRGB color correction specified. The text inside does not have the property specified, but the text"
- text run at (0,18) width 599: "inherits the container's style, so the text will not be visible since both are green and corrected."
- RenderBlock {DIV} at (0,588) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,804) size 769x36
- RenderText {#text} at (0,0) size 731x36
- text run at (0,0) width 731: "This container has default color-correction specified, and the text has sRGB color correction specified. This text is"
- text run at (0,18) width 545: "visible even though both are green since the text is corrected and the container is not."
- RenderBlock {DIV} at (0,856) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x90
- RenderText {#text} at (0,0) size 780x90
- text run at (0,0) width 780: "This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same --"
- text run at (0,18) width 768: "purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special"
- text run at (0,36) width 747: "CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-"
- text run at (0,54) width 766: "color-correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the"
- text run at (0,72) width 183: "border and the image match."
- RenderBlock (anonymous) at (0,106) size 784x144
- RenderImage {IMG} at (0,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (140,126) size 4x18
- text run at (140,126) width 4: " "
- RenderImage {IMG} at (144,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (284,126) size 4x18
- text run at (284,126) width 4: " "
- RenderImage {IMG} at (288,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundimageexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundimageexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-on-background-image-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 785x860
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x860
- RenderBlock {HTML} at (0,0) size 785x860
- RenderBody {BODY} at (8,8) size 769x576
- RenderBlock {P} at (0,0) size 769x36
- RenderText {#text} at (0,0) size 756x36
- text run at (0,0) width 756: "The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on"
- text run at (0,18) width 515: "the right the same image is tiled as a background, but it is corrected from sRGB."
- RenderBlock (floating) {DIV} at (0,52) size 400x400
- RenderBlock (floating) {DIV} at (0,452) size 400x400
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundsexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectiononbackgroundsexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 133x18
- text run at (0,0) width 133: "These should match:"
- RenderBlock (floating) {DIV} at (0,34) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,34) size 784x104
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (200,86) size 4x18
- text run at (200,86) width 4: " "
- RenderBR {BR} at (0,0) size 0x0
- RenderBlock {P} at (0,154) size 784x18
- RenderText {#text} at (0,0) size 243x18
- text run at (0,0) width 243: "These should not match (at this time):"
- RenderBlock (floating) {DIV} at (0,188) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,188) size 784x100
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectiononboxshadowexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectiononboxshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 737x36
- text run at (0,0) width 737: "The shadow should match the color of the top square and not the color of the bottom square. The top square and its"
- text run at (0,18) width 289: "shadow are both color-corrected from sRGB."
- RenderBlock {DIV} at (0,52) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,152) size 784x18
- RenderBR {BR} at (0,0) size 0x18
- RenderBlock {DIV} at (0,170) size 100x100 [bgcolor=#560063]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionontextexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionontextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,23 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 631x18
- text run at (0,0) width 631: "The distinction below is subtle, but the middle \"H\" is color-corrected, and the first and last are not."
- RenderBlock (anonymous) at (0,34) size 784x174
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "H"
- RenderText {#text} at (116,122) size 5x18
- text run at (116,122) width 5: " "
- RenderInline {SPAN} at (0,0) size 118x174 [color=#008000]
- RenderText {#text} at (120,0) size 118x174
- text run at (120,0) width 118: "H"
- RenderText {#text} at (237,122) size 5x18
- text run at (237,122) width 5: " "
- RenderInline {SPAN} at (0,0) size 118x174 [color=#008000]
- RenderText {#text} at (241,0) size 118x174
- text run at (241,0) width 118: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionontextshadowexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionontextshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 759x36
- text run at (0,0) width 759: "This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its"
- text run at (0,18) width 289: "shadow are both color-corrected from sRGB."
- RenderBlock (anonymous) at (0,52) size 784x230
- RenderInline {SPAN} at (0,0) size 78x115 [color=#560063]
- RenderText {#text} at (0,0) size 78x115
- text run at (0,0) width 78: "H"
- RenderText {#text} at (77,76) size 5x18
- text run at (77,76) width 5: " "
- RenderBR {BR} at (81,90) size 1x0
- RenderInline {SPAN} at (0,0) size 78x115 [color=#560063]
- RenderText {#text} at (0,115) size 78x115
- text run at (0,115) width 78: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionuntaggedimagesexpectedpng"></a>
<div class="binary"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.png</h4>
<pre class="diff"><span>
<span class="cx">(Binary files differ)
</span></span></pre></div>
<a id="trunkLayoutTestsplatformmacfastcsscolorcorrectionuntaggedimagesexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/mac/fast/css/color-correction-untagged-images-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 784x36
- text run at (0,0) width 784: "The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the"
- text run at (0,18) width 369: "same image and same border color corrected from sRGB."
- RenderImage {IMG} at (0,52) size 140x140 [border: (20px solid #560063)]
- RenderImage {IMG} at (140,52) size 140x140 [border: (20px solid #560063)]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectionbackgroundsandtextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-backgrounds-and-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-backgrounds-and-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,41 +0,0 @@
</span><del>-layer at (0,0) size 785x1072
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x1072
- RenderBlock {HTML} at (0,0) size 785x1072
- RenderBody {BODY} at (8,8) size 769x1056
- RenderBlock {P} at (0,0) size 769x36
- RenderText {#text} at (0,0) size 747x36
- text run at (0,0) width 747: "This container has no color correction, and neither does the text inside, so it will not be visible since both are green and"
- text run at (0,18) width 78: "uncorrected."
- RenderBlock {DIV} at (0,52) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,268) size 769x36
- RenderText {#text} at (0,0) size 751x36
- text run at (0,0) width 751: "This container has sRGB color correction specified, and so does the text inside, so the text will not be visible since both"
- text run at (0,18) width 151: "are green and corrected."
- RenderBlock {DIV} at (0,320) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,536) size 769x36
- RenderText {#text} at (0,0) size 732x36
- text run at (0,0) width 732: "This container has sRGB color correction specified. The text inside does not have the property specified, but the text"
- text run at (0,18) width 584: "inherits the container's style, so the text will not be visible since both are green and corrected."
- RenderBlock {DIV} at (0,588) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
- RenderBlock {P} at (0,804) size 769x36
- RenderText {#text} at (0,0) size 761x36
- text run at (0,0) width 761: "This container has default color-correction specified, and the text has sRGB color correction specified. This text is visible"
- text run at (0,18) width 488: "even though both are green since the text is corrected and the container is not."
- RenderBlock {DIV} at (0,856) size 200x200 [bgcolor=#008000]
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "G"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectionexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x90
- RenderText {#text} at (0,0) size 769x90
- text run at (0,0) width 763: "This test demonstrates -webkit-color-correction. Below are 3 images with 20 pixel borders. The images are all the same --"
- text run at (0,18) width 755: "purple with an sRGB color profile. The border is the same CSS color for all three images. The first image has no special"
- text run at (0,36) width 769: "CSS. The second has -webkit-color-correction set to default, so it matches the first image. And the third has -webkit-color-"
- text run at (0,54) width 759: "correction set to sRGB. This color-corrects the purple border from the sRGB color space, and the result is that the border"
- text run at (0,72) width 134: "and the image match."
- RenderBlock (anonymous) at (0,106) size 784x144
- RenderImage {IMG} at (0,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (140,126) size 4x18
- text run at (140,126) width 4: " "
- RenderImage {IMG} at (144,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (284,126) size 4x18
- text run at (284,126) width 4: " "
- RenderImage {IMG} at (288,0) size 140x140 [border: (20px solid #560063)]
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectiononbackgroundimageexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-on-background-image-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-on-background-image-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-on-background-image-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 785x860
- RenderView at (0,0) size 785x600
-layer at (0,0) size 785x860
- RenderBlock {HTML} at (0,0) size 785x860
- RenderBody {BODY} at (8,8) size 769x576
- RenderBlock {P} at (0,0) size 769x36
- RenderText {#text} at (0,0) size 768x36
- text run at (0,0) width 768: "The two squares below should not match each other. On the left an uncorrected image is tiled as a background, and on the"
- text run at (0,18) width 480: "right the same image is tiled as a background, but it is corrected from sRGB."
- RenderBlock (floating) {DIV} at (0,52) size 400x400
- RenderBlock (floating) {DIV} at (0,452) size 400x400
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectiononbackgroundsexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-on-backgrounds-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-on-backgrounds-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,21 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 130x18
- text run at (0,0) width 130: "These should match:"
- RenderBlock (floating) {DIV} at (0,34) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,34) size 784x104
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (200,86) size 4x18
- text run at (200,86) width 4: " "
- RenderBR {BR} at (0,0) size 0x0
- RenderBlock {P} at (0,154) size 784x18
- RenderText {#text} at (0,0) size 236x18
- text run at (0,0) width 236: "These should not match (at this time):"
- RenderBlock (floating) {DIV} at (0,188) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,188) size 784x100
- RenderImage {IMG} at (100,0) size 100x100
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectiononboxshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-on-box-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-on-box-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,13 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 777x36
- text run at (0,0) width 777: "The shadow should match the color of the top square and not the color of the bottom square. The top square and its shadow"
- text run at (0,18) width 232: "are both color-corrected from sRGB."
- RenderBlock {DIV} at (0,52) size 100x100 [bgcolor=#560063]
- RenderBlock (anonymous) at (0,152) size 784x18
- RenderBR {BR} at (0,0) size 0x18
- RenderBlock {DIV} at (0,170) size 100x100 [bgcolor=#560063]
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectionontextexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,23 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x18
- RenderText {#text} at (0,0) size 618x18
- text run at (0,0) width 618: "The distinction below is subtle, but the middle \"H\" is color-corrected, and the first and last are not."
- RenderBlock (anonymous) at (0,34) size 784x174
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (0,0) size 117x174
- text run at (0,0) width 117: "H"
- RenderText {#text} at (117,122) size 4x18
- text run at (117,122) width 4: " "
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (121,0) size 117x174
- text run at (121,0) width 117: "H"
- RenderText {#text} at (238,122) size 4x18
- text run at (238,122) width 4: " "
- RenderInline {SPAN} at (0,0) size 117x174 [color=#008000]
- RenderText {#text} at (242,0) size 117x174
- text run at (242,0) width 117: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectionontextshadowexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-shadow-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-on-text-shadow-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,20 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x584
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 746x36
- text run at (0,0) width 746: "This is subtle, but the shadow should match the color of the top H and not the color of the bottom H. The top H and its"
- text run at (0,18) width 285: "shadow are both color-corrected from sRGB."
- RenderBlock (anonymous) at (0,52) size 784x230
- RenderInline {SPAN} at (0,0) size 78x115 [color=#560063]
- RenderText {#text} at (0,0) size 78x115
- text run at (0,0) width 78: "H"
- RenderText {#text} at (78,76) size 4x18
- text run at (78,76) width 4: " "
- RenderBR {BR} at (82,90) size 0x0
- RenderInline {SPAN} at (0,0) size 78x115 [color=#560063]
- RenderText {#text} at (0,115) size 78x115
- text run at (0,115) width 78: "H"
- RenderText {#text} at (0,0) size 0x0
</del></span></pre></div>
<a id="trunkLayoutTestsplatformwinfastcsscolorcorrectionuntaggedimagesexpectedtxt"></a>
<div class="delfile"><h4>Deleted: trunk/LayoutTests/platform/win/fast/css/color-correction-untagged-images-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/win/fast/css/color-correction-untagged-images-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/platform/win/fast/css/color-correction-untagged-images-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,11 +0,0 @@
</span><del>-layer at (0,0) size 800x600
- RenderView at (0,0) size 800x600
-layer at (0,0) size 800x600
- RenderBlock {HTML} at (0,0) size 800x600
- RenderBody {BODY} at (8,8) size 784x576
- RenderBlock {P} at (0,0) size 784x36
- RenderText {#text} at (0,0) size 772x36
- text run at (0,0) width 772: "The two squares below should not match each other. On the left is an uncorrected image and border, and on the right is the"
- text run at (0,18) width 362: "same image and same border color corrected from sRGB."
- RenderImage {IMG} at (0,52) size 140x140 [border: (20px solid #560063)]
- RenderImage {IMG} at (140,52) size 140x140 [border: (20px solid #560063)]
</del></span></pre></div>
<a id="trunkLayoutTestssvgcssgetComputedStylebasicexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/LayoutTests/svg/css/getComputedStyle-basic-expected.txt        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -270,8 +270,6 @@
</span><span class="cx"> rect: style.getPropertyCSSValue(-webkit-box-reflect) : [object CSSPrimitiveValue]
</span><span class="cx"> rect: style.getPropertyValue(-webkit-box-shadow) : none
</span><span class="cx"> rect: style.getPropertyCSSValue(-webkit-box-shadow) : [object CSSPrimitiveValue]
</span><del>-rect: style.getPropertyValue(-webkit-color-correction) : default
-rect: style.getPropertyCSSValue(-webkit-color-correction) : [object CSSPrimitiveValue]
</del><span class="cx"> rect: style.getPropertyValue(-webkit-column-break-after) : auto
</span><span class="cx"> rect: style.getPropertyCSSValue(-webkit-column-break-after) : [object CSSPrimitiveValue]
</span><span class="cx"> rect: style.getPropertyValue(-webkit-column-break-before) : auto
</span><span class="lines">@@ -794,8 +792,6 @@
</span><span class="cx"> g: style.getPropertyCSSValue(-webkit-box-reflect) : [object CSSPrimitiveValue]
</span><span class="cx"> g: style.getPropertyValue(-webkit-box-shadow) : none
</span><span class="cx"> g: style.getPropertyCSSValue(-webkit-box-shadow) : [object CSSPrimitiveValue]
</span><del>-g: style.getPropertyValue(-webkit-color-correction) : default
-g: style.getPropertyCSSValue(-webkit-color-correction) : [object CSSPrimitiveValue]
</del><span class="cx"> g: style.getPropertyValue(-webkit-column-break-after) : auto
</span><span class="cx"> g: style.getPropertyCSSValue(-webkit-column-break-after) : [object CSSPrimitiveValue]
</span><span class="cx"> g: style.getPropertyValue(-webkit-column-break-before) : auto
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/ChangeLog        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -1,3 +1,61 @@
</span><ins>+2015-08-08 Darin Adler <darin@apple.com>
+
+ Remove -webkit-color-correction CSS property
+ https://bugs.webkit.org/show_bug.cgi?id=147812
+
+ Reviewed by Maciej Stachowiak.
+
+ Covered by existing tests.
+
+ I am doing some general cleanup of handling of color spaces in WebKit.
+ This removes the obsolete web-visible property that allowed clients to
+ get color correction on older Apple platforms where we chose not to do
+ it all the time for performance reasons. Currently, it has no effect on
+ any supported platform.
+
+ Now that this property is removed, a website can detect that it's not
+ there if it uses getComputedStyle, but I don't expect this to have
+ significant compatibility fallout. It's harmless to continue using the
+ property in legacy content or websites that have not been updated, since
+ unknown property names are ignored and it had no effect before anyway.
+
+ * css/CSSComputedStyleDeclaration.cpp: Removed
+ CSSPropertyWebkitColorCorrection from the list of computed properties.
+ (WebCore::ComputedStyleExtractor::propertyValue): Removed the
+ CSSPropertyWebkitColorCorrection case.
+
+ * css/CSSParser.cpp:
+ (WebCore::isValidKeywordPropertyAndValue): Removed the
+ CSSPropertyWebkitColorCorrection case.
+ (WebCore::isKeywordPropertyID): Ditto.
+ (WebCore::CSSParser::parseValue): Ditto.
+
+ * css/CSSPrimitiveValueMappings.h:
+ (WebCore::CSSPrimitiveValue::CSSPrimitiveValue): Deleted the overload
+ of this that converts a ColorSpace to a CSSPrimitiveValue.
+ (WebCore::CSSPrimitiveValue::operator ColorSpace): Deleted.
+
+ * css/CSSPropertyNames.in: Removed -webkit-color-correction.
+
+ * css/CSSValueKeywords.in: Removed the -webkit-color-correction section,
+ which contained sRGB.
+
+ * css/SVGCSSValueKeywords.in: Uncommented sRGB now that it's not shared
+ with -webkit-color-correction.
+
+ * rendering/style/RenderStyle.h: Removed setColorSpace and initialColorSpace.
+ Kept colorSpace around for now, but it simply returns ColorSpaceSRGB.
+ This prevents us from needing to touch every single call site that passes
+ the color space in to functions in the platform graphics abstraction.
+ We'll touch most of those call sites when we change Color to include the
+ color space and eventually we can delete this.
+
+ * rendering/style/StyleRareInheritedData.cpp: Deleted colorSpace.
+ (WebCore::StyleRareInheritedData::StyleRareInheritedData): Deleted
+ code to initialize colorSpace and to copy colorSpace.
+ (WebCore::StyleRareInheritedData::operator==): Deleted code to compare
+ colorSpace.
+
</ins><span class="cx"> 2015-08-09 Eric Carlson <eric.carlson@apple.com>
</span><span class="cx">
</span><span class="cx"> [Mac] Always require ExternalDeviceAutoPlayCandidate flag to AirPlay automatically
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSComputedStyleDeclarationcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -282,7 +282,6 @@
</span><span class="cx"> CSSPropertyWebkitBoxReflect,
</span><span class="cx"> CSSPropertyWebkitBoxShadow,
</span><span class="cx"> CSSPropertyWebkitClipPath,
</span><del>- CSSPropertyWebkitColorCorrection,
</del><span class="cx"> CSSPropertyWebkitColumnBreakAfter,
</span><span class="cx"> CSSPropertyWebkitColumnBreakBefore,
</span><span class="cx"> CSSPropertyWebkitColumnBreakInside,
</span><span class="lines">@@ -3006,8 +3005,6 @@
</span><span class="cx"> }
</span><span class="cx"> case CSSPropertyPointerEvents:
</span><span class="cx"> return cssValuePool().createValue(style->pointerEvents());
</span><del>- case CSSPropertyWebkitColorCorrection:
- return cssValuePool().createValue(style->colorSpace());
</del><span class="cx"> case CSSPropertyWebkitLineGrid:
</span><span class="cx"> if (style->lineGrid().isNull())
</span><span class="cx"> return cssValuePool().createIdentifierValue(CSSValueNone);
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSParsercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSParser.cpp (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSParser.cpp        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/css/CSSParser.cpp        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -873,10 +873,6 @@
</span><span class="cx"> if (valueID == CSSValueStart || valueID == CSSValueEnd || valueID == CSSValueCenter || valueID == CSSValueJustify)
</span><span class="cx"> return true;
</span><span class="cx"> break;
</span><del>- case CSSPropertyWebkitColorCorrection:
- if (valueID == CSSValueSrgb || valueID == CSSValueDefault)
- return true;
- break;
</del><span class="cx"> case CSSPropertyColumnFill:
</span><span class="cx"> if (valueID == CSSValueAuto || valueID == CSSValueBalance)
</span><span class="cx"> return true;
</span><span class="lines">@@ -1111,7 +1107,6 @@
</span><span class="cx"> case CSSPropertyWebkitBoxLines:
</span><span class="cx"> case CSSPropertyWebkitBoxOrient:
</span><span class="cx"> case CSSPropertyWebkitBoxPack:
</span><del>- case CSSPropertyWebkitColorCorrection:
</del><span class="cx"> case CSSPropertyWebkitColumnBreakAfter:
</span><span class="cx"> case CSSPropertyWebkitColumnBreakBefore:
</span><span class="cx"> case CSSPropertyWebkitColumnBreakInside:
</span><span class="lines">@@ -3100,7 +3095,6 @@
</span><span class="cx"> case CSSPropertyWebkitBoxLines:
</span><span class="cx"> case CSSPropertyWebkitBoxOrient:
</span><span class="cx"> case CSSPropertyWebkitBoxPack:
</span><del>- case CSSPropertyWebkitColorCorrection:
</del><span class="cx"> case CSSPropertyWebkitColumnBreakAfter:
</span><span class="cx"> case CSSPropertyWebkitColumnBreakBefore:
</span><span class="cx"> case CSSPropertyWebkitColumnBreakInside:
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSPrimitiveValueMappingsh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSPrimitiveValueMappings.h (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSPrimitiveValueMappings.h        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/css/CSSPrimitiveValueMappings.h        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -3747,42 +3747,6 @@
</span><span class="cx"> return AutoTextRendering;
</span><span class="cx"> }
</span><span class="cx">
</span><del>-template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ColorSpace space)
- : CSSValue(PrimitiveClass)
-{
- m_primitiveUnitType = CSS_VALUE_ID;
- switch (space) {
- case ColorSpaceDeviceRGB:
- m_value.valueID = CSSValueDefault;
- break;
- case ColorSpaceSRGB:
- m_value.valueID = CSSValueSrgb;
- break;
- case ColorSpaceLinearRGB:
- // CSS color correction does not support linearRGB yet.
- ASSERT_NOT_REACHED();
- m_value.valueID = CSSValueDefault;
- break;
- }
-}
-
-template<> inline CSSPrimitiveValue::operator ColorSpace() const
-{
- ASSERT(isValueID());
-
- switch (m_value.valueID) {
- case CSSValueDefault:
- return ColorSpaceDeviceRGB;
- case CSSValueSrgb:
- return ColorSpaceSRGB;
- default:
- break;
- }
-
- ASSERT_NOT_REACHED();
- return ColorSpaceDeviceRGB;
-}
-
</del><span class="cx"> template<> inline CSSPrimitiveValue::CSSPrimitiveValue(Hyphens hyphens)
</span><span class="cx"> : CSSValue(PrimitiveClass)
</span><span class="cx"> {
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSPropertyNamesin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSPropertyNames.in (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSPropertyNames.in        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/css/CSSPropertyNames.in        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -419,7 +419,6 @@
</span><span class="cx"> // Let -webkit-box-shadow blur radius be w_r and box-shadow blur radius be b_r. For
</span><span class="cx"> // w_r > 8px, b_r = 8 + 4 * sqrt((w_r - 8) / 2).
</span><span class="cx"> -webkit-box-shadow [Custom=All]
</span><del>--webkit-color-correction [Inherited, NameForMethods=ColorSpace]
</del><span class="cx"> -webkit-column-axis
</span><span class="cx"> -webkit-column-break-after [Initial=initialPageBreak]
</span><span class="cx"> -webkit-column-break-before [Initial=initialPageBreak]
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSValueKeywordsin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSValueKeywords.in (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSValueKeywords.in        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/css/CSSValueKeywords.in        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -920,10 +920,6 @@
</span><span class="cx"> economy
</span><span class="cx"> exact
</span><span class="cx">
</span><del>-// -webkit-color-correction
-//default
-sRGB
-
</del><span class="cx"> #if defined(ENABLE_VIEW_MODE_CSS_MEDIA) && ENABLE_VIEW_MODE_CSS_MEDIA
</span><span class="cx"> // (-webkit-view-mode:) media feature:
</span><span class="cx"> floating
</span></span></pre></div>
<a id="trunkSourceWebCorecssSVGCSSValueKeywordsin"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/SVGCSSValueKeywords.in (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/SVGCSSValueKeywords.in        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/css/SVGCSSValueKeywords.in        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -176,7 +176,7 @@
</span><span class="cx"> // CSS_PROP_STOP_OPACITY
</span><span class="cx"> // CSS_PROP_COLOR_INTERPOLATION
</span><span class="cx"> //auto
</span><del>-//sRGB
</del><ins>+sRGB
</ins><span class="cx"> linearRGB
</span><span class="cx">
</span><span class="cx"> // CSS_PROP_COLOR_INTERPOLATION_FILTERS
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingstyleRenderStyleh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/style/RenderStyle.h (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/style/RenderStyle.h        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/rendering/style/RenderStyle.h        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -895,7 +895,7 @@
</span><span class="cx"> void getTextShadowBlockDirectionExtent(LayoutUnit& logicalTop, LayoutUnit& logicalBottom) const { getShadowBlockDirectionExtent(textShadow(), logicalTop, logicalBottom); }
</span><span class="cx">
</span><span class="cx"> float textStrokeWidth() const { return rareInheritedData->textStrokeWidth; }
</span><del>- ColorSpace colorSpace() const { return static_cast<ColorSpace>(rareInheritedData->colorSpace); }
</del><ins>+ static ColorSpace colorSpace() { return ColorSpaceSRGB; } // FIXME: Remove after adding color space handling into the Color class.
</ins><span class="cx"> float opacity() const { return rareNonInheritedData->opacity; }
</span><span class="cx"> ControlPart appearance() const { return static_cast<ControlPart>(rareNonInheritedData->m_appearance); }
</span><span class="cx"> AspectRatioType aspectRatioType() const { return static_cast<AspectRatioType>(rareNonInheritedData->m_aspectRatioType); }
</span><span class="lines">@@ -1489,7 +1489,6 @@
</span><span class="cx"> void setTextStrokeColor(const Color& c) { SET_VAR(rareInheritedData, textStrokeColor, c); }
</span><span class="cx"> void setTextStrokeWidth(float w) { SET_VAR(rareInheritedData, textStrokeWidth, w); }
</span><span class="cx"> void setTextFillColor(const Color& c) { SET_VAR(rareInheritedData, textFillColor, c); }
</span><del>- void setColorSpace(ColorSpace space) { SET_VAR(rareInheritedData, colorSpace, space); }
</del><span class="cx"> void setOpacity(float f) { float v = clampTo<float>(f, 0, 1); SET_VAR(rareNonInheritedData, opacity, v); }
</span><span class="cx"> void setAppearance(ControlPart a) { SET_VAR(rareNonInheritedData, m_appearance, a); }
</span><span class="cx"> // For valid values of box-align see http://www.w3.org/TR/2009/WD-css3-flexbox-20090723/#alignment
</span><span class="lines">@@ -1866,7 +1865,6 @@
</span><span class="cx"> static NinePieceImage initialNinePieceImage() { return NinePieceImage(); }
</span><span class="cx"> static LengthSize initialBorderRadius() { return LengthSize(Length(0, Fixed), Length(0, Fixed)); }
</span><span class="cx"> static ECaptionSide initialCaptionSide() { return CAPTOP; }
</span><del>- static ColorSpace initialColorSpace() { return ColorSpaceDeviceRGB; }
</del><span class="cx"> static ColumnAxis initialColumnAxis() { return AutoColumnAxis; }
</span><span class="cx"> static ColumnProgression initialColumnProgression() { return NormalColumnProgression; }
</span><span class="cx"> static TextDirection initialDirection() { return LTR; }
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingstyleStyleRareInheritedDatacpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp (188201 => 188202)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp        2015-08-09 22:55:54 UTC (rev 188201)
+++ trunk/Source/WebCore/rendering/style/StyleRareInheritedData.cpp        2015-08-10 00:10:01 UTC (rev 188202)
</span><span class="lines">@@ -81,7 +81,6 @@
</span><span class="cx"> , lineBreak(LineBreakAuto)
</span><span class="cx"> , resize(RenderStyle::initialResize())
</span><span class="cx"> , userSelect(RenderStyle::initialUserSelect())
</span><del>- , colorSpace(ColorSpaceDeviceRGB)
</del><span class="cx"> , speak(SpeakNormal)
</span><span class="cx"> , hyphens(HyphensManual)
</span><span class="cx"> , textEmphasisFill(TextEmphasisFillFilled)
</span><span class="lines">@@ -163,7 +162,6 @@
</span><span class="cx"> , lineBreak(o.lineBreak)
</span><span class="cx"> , resize(o.resize)
</span><span class="cx"> , userSelect(o.userSelect)
</span><del>- , colorSpace(o.colorSpace)
</del><span class="cx"> , speak(o.speak)
</span><span class="cx"> , hyphens(o.hyphens)
</span><span class="cx"> , textEmphasisFill(o.textEmphasisFill)
</span><span class="lines">@@ -282,7 +280,6 @@
</span><span class="cx"> #endif
</span><span class="cx"> && resize == o.resize
</span><span class="cx"> && userSelect == o.userSelect
</span><del>- && colorSpace == o.colorSpace
</del><span class="cx"> && speak == o.speak
</span><span class="cx"> && hyphens == o.hyphens
</span><span class="cx"> && hyphenationLimitBefore == o.hyphenationLimitBefore
</span></span></pre>
</div>
</div>
</body>
</html>