Skip to content

Instantly share code, notes, and snippets.

@lorenzopub
Created November 23, 2016 16:11
Show Gist options
  • Save lorenzopub/0996ff3f8f1c106df682c007621e3801 to your computer and use it in GitHub Desktop.
Save lorenzopub/0996ff3f8f1c106df682c007621e3801 to your computer and use it in GitHub Desktop.
Sankey Gradients
height: 300
border: no
license: MIT
d3.sankey = function() {
var sankey = {},
nodeWidth = 24,
nodePadding = 8,
size = [1, 1],
nodes = [],
links = [];
sankey.nodeWidth = function(_) {
if (!arguments.length) return nodeWidth;
nodeWidth = +_;
return sankey;
};
sankey.nodePadding = function(_) {
if (!arguments.length) return nodePadding;
nodePadding = +_;
return sankey;
};
sankey.nodes = function(_) {
if (!arguments.length) return nodes;
nodes = _;
return sankey;
};
sankey.links = function(_) {
if (!arguments.length) return links;
links = _;
return sankey;
};
sankey.size = function(_) {
if (!arguments.length) return size;
size = _;
return sankey;
};
sankey.layout = function(iterations) {
computeNodeLinks();
computeNodeValues();
computeNodeBreadths();
computeNodeDepths(iterations);
computeLinkDepths();
return sankey;
};
sankey.relayout = function() {
computeLinkDepths();
return sankey;
};
sankey.link = function() {
var curvature = .5;
function link(d) {
var x0 = d.source.x + d.source.dx,
x1 = d.target.x,
xi = d3.interpolateNumber(x0, x1),
x2 = xi(curvature),
x3 = xi(1 - curvature),
y0 = d.source.y + d.sy + d.dy / 2,
y1 = d.target.y + d.ty + d.dy / 2;
return "M" + x0 + "," + y0
+ "C" + x2 + "," + y0
+ " " + x3 + "," + y1
+ " " + x1 + "," + y1;
}
link.curvature = function(_) {
if (!arguments.length) return curvature;
curvature = +_;
return link;
};
return link;
};
// Populate the sourceLinks and targetLinks for each node.
// Also, if the source and target are not objects, assume they are indices.
function computeNodeLinks() {
nodes.forEach(function(node) {
node.sourceLinks = [];
node.targetLinks = [];
});
links.forEach(function(link) {
var source = link.source,
target = link.target;
if (typeof source === "number") source = link.source = nodes[link.source];
if (typeof target === "number") target = link.target = nodes[link.target];
source.sourceLinks.push(link);
target.targetLinks.push(link);
});
}
// Compute the value (size) of each node by summing the associated links.
function computeNodeValues() {
nodes.forEach(function(node) {
node.value = Math.max(
d3.sum(node.sourceLinks, value),
d3.sum(node.targetLinks, value)
);
});
}
// Iteratively assign the breadth (x-position) for each node.
// Nodes are assigned the maximum breadth of incoming neighbors plus one;
// nodes with no incoming links are assigned breadth zero, while
// nodes with no outgoing links are assigned the maximum breadth.
function computeNodeBreadths() {
var remainingNodes = nodes,
nextNodes,
x = 0;
while (remainingNodes.length) {
nextNodes = [];
remainingNodes.forEach(function(node) {
node.x = x;
node.dx = nodeWidth;
node.sourceLinks.forEach(function(link) {
if (nextNodes.indexOf(link.target) < 0) {
nextNodes.push(link.target);
}
});
});
remainingNodes = nextNodes;
++x;
}
//
moveSinksRight(x);
scaleNodeBreadths((size[0] - nodeWidth) / (x - 1));
}
function moveSourcesRight() {
nodes.forEach(function(node) {
if (!node.targetLinks.length) {
node.x = d3.min(node.sourceLinks, function(d) { return d.target.x; }) - 1;
}
});
}
function moveSinksRight(x) {
nodes.forEach(function(node) {
if (!node.sourceLinks.length) {
node.x = x - 1;
}
});
}
function scaleNodeBreadths(kx) {
nodes.forEach(function(node) {
node.x *= kx;
});
}
function computeNodeDepths(iterations) {
var nodesByBreadth = d3.nest()
.key(function(d) { return d.x; })
.sortKeys(d3.ascending)
.entries(nodes)
.map(function(d) { return d.values; });
//
initializeNodeDepth();
resolveCollisions();
for (var alpha = 1; iterations > 0; --iterations) {
relaxRightToLeft(alpha *= .99);
resolveCollisions();
relaxLeftToRight(alpha);
resolveCollisions();
}
function initializeNodeDepth() {
var ky = d3.min(nodesByBreadth, function(nodes) {
return (size[1] - (nodes.length - 1) * nodePadding) / d3.sum(nodes, value);
});
nodesByBreadth.forEach(function(nodes) {
nodes.forEach(function(node, i) {
node.y = i;
node.dy = node.value * ky;
});
});
links.forEach(function(link) {
link.dy = link.value * ky;
});
}
function relaxLeftToRight(alpha) {
nodesByBreadth.forEach(function(nodes, breadth) {
nodes.forEach(function(node) {
if (node.targetLinks.length) {
var y = d3.sum(node.targetLinks, weightedSource) / d3.sum(node.targetLinks, value);
node.y += (y - center(node)) * alpha;
}
});
});
function weightedSource(link) {
return center(link.source) * link.value;
}
}
function relaxRightToLeft(alpha) {
nodesByBreadth.slice().reverse().forEach(function(nodes) {
nodes.forEach(function(node) {
if (node.sourceLinks.length) {
var y = d3.sum(node.sourceLinks, weightedTarget) / d3.sum(node.sourceLinks, value);
node.y += (y - center(node)) * alpha;
}
});
});
function weightedTarget(link) {
return center(link.target) * link.value;
}
}
function resolveCollisions() {
nodesByBreadth.forEach(function(nodes) {
var node,
dy,
y0 = 0,
n = nodes.length,
i;
// Push any overlapping nodes down.
nodes.sort(ascendingDepth);
for (i = 0; i < n; ++i) {
node = nodes[i];
dy = y0 - node.y;
if (dy > 0) node.y += dy;
y0 = node.y + node.dy + nodePadding;
}
// If the bottommost node goes outside the bounds, push it back up.
dy = y0 - nodePadding - size[1];
if (dy > 0) {
y0 = node.y -= dy;
// Push any overlapping nodes back up.
for (i = n - 2; i >= 0; --i) {
node = nodes[i];
dy = node.y + node.dy + nodePadding - y0;
if (dy > 0) node.y -= dy;
y0 = node.y;
}
}
});
}
function ascendingDepth(a, b) {
return a.y - b.y;
}
}
function computeLinkDepths() {
nodes.forEach(function(node) {
node.sourceLinks.sort(ascendingTargetDepth);
node.targetLinks.sort(ascendingSourceDepth);
});
nodes.forEach(function(node) {
var sy = 0, ty = 0;
node.sourceLinks.forEach(function(link) {
link.sy = sy;
sy += link.dy;
});
node.targetLinks.forEach(function(link) {
link.ty = ty;
ty += link.dy;
});
});
function ascendingSourceDepth(a, b) {
return a.source.y - b.source.y;
}
function ascendingTargetDepth(a, b) {
return a.target.y - b.target.y;
}
}
function center(node) {
return node.y + node.dy / 2;
}
function value(link) {
return link.value;
}
return sankey;
};
{
"nodes": [
{
"name": "All referred patients",
"id": 0
},
{
"name": "First consult outpatient clinic",
"id": 1
},
{
"name": "No OR-receipt",
"id": 2
},
{
"name": "OR-receipt",
"id": 3
},
{
"name": "No surgery",
"id": 4
},
{
"name": "Start surgery",
"id": 5
},
{
"name": "Emergency",
"id": 6
},
{
"name": "No emergency",
"id": 7
}
],
"links": [
{
"source": 0,
"target": 1,
"value": 1,
"label": 1
},
{
"source": 1,
"target": 2,
"value": 0.64,
"label": 0.64
},
{
"source": 1,
"target": 3,
"value": 0.36,
"label": 0.36
},
{
"source": 3,
"target": 4,
"value": 0.1188,
"label": 0.33
},
{
"source": 3,
"target": 5,
"value": 0.2412,
"label": 0.67
},
{
"source": 5,
"target": 6,
"value": 0.038592,
"label": 0.16
},
{
"source": 5,
"target": 7,
"value": 0.20260799999999998,
"label": 0.84
}
]
}
<!DOCTYPE html>
<meta charset='utf-8'>
<title>Sankey Gradients</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/4.4.0/d3.min.js'></script>
<script src='d3.sankey.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.19.0/babel.min.js'></script>
<style>
.node rect {
cursor: move;
fill-opacity: .9;
shape-rendering: crispEdges;
}
.node text {
pointer-events: none;
font-family: Helvetica;
font-size: 12px;
}
</style>
<body>
<div id='chart'>
<script lang='babel' type='text/babel'>
const units = '';
const margin = {top: 10, right: 10, bottom: 10, left: 10};
const width = 960 - margin.left - margin.right;
const height = 300 - margin.top - margin.bottom;
// zero decimal places
const formatNumber = d3.format(',.0f');
const format = d => `${formatNumber(d)} ${units}`;
const color = d3.scaleOrdinal()
.domain([
'All referred patients',
'First consult outpatient clinic',
'OR-receipt',
'Start surgery',
// 'No OR-receipt',
// 'No emergency',
// 'No surgery',
'Emergency'
])
.range([
'#90eb9d',
'#f9d057',
'#f29e2e',
'#00ccbc',
'#d7191c'
]);
d3.select('#chart')
.style('visibility', 'visible');
// append the svg canvas to the page
const svg = d3.select('#chart').append('svg')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', `translate(${margin.left},${margin.top})`);
// set the sankey diagram properties
const sankey = d3.sankey()
.nodeWidth(12)
.nodePadding(10)
.size([width, height]);
const path = sankey.link();
// append a defs (for definition) element to your SVG
const defs = svg.append('defs');
// load the data
d3.json('data.json', (error, graph) => {
console.log('graph', graph);
sankey
.nodes(graph.nodes)
.links(graph.links)
.layout(13); // any value > 13 breaks the link gradient
// add in the links
const link = svg.append('g').selectAll('.link')
.data(graph.links)
.enter().append('path')
.attr('class', 'link')
.attr('d', path)
.style('stroke-width', d => Math.max(1, d.dy))
.style('fill', 'none')
.style('stroke-opacity', 0.18)
.sort((a, b) => b.dy - a.dy)
.on('mouseover', function() {
d3.select(this).style('stroke-opacity', 0.5);
})
.on('mouseout', function() {
d3.select(this).style('stroke-opacity', 0.2);
});
// add the link titles
link.append('title')
.text(d => `${d.source.name} → ${d.target.name}\n${format(d.value)}`);
// add in the nodes
const node = svg.append('g').selectAll('.node')
.data(graph.nodes)
.enter().append('g')
.attr('class', 'node')
.attr('transform', d => `translate(${d.x},${d.y})`)
.call(d3.drag()
.subject(d => d)
.on('start', function() {
this.parentNode.appendChild(this); })
.on('drag', dragmove));
// add the rectangles for the nodes
node.append('rect')
.attr('height', d => d.dy)
.attr('width', sankey.nodeWidth())
.style('fill', d => {
if(color.domain().indexOf(d.name) > -1){
return d.color = color(d.name);
} else {
return d.color = '#ccc';
}
})
.append('title')
.text(d => `${d.name}\n${format(d.value)}`);
// add in the title for the nodes
node.append('text')
.attr('x', -6)
.attr('y', d => d.dy / 2)
.attr('dy', '.35em')
.attr('text-anchor', 'end')
.attr('transform', null)
.text(d => d.name)
.filter(d => d.x < width / 2)
.attr('x', 6 + sankey.nodeWidth())
.attr('text-anchor', 'start');
// add gradient to links
link.style('stroke', (d, i) => {
console.log('d from gradient stroke func', d);
// make unique gradient ids
const gradientID = `gradient${i}`;
const startColor = d.source.color;
const stopColor = d.target.color;
console.log('startColor', startColor);
console.log('stopColor', stopColor);
const linearGradient = defs.append('linearGradient')
.attr('id', gradientID);
linearGradient.selectAll('stop')
.data([
{offset: '10%', color: startColor },
{offset: '90%', color: stopColor }
])
.enter().append('stop')
.attr('offset', d => {
console.log('d.offset', d.offset);
return d.offset;
})
.attr('stop-color', d => {
console.log('d.color', d.color);
return d.color;
});
return `url(#${gradientID})`;
})
// the function for moving the nodes
function dragmove(d) {
d3.select(this).attr('transform',
`translate(${d.x = Math.max(0, Math.min(width - d.dx, d3.event.x))},${d.y = Math.max(0, Math.min(height - d.dy, d3.event.y))})`);
sankey.relayout();
link.attr('d', path);
}
});
</script>
</body>
</html>
�PNG

IHDR���D bKGD������� pHYs  ��tIME� ��)� IDATx���w|������lI �EPCQ�cÂ��k�X�E�{U��k;rm�+"R�X�"�iҋ(�i[f��cK6=���|?Hvf���ٝ�<{Μ1\�u�Ù�QQQQQQQQ````�]��� ��ul�
>-p\�o��[ eT�:���/�(��e{Nո��lT�|�ӭZ}�5��lOTe;*��5�/ث����V���W ���������j+W���>,;���ݬ������}��u�Dݸ��Kտ�G~��j<������ذ�[�re����ʪ�\U�.�12�|��*��/�;-WtX3*qpwơ�ݞ�����j�Ɛ�K%����
*��s
��C��^]��N�"";��@����������������������������������������������������������������������(�������(�������(�������(�������(�������(�������(�������(�������(������������������������������������������������������������������������������(�������(�������(�������(�������(�������(�������(�������(�������(������������������������������������������������������������������������������(�������(�������(�������(�������(�������(�������(�������(�������(������������������������������������������������������������������������������(�������(�������(�������(�������(�������(�������(�������(�������(��������ã*م� �c��T�Z�EDDDDD�E�q7Ԧ����!u�qԮu-�BU,�2��K�ՠ1�����]�Z�]*\��ZԪU�_�c0n����W�8T�:�6�`����)������T#w�m��ɲ�Xl�KAK 2���\����;[�la���5h ���˸D^��1��|%�/����ƨ����WD�]s�ON����L�Γ�EDDDDDvkA����ɡL�X�"���xk�q�fY^)�����>�1���C������iI������p��o�˞}�A4oܐ�-�ӼEK�\}+0�U�>�e�c��v��V�Ъi<tIl{.}�Ô� 1��'�-���F"S���a�5<421������m��<��ی{u@�U��'X�X7�k�݀� \��g�茮,"""""RM��€��1��x�8B�?e~h�8��~Y����峸l� ��u��C��I�]������˅��m���Ƕm�l�B��̞�7sP�����!q�E �I?����Xx�$~[8�#^�a��MX6��}�`>���My��ל��s�y���������YcXx� ��� �C� ��g��ǒc�}�o�l �K�'�P�}G �`�^ЩH��KDDDDD�m�!}��
�q/^����-��lʓ���ᾳ;p��x���|��r����e�Ý��l������ME�w>����n��-�xhЌ��\~��k��O�e�1��c ������1oㅬz�%.~�7��hɬ+�1;�o^�9�G�;� Іg��'�gÕ�ьf��0Ģ�}hn�����Ŕ�����C0�m���F-�""""""�)�@~{��}Գ��31#Ē39��R�������}�C�̭�K+?��ѵ��n�|ͺ��X�n�֮d̰s�y�,�Ᏹ�Ӿ]{ڷkρ�'�Kn�>V���8��qb���j�r�΀�;4K���Ewq�Q �=G%�F��``!A��f]�ab=���ub��—�,"""""�hy�03�r��a��i� ƮO�~v�%@�b}��= ��fy񘸁��|B�KMvn�و@��@�@�������I(
-/�<6�֖-�\ۦ�0���[� �eKyW��Y�ֺ>Y��Z��}�!��l�E���Y����c˪��j�Z��<sk��@zb��;�=Q� ��˨"SZ��s�ML[BL{�F~f=�/����+��v�0n��5�[���%�3�=���)s��h>�Em�ch��`�,� �'��|�������`�m}��l�4��p�Q#Y�Ъoi�U��d����̼f<������oω��)��8��k_����w��ѣ����\�����`�j�NѮ�������s�uO<pٟ1�焬��%�aҼ���6��_�����\����T�� ~\umeo���Ate ���]G�,� �'�����?qB��h[����q4���������\w`l��1\yh�@ۏxy���o<8�MC�;���ĺ�q0㿿2��X��-��U��6�]�C�2\�u+��{[�V��S=k~㫲������p�c[���Y�[��S�:*.�-}~�U�z7��+��1��1*�b�*�����5�^�l�����M���[��nMj��|��������&
�]�hwo��}�w�z��}`����_�����{���W/�ߓJ��P0Hv2��[�?;�lx�hX'P3��$hC�V�HKqb����%��������R��t6}ۇ�� �@�י�^��׾r��*m~VVV��S ��������h�ʲ��ݠZ嬿��e�ކ`f�-<PZh�vN�+������H��&G1a
;�>�
�""""""�cZrl�]o�4
���������EDDDDDd��.�"""n4�ӱ�?]'��@bz��+��O�WiS�=*{�Y�CLO�`��)�|7�9�a�3"""
�"""�G�� �N���P�'���)+xW�l�����zk/��ۄ`�V�� ���ˆ��w���jô�EDDXDD�FB��\׉�h��:�ٱ����v��oI6 +��lZ�dX6�EDDXDD����Fr�0ء2�Uu�:�9�6ر�Ǝ��7b-ΉVd#ޢlke6��-ӧ�`���.��]Cu���X�������My�M���4=X�/� S-�""�,""�S�u#���ˉ�+R��ظ��v��]� 3vS ��Ì��������DDDXDDv����*R}���89�7��]� 3�R����b����(�����k�U��8���M��]@b�.3>������b��XDDXDD�o^�HP�!�`0������k56��G�L/^ˋi�x�ED�EDD� �N��Cv�P��mۄ�8�U�cy�Z>LC�XDDXDD���k���Q�e� �.`�6�����a�5=��b�b`كCo4���,{w0�6!;����i��L/.ർx-lKDDXDDv���OޣWD��b�;� �[�#N[����b�Z�ED�EDdW ��Fn�[��v]"%B���0��C�O�XDDXDDvb����"5�vl�!��\,��gz�<
�""
�""R��7��-Pg�����0y�b+>�ϴ�^<���ԩ������lg�M���.Dv�P�g~1�_G�7�xP6�+��(�����Ȟ&�D�y)�۶�ح���n�>3v���������ޛ{#A�h>��*Cdb���1%�O�&vq,ba�4LҬX���0�: `٣�o��XD�`��glb�n�.�9���$6�V�i��p�1L<:N������v���G[�H�` ��8�A�)z�<������4b�1��������,"
�""��_��,"C��u�ů��u���_�a$�r�1����40���+8�����(���n'�9O�ɀ����k���OHM��}����� �x�d�.����
2v�2�)]^|dn�Q~�^�{`Q�)M�- �Q��"��<O]��J�O���*-��SO{_�Vq0�u\DXDD��N7�U�WDd�h/�{y�(�����=�0��eҫ�z-"
�""
�""�K����������D06�d(��±���Ȟ�|�8�m��T"{4u���E�!9h�@�‘�<�c�a�� Ɩ*M�U""�G�u����Յ��T*G]��R�q�i�n�nk�P,
�""�ke�HP�WDD�-��Q
���Pl⏷�� �(��{z\�⾈�^�7y����� �A�N�'�O� �4�R �=�N�4��pm=z�揔1\��&��3��QX>�F^3���X˲�C��֔��^�c^�� ���̲j�<o��Elȍ����S�|y�������7�S/e�Wp{���������E�~��ٶ�,����.�ߖ����3B���X�W}e����,�5���M���A����p����u���.R��O�[� �Fa�;W�{cY��/�_�O�U�""{N .p��6�"a����#b���uTA��}��� .���`�Y.k�'�� ��j�?�����/��ځ/.��N��x �������g�~r��/�/�~���K�6�p���}�w��k���_��j�kSg�*��X���z�z�|�!X;�|��$>^S}%��D�lOy����ɟK��}���oFҫ�o��g��q��uU=Hr��������.�߷;Ӿ�_�����c]�m�G¬���\G=�D����� ��o��_J�P%K+yZ���~�{�=���' ���h��ԣ���FL�M�r8WL�Y��ś�o��rWz�S�[�����������s��>��Hy܀ы���у�����.ƌ���1gO�
o�=�����^�D��yt����_��kH� �a����0��z�L_#2}����W�0홛�օ;��/���^=��o���������5&��Ǚ�,�=��]��糏_!�ט �-|�2 �ຬ�q���E�0?��8�}M��o��.�� �v(�[@�c��|~O3���m�r�c����0�ocI(�ԑO%[���[�F^��'��KJ|+f֘��y`���/��K�>�g��<���|>�+��^�zE���X5�+�L)�B��c�4~z�6.u��70iY�V��s?��x�G��!K�-���x�a��H.�x�Z��ea��_9�W�:+}?�xl2��� �e3y�������:�����`5�^smN��0��6�Uy�m ���!Wt�[��xd2K�۳����ƾx?�z����Kða�Gd�w�<�U�T���)��~W����G'�&��q8{�o��2v�ؔ��d�W?��-�����Uo�/V������u�z�0{�� ��mЕ!���a�=0��6��V� �3b�!��aQ.k���'׏㡫�� _�}�uV� )g�t��,�Z|.��H��79옾��<���~�¾��g�B�;�� ���q\V&ٳ��О�s�����Xx��1|!b�s�r� W�c�tj�<E��!� t��žL]2�{,┬>�� ��sP�+i��D~z�h&>:��m�e����\��(毚���#��3l��Ư�p��O1��9,�;��w_̝��ݙWq�7�u#�7���z$w��rx=�#�-8����ё�8)�,�dC(/��Co��Q~���;�_�}.�@�A[�y'wr˅��6�����˅��ߴ�<p�����! �e���[��ysc��l 9����dG!���r⅋yw�u��z�cn��ys�����ׅ'���4N��yzБw=�D��q�����=�;~��<^}.#��z�`�06��_G1��s���\ ��w缳&r��/��峹��P� {Z)�&T�ͻò��,��}�˹߀�#�ҹI�V�Ъ�hҭ/mߛ�_+���58���d�͟s���ϸ����\�}�:�::5�m�ؗG>���>����3�� m.wx��K���#��K,�6��=Dw�����47ì��Vg����p z���_Gq��is֧���<��n��~��E�}�8W�]Cö���m���ӾhKnh��=a mF�d�ϯ��?�����E��^3�~kr���>� �sG���{y����dq�Pp%�ݽ���������諏Y8�!��:F��Վ%"����x��[�°�vʰP�E��{!3���qЏI36�uL�*$�X��%db��0���kN��xbʽ�9~"�}���n��{OZ6 1��]��5�b�=���d�0��ל�S�Vp�a�.K>�� ��&�O>~5m�A�[羻�����g�8��G������۫4j�i)[�`����.}� �s�,��3[_��s�G����l�&в�u�mݻѰ6ٗ.�-��;\���b���1�ݎ����v�tb���h[:�k7eM`�}GypD����t1P�Ӫ�9���-2�C�3��K����i���/��4I�ڑ����s-X=�5�.���g�u^�3}��ہ�4����/r��03����}�9`�[��~[����c�qN�}�x{�����K����f<�i���;9�ƞ,�#L��KY?�]�/в ���n]hT�XH��"�e#y��C��/��''��ʋhOS�v�ݗ���lٕû��n]iT ���F��9��ŒGx���,�� �O|��:��� ��~ ��h۩-�iD�n��{��)���S�gw3麮p����������3i���[���q<m>ZL���|p���i��[�����-�3�3����!�L/>�t��b �?>���Zm���ü�`g��� ���~ȥo~�Y���ח���0P[;���^�sm�\;��0�e��M �Ғ�9���`]�>LN3FL�czW��|�Oa���w�@��R�����u���[i2�؋zS���`�L�?u E�Ҹh@�p�f�}2�>�_8�[�UpF��4L�x�}h����燁m9yL�� �0P�����m͹h}� ar=�j'b7�:���(4;�<}�-����s=Ð;�!lv�_�p���>s���h�x����;y���8�]�X`��IM�<��@j�e� ��þ�I�.�G��
.���N������!
8�c�mW~���'�*�+�2��0��� ��~`J~Z[���R��� ����nD)�n�`� �m|U�sO-���_�g����=Vd�-�Bt{�S���g�q��.追=�soi�|N��� nk.՟p}���a7^LJ�1�g����cS�󯦭v+��6 g�6�v2 ׶<X��iv�W1�� �oO�ʯ�f1s�\~���/���Y�B��ߩl*�̟���ϟ�8�>Z?�]�G����M����?��d���8���["!�S7mdK�Z��e���s���e��u�g����%>#�x�'--�緝�C��`�5d�����`Y��s36�#\M0o5�LǠ������S�~���Dr�K����d ���>^�=B(��+�+ح�>�}j,����>cm�f��<�5`Ŷ����뱌�-L[�J�1چA�b-ȕ_������7�v���Ѹ�^���!�u�nj��󶭜XfIӷŗsm��m@2W�H�+_��?'g�L"�^+�R�ŏС �b�����5�ȚϘ>y�����K��F��ǫ ! -��?]Z�g�\Vm X�]��.�v2cݢKDd/g�o��W8�_�y@K�����1��.�;.�f���V��:�L0����� yV���̾b"������҅3��)q�����̾r�����������T|ܴ%]Ǥ�����������t�m�ï���6�[���?w%�^�٧C^�� ̴�d�ٵyC���?���f�� d�r�EKjڒ.�gB|{6̟��=�0��s�@��Y� K?�D��ǐme�갮t���A����Dx݃��ǒ�ɠ��]�~K"0Lb��b�j������Q�Ah�T�}++}�r�=p�-�eu�ex��@Z��_<e�� IDAT���� `��9�����|�-��n�8��֖(�u����d��0f����@��?���>�%y���d� �f��Ҁ��|i����e�qrg��7GC'V{����O.c����ip��xu�kg��;k?��������Է�V��j���E���u3������0����7s�jJ9��ȰZV]N� �5�5a��I�y������"""E��h�u�A �%;��fƫO�����]�<�8��Μ��|�o�I�f��E�ަ�{<��!t��0F�{���@JTn��]��9�.� ����3�e�i�"k(|�y8�����C�I����������{
g��u���� ���b�i�3(��K�=A���>�{�d8����`�����kh}^'�ӝ���H
���e� �O��4���e$[y ���_�9]����`��Ϲ���4�uS�.����:P{���{*�d�e��y�����ɸ5�y����� z����[��.���۾� =ٿN�j���C3�l��|U8��z?�n��(s[�Z��NF��s;ĻF� ��_J�°���v���z���%\ݦ0�5:�z& ����
�i|9�z�N��{��8���@G��B$�{�c8`�R����/�ԮC��S�na��sy�L�yP�I���̥����N&8�;Gv�>�o�׿^%-F3۟�w��J�����j�G�_�����M㇌fpo���Z���Z&���v)�?�������7���V�n�/��VJ(n���αG�2�''�ǁ�>@�=���t��������.Җa�iyH7-U��(�u]�2 ��ul�
>%г�7�x��Φ?����˸��e �'3�W�u�TO4L0;�?3��X@�d Y~�}�g؅�}L�k����7���be�
��@|�B�0~|����*��^7�=a|�� R�.F4嫏(dg�Z�2�f��|e꽪�K]�-�>�*�M���-�jʮ�*�w���o�Y�l������6����S�����R(�_�.�'{k@�:{�e��*۸-���(�۵�d��k�Jvю�8�6�~x;��VF]И����E�`0;Zm|��1&��
������r �.��ڕ�3����T��r �%P�W�����`�㯫"��3T��ʭ��o��jB?�_���=�x��\���Fd֩� n%��nJ���1JΧ��}N�e �ܣ�[��(��+>߭�v���7�
��(����J�Fy�U�^�|����u��^�l���b������}�Ե+����}k���(�
�J�J�
5bT�U[�Qm��1 �M�ZE���c�ˎ�랫j�ʕUZ>++�R��Qñ�23���2O.2�
�%�H�z%�ol݁x�-�(y p�e�}�� �_(���#P/����徆��<�Y/���+REV,xf�X��2�(=�f�ɨ|��`�e��*�بAFɐk�� � �n4'��L��m����_�@fJH�����e�۵jԮZO���k�.%����q���W��ES.c�� ��R���?o�{��"q�u���u�۸ؿ�g켝p-����]Ƃ��� 7����=�#a��a��-�L��p޴c���E�\�� mč^�ۨ��|۳�*G�A.c���Ca���Y=���?�;Vsr�#���qϳ,��9�gM`����� \p£���{o�K�м����c��[,"E�p���9f}$D�Q���n%�@z��5�"{f�qB�q�[�-:�e��q�����/{ޗ�?��}�S�5����ߧg��o�� ޘ�\����ѼQ=�7oL��-8�K�)�^_Z��ɝO�7��$��, Ch����w��a�X��X8̜�oP�QGj7��ãI^�f�$.kt8���w�C��anl���3xd�'�{s��:�y��,�����]�2�+�~OXo����[��EXDdgg�hN(��Y��_�F��9�Q�9��r��s�0�s�
� ��2�ρ 9�i�rCyA^v�\����_B������Z�2���?����z�'�e����k^`ԗ�2w£ ��j�;/���}�!�q������_`�WqڛK�\��A;��aO�e]Y��8^�yz�y���ĵ�o��n9��zJ�H�AxC<;;�J^��yT""ۓ|m��6p�� �1�@y�p�&��@L��
2�(:����ʂ��ͬٚ4!v��v���a:������3�0�nd��x��modަ�Y����O�s�~�~����s��աC��c[�x��~�<s
.=��4NDm n`��^4������ �ͪ�8�{��T��z:��
%��w|�A���g�]O�EDj$��v�����Fu�$̎���-�N���r���7�xq�����SG ���Yz�@�x;m�����m'4�=�L\�Ѩ�"�X�n �Ά�-����y�҆��w�%d N}��d���!4H�'=�V�_��+€WﴈT!��.�v�iP��*���H�e_7��Wd'h�u4.1e�i�u@jK�f&�2�n�ޘ ����Kfz���ڜz�i0x6���u���,���n3ڀ��֍? � ~{s�m�u�}Xd��m�1u鷓�W�,�n�G��٭bݰ��f�>Z��]�;;X"ӧ� ����� ;.a'�e�������DD���k�7+��N���D^��w���y�b��n[��kNf�{<�\ت�熢� �`�bh�|En�U� ��pg���չ�}�`�P���&�<�9q�s�ք!�z&�]�/Vy2h}Q{f�4����g3c�����
?.�y��u@�i��a,7�c_o�׳��&������sf������]��h����0KJ�`��o47�����T�+����;8���ɩF��6�Fڕs�l�tg
����=ꖲDi�0hw!S�����׎��Ls ��� �&��!͟�۠繢]mY�2|v/:�|!�M��e� ��kt�� ���҄{c]��6�3�Щ徬�p�ª[� N��Y������|��lZ�;n���_�j�nZ��?���b���p�mS�8���-����t]�R�M��ul�
>%г�7�*˸����w;��-}~�E��z=���2���W�]U�wc{޻R�����/֭b�m��_����Viyk��t��0��q�ـ]��#����ݭ�qǭ��X����p�� Q�� {dTb�j������*-���P�e��-�O�:���S�(������%ۆ@z�������\����+Z^AN.a|2���iZ2������܋��|� ��F������Q�Q�-�2Jί��.|}��7 *�W����W�(qqK��bT�����f��C��i��>�����)��� >��?��Vr��U�����#8}5T��K��E���� �\M�ç�]Q��'�[ӷ�4J����ҨB��xf��kT�6�(���6ˠH���i̐�Z�re����ʪ�r�-"R���Mvw�U�K�gԦQ�z���%�6���E�I����+}z"��N^� �EX��.�ѕ|6
���(�f����#/��'�Ÿb� �s� ���ȷ��@�Yo?�Au[pP� xa
9Q �����OS?���x~�- paH��nE���;��'iS�9m�6� �b�W��G�Nޢ��_q�#_63�W���|�7�^>��d�\\�)���~�������2���8�NS:\�s��׿�G�>9����:73zȵ��Ӧ�Vm�1�;�
u�ۅ\�fs$D��k�f
�""���� 랾"5ڛtb܄N%G����ٟ>7�#'�g� �Ǭ_�iK���=��G���ޗ�π+^�K��>6}�(��׿�ƴ��yߕ<���X0~�A��ݗN���� ��f.{�:�5.� H��W���lޝ� ��y�g.���yaB�L|2�0&�<� ���/���g�Ҁ�9�^ιr�}>�{π{nʋ��A�>hܙA�����M���9�B$?�������ΰ�n䠦x���7̜��: 5��(K�!RU "{}��悮��Y-8�+���r���x��'���]\p_l���.&~܏��B�ΰ�Kg�ׂp�K�`j:��!?τ��
[x?�K�p�?����]��^�� �_ ��ؿ��̜ӆM���fŒ���L}�d!�x��̥w�@?�珄���yą��_I�:���Ǹ������&j
ЉQ�@�t`՛8�aq��z��Ƨ🇳�2�p�c�fZ��5�{ ���^�|ø��
�"�� �8�ky��,��7���
}f=���O±Q�#��1cX�X�&��������͜��%y^�&'��}��ҎY��ۜ�� �J��/:����^�3����e�)z��4�:M9�~{�wa��D�rS2��[��.�,�!�����A:�аjR~γm�D��ٺ�IXDd� ���WD�`�?��37/�؟������gc<����5�7��?��ƴ?��x�*>� VTq�᠏Sǂu ����z� +�-���mp��R�/@'6�L �D
��|��O��~%�۴���~�M'�6 UǾڛWG��QC���I��'B*�]��(["a
G�,"��_;7�I�����F~ݯ �p���cEv�a��g�ڕ��>���5��>�Y}����3.z��J-: �#�yq��t��s?!�
���~c|F\����A�_ij�=M�
��;P7���ȭ#Y�9�'qF� �|MZў L��|>6/��Ǟ��-�1�P���}�n��:PA�rΉF� R�#�������)�h��BD��������{��| '��+9���1��C�v^��X�O]��7<���\���5�4���|��'���Q﬎�t�14���s�v-n}�Dz�u:]���k�p���4๛���u�'�)�S�p�{�24�Pz7 t�=0�C���x��9��#y>���N�W �����KA�~�� ��i[_�{A8�0H�<�M��)t�
���W��u`�x���?�>��3[�N���o��P��h���>Ǩ�_+����en�kT�~���}��
�o[3�N�#�uaۏ/�A���{��)$!���X� ��x���*Q/6`���6�cc*d��(2? �?3����^9�+6��Fǃb�/~�)�gN��㭸v��` �U�>���u[���<n9�������=�>�ŗs����ºpU��}��,"{Y��{��/�K�Գ@�/�c|~_�_!YeOϨ�Q�, P�WR+��'�殑��l���~/�8�YJ�>2�T0�ժt�yL�N>��_�>���P`��Ex��wND������W�WDd��₏���;6,e��x�J�9��#8g6����d���ib�N���6]#��R ���1��@u!����-62ye{�9�癞��J-��;p׉b$�g�������Ћz�>��SD�C�u�!�J�aAX-�
�"";0��C��[���.�a� 3�fS�l�'dɫV���H�(��`�ccX�c��5��fzp\;�]�xs[jxN�jj�C9�K^<�M�4K]�ED�7���^��bZ)�8��ay�!�[��.�M�\�N4���Ήgx�p�+�, Ŗ7%<[��o�EDv� �oG 9�����H5�^���� #�- �MOz��9�m\��q�`�p]�u)rs
ӊ��/;�]� �'��EdW9eq]
R��߲4����HB�SP�:Fك�r��ض#��c��ql7
N8��h^��ɂ=`X��ܮ'>��a��)$��N
�>�$��r�+Q^��U"{y@�x�w����8�Q\��&�7�����L�0$c�ǧ�� �a�&�xM�i�1��Ed/������J�c+��u"!;�k���-l1.�Fl�0�h�/� +�M 0p=�X86=���D��pض1 ��V��$�p"��6f����XENl����q�8�[�*��(�uY�X��勅e���v��%��xL�ia�UXXDv�� n�=�H�ɤ��N
Ʀe�⍟�8���+��8��]Zkq��8 �S±aX`�G������T�HŜ�Va3~?a��'�,";3�B�)�����&G�Ӌ�\WU'"�r(6�2��%B��:�N��8Z��]\7v���<}5M�D06}�fb@.u{��a8?!d��MS��
�"R���EF�� %n;���K��pY_PVK���V�:�J��/ݭ�'U׶��ԋ�~F�Ž髳Kl�[�'�*{���Y�|���e���8���N��-��̢���u�9Q�?�M�����J�+Q�Q���9�(�ؠ�r�*} \���F9�X�|��� ���5�{Ukm��3j~�*�5��7l�󍿱W5�F���.��mip ���gY�{a���R�j����O�w�wu�5Q�n�hw��� �u��J���n����E}����²\�H|��X�q��������.�#`���3vOc��㚞X8��ukT>&�U� �َJ>�P"���%��Fb]�=^�8KXDDDd�}1`��<~�_,�8�MԶ���1П��@^�~�F�4���5��Ѩum��^��"ą�ex-�]R�,"""��Cq�$4~�&7~;&�H|��He�*�"Q �n%C���v����W�!;���w�������[�!��K4>�ixL �e* +�����&�;��Y�C�K؉�8���6�{�VJ V+�TZ�M�v�d �&�L���R˴�����,)߉��q]"�CDaY*�#v�� Æa`��i(+�����
���g��؉��(�x(W9�ɋb#>�tl�-��/]�� ���$�� �)���Z�=���0ȴ<x1�eY� ��ʖ��D]�|G����0���8�8ˌ�* Ǻ͒�����N ű�Q���_"��Q؉`;T���ub��`D�`[l�-�L?��.�îC� ۰I �5bA��i�������{�u��q�����ǎ�O`F��،��1+����쒡8��Kb�d�qq\�p|j�qWt�b����X v,?X>\��*�dG�d{��xM�&閇L+v*�����8�q���
Œ_C�@2'���{z0V�MX��r�E��-2/�m�%���c��p�!��Q� L ���W ޕ1 ��(��_�dz,�M��[�,�@)�8hG�J,����1$��$�3��c���F�g��� �O�,"""�G�c���pl���Y캀�l9�Ƨٮ �]���XF��˧A�v�@��#6�c����,��'�H�D]<�;9
�Ra6���h"���b!�������˛�,""""UƆ�<[M�����VB�u��V� ��y�P`X�ቅb�%E����F� �nƺJ'�p2f2G�N�؉.Ӷ*R�+$'~V�+VTi���,`�� a����Pڥ�Mԉ��6=�Z���h|��D�4�� �v, �C���/�M��7���[�D]��%�8
òg�T""""R��:x�pl�i��°����/=����l�Na(�R�{$e�HJp ѩeV�.' ;�D#xL���K��M^�Y<��x���\;�/3DXDDDD�r� �� c���a��V�0�la<����D�^��u��WZPO}�wojK��˄��%bK��t�C_Z�V��a���K�u���cG��`��ǎ�'ð��czk�R��5�jy���c�$t�u���߻3r~4JA4�i���RןVvh0 x}��x)���.Ң,""""���HN(L ӛ�s/H+��y����8�q�wl"�C��9�8l �ȉF*�3,� �"���Q�E#����������*mGñllZ��X�F�.����d0���%�K�m�m�lЌ:���F����x}�^'���x�dXBj`���ʁP��p���<7���?Q7�2� �o�L q�q�* ��'��Dz�o�ֵ¢,""""R^��1M o- �Oa�̰i�i�dZ��C�u F#D]�|�z[_S�p��Kz%�Ϡ��G��K��G������HYa؉��08� ��[Ka���H
IDAT�y��Ԋ��u���m�Z�"G���r�a2�>�U.���R��kG�V`�]��I�4L�>����|��|N1������s*׵�u"�>�M��Ѝ��׎��.��c�0Nv�@a�
���ϟ ��h�͑P�����<�SX�EDDvR�5=��*������=���
�3�w���8�K��H����Eaxdž�>?��|�&?%��ZaS�F7���Ǭ��ΩA80+��DXDD����������y�e���o���d,��`b�B �"���!�@P�BTd�]�AW��� �#����B"����H¡�t���]����3=�$��d������tWw���L�g����.�)���읆u%������:9�J���a [���;�i*mG�8�y��>û!>� ��-9%�N�F�+!l[���6�W���%�A��83����<���gc'�ŪXΗ.�=��G(�����]~��t4i;��v�գ�-ł�ޮ��xA�-���
�)���E��^js�@��G�II6�;���#�Jwɥ(*J��9��W��e;� �h�; �ʨpK����{Bx]KNu���z8ܱ>����#/ �L��kU�1N=�]��Y6��$�<��IAQa�F�+#��1lF�2z���H��D��D��6J���-��Z]W�hTu�D�!<� lʣ���@/�?�l/�%�^)�C?��aá�.��L;&3g�l���XB ј6��viD� Ce���Q��]s�,��������X����%�mw�����!�
�^AA��t�,+B w�{&Rj)����A��+���V(�1��cמ�0`� xw�.S��\ ��E w+�*f���^9�{�^hSk�����.� ��/0�aloX*M��|i�c�(21�q�,�F�Sf)�[����{{a���W�[ШtZ�ջ}�+!���j�<� �C�(V
_��Ű
c��1)E�]b�c�b?_9���aӖʣ¦�!\�ĕ�8��ަ�W�uo�唉Ǖp�^�O��<„0je� �fr��=�_��06#I��:Y�1������[Vj����)�&��%��b^~�fy�廭
���&�ij�dJ�NL�ٻ���@��6e��vy}��=���"������j}5���7,�r�/Ө3�?w ��1����댒8 �Œ%�R�hq�RXTXt�y�+��:� �R�U�eɰc2�؈=�R},�T�QK�Ֆ^L���@�|��\W�ҙ^O���ʈp~�G�7��}W���'l�G,�r��[�[� ����.�����@�ذb2cu��cd���J�-�'%�a# ` �VymUl�(���m���cq�I�e�F��4%:+��=���,5FexD��s���}��o��U��1�Pc<�oݱT��,���{��xB��y�R$�C7~e����=:7�P�Q��ϭ��k�Q&�бs+Wٜ��g�9J��ʜ�u-Y]�~�1}�������J�?�W]iݳ��x\ɣ>�_�}��1w�֗�獥 tN<�D<��߱�4����|r����}"W<�͏�ڱ�럽Og�/?{�����k���ܹU�/�Yg�}��G� `@����#3�7� �J���HBV�Qvr4A<Hb��gUl�(/��1�m�I�U����~9�wǔ�C�.��1�7w�:K�_�B��명����ŗ��3���O��K}@/\<C����6�垽ES�9OG�n��/_�.���nZ%��g8G����>����Ѥ�o��G�����,Y���f�K�����ni8P�:FO��B�>|�>8�Cz&'��[����G�X��}^uk�����V�]��oߟ��οD��=� ��{�f���t��k��{���3t�M�$�z�Wk���4���z�'g钓��*WrWߧ}���w=��W>��מ�w�|���PW\�H9x]-��-������h@߅olV�m�Y'�H�#�z
��Bߕ8�V��p���*0�d�vD�=2~�٦��X�R����r�풤L/O�ԝ�e)nYj/O�vw�Ƶ$�����G����L���t�]9����߾Qg,zI'����y�M�kڝ����h|�߈]=v�%2�=�O̘,i����\M<�~m8��$I?Z�_:j�#]�3}��O�;_8YM�N�)]�Z���Q}1��� 5�����ݠ�}u_����α�t��g�m���^�� 2�xPߞu�$i��q�r���k/�9� ]X^���F�w�֟w�$��Oޮ�r�w��f]<U/��*��ߖy�]>�9����g�{�Y�OX����Z���i�j}�^������W~ev{��INg @K�,��2�U蹥������.�Vi�I�.W2�ƶ6zq��\{�
ŢFe�v�zm…>�'e�Rw�{�N��X��P��7uߓ���:v��r=IՓ��Rpő����g\g)�K�:L�ƕ~� �dz�2�p������{u��™����R�t���=�S/ݧj��Z�#��j=r���,������^�|S:Fv���UIRN���V�41v���u:|\��^!��� x���Qo=B��!Aܟ1x���c�ǰmZ�#�P��*��>�zE�ݼY{솃cm/��0T�����pK8��7Ѵ���̏}@�ӚdH�Z���f�K��U��t�����'���ݼZϼ�x�PJ��M�T7�K��'�ݩ�тdK��[.p��~e��l:IZ����m;��ۗ���'��z�z�uG�������Xi��l���c�g�h�;k�N�}���n�W�f޾BM�e`�nx�S:�� � .�C� ;�$+���x��H���O1xyy��*�m�Wh��U�MKu�F�2����ژ��-���� C�HD���Rv�1b�t�䮳��I3����ٛ��+�}C���"_�������g��Ͽ_o��Z��>?U'\�L��{��z��wKVK����߫w>C�o�j����{��K/֣�sRn��|� ���ф��S�߯�m���Z���:���;|��F��j�Wr��O��.^[~�c/V��K��Jw��<?�u�5���tw��J�VlU�� m
*�ۑe;��J�mk�L���r��ڦ�����%G�x����2 %m[1�R��������<��a��U�����?N�A���~�NO_:}��M�����q:d���rs����%m{`-Z�y�����4����[��k�����$w�d(�1�<z��z�'[tܔђ�Y�Iz����� ��,�WSG_]^�k�܃�Hzu�ՈI��Rz�%zp�3�1���6��\���4�t�tq�3M5@���0 {��]͋j����G���ײL��#�ź��_�ݻ
{����1v~a���d�j��Fo�w�|���1z�ņ5n��|����� �����K}���w슆�t7a�V�ߗp��k��/0��c��_ĵ���=���/�Ʈ/k�W|c���1��Z]W��d��y�ns�eY}�]�O��������g�]��HR�9'WҨ���+�rrU:���1}W�\Q�tZ1��岫�h�[�u��K#���~����ֆ����r9v�[s�ʷIT�����|�Z]5c��_{�����&M��r�j{�h�d��`C���|;��6�+�����6���6�Ȑ�g�2%ڐ���(Ѿ﫥���l_Gp��p1��=��Y����=X.�N+�K_��t��giE�Wt�g��y tƾ/괳��W��rz"'���tENb�۬}L�xLJu���Kh��#�j=b�2�;#9��H���p�����1, ���JDm�ek��_\ a˲:�FWbx��x���r���e��K1-|r�>tPjf�f޾@_9�x�3�`����F�dD�� ���p�dJ�.���J3:�w1ܮ@�2LsHǰmY���:�}�W}*�o�+�p¶���ڼ�y���i:e���}���:�����W
`���Lg�4��`�ŰdɊw�{8(�)�]b��b8�1\�ං�\��Y���
ŢF74��ˡa(a�r�ӣ�>� ��L�4�k'�j
b�IKJW�7ܮ���#2��öe)S�Μk�-�}�׺͛Ԙ����
�IW�G�a(���>LG� `��x���cC���z�ab��c�خ��^���G�9����6��צ������
{���}F� `�a�2�Fr�1�
<�42lFdX�,��뛉'�D"ڐ�ҋnVc�~�"�–eɩ.l�TJ ��!|�$��8��Fڗ1,��� ��e˴��jtر#Sנ �����-��4�>�Q42�S�+�� �.�W��T�G�&�C��Ȍ�a;D1�W�32�g1�@
<żd�2�T����6����"�9�4\��HD1ۖ�&�����B {y�I�q��+�+�0 ��҆i Xۖ�=z�[rY�I�c�뵭z�t%���A��M&�@ c�����WUq�;\���j���~�\���Tbp�Š�*�p*������`��|�u8�/�!�A�]aP ��1��b� Y2,�|���O۲T�J��થ���nϷK��J�S���!Ӱd��, ��0`�_am�0<b�rR�@+ǰ׮���&�w1ʓO~1/���pi���gAl[�����so"ؐ�L��ٛ���e)Z�$?T  bЃ7��;�1�:b8(��a�%�K��s�ߋ� b۲�.�+��ni-=�RWǰ$����eI���0�_!&� `@�W��A�Lr`�İ�+ �#��v6�0
�nm��vC9����Jǫ���ї�>�0���e�3�†,�VTa4��/(� ����!�4efib��u�� )�m$x�EpwA\�u�(�P^�Ka� �9I�p|��tg��f�4*\�a�$=`AAyb�0�R��vͣ��Di$���iG��X���qe�8�#�0 �W;�;@�c8����b~A�˧]2�rGJ�[�#�2Me[r���P�djd�M�ڟX*�W]�����8V��0`P�o�N��d[@/c8(�9�� ��Rw���ŖTާ�:���}�-ٚ���E��+�a�TG�y�8.}_�.�,�F����h�7�k%�� �!�-'))I �($_��v��P�cG�I��m�������>�Dp~F�qlUE�v0:_�Ձ���;���^�"��+��<��QJ���L��mln�i��~����xG���ب}�[��&M"�`�2���i�-��b8���A��Jy6�`}�4 �Q�ц�͒<I�ESf)�M��f�(+\mܰ^{�jb#� 0 �W���� @�N�QM*��*y��{��,�j���lV�_�����K�=I��0,E�L���6����h��Qc��� _����æ%3S$E^�h�<ܐ�t���a���c�������Zee�Vi��0eZ� u=�2`� #3��R AQa�]��qKo�*�a�m?�ݴI��z��$���~VF�KS�M�)CFG0���ݔ-�NȈ�0�b�2-Ɏ) |��+�U���Dp]F�[��k���ͥ�f�7T��)��;?��M W�H&��/ ��� I bxDp�.Gpm�*T���w3#�2�Z�!�<�,���$� ` |�0�?�v���a��a�|2��?���Kf%� C*r�z�4w��C0���a ��~��lK��Ş����7+���v���a�c�+z�\�a��s�4�^W}�ު���>`� �-1,b�#8�J)��*�P�)�[�[O����C�k �p�σ������˪ù����2vy��@ �����jkk�)��[Z���Ԉ�n�A��e��;�ʚ55-?i�$4|#v�m �I�b1I�9��-�4"#x�!�`w���ddXIɴ���Ügx�"XLJ�T*Ӝ3l @��px
�ybx#8�L�:��W��]�`��B�(Ӝ�ÖiI���^Q��qz���5Fp��]^����&6" # z� ;)Ls ��+ ����~QA �%��2$����t����e�:�eZ$ �0ze92L��t1lȒiEJq�1U�U0Uzg�ӡk��ܦM���! `�!32L[��g��
�m�J�S�w���L�RK6۫�'ӊ&x�@�P��hZ��p@+���a9�.��>��]8��"��6o�XsW�K�ِ0 �_�vB��HLo�� �_�BEWa0]Z�#D7챇���kڗ:�}�[J�I"����M`�Jӛc{Ɉ�Y�%~#0�MӖ�$���gd; Yvt�Gp��^�Y��.�--ʮ[����?&�Z�����Y�/^�X��Z�lv��
oI��Iˈ�����.Alَl')'�0���� �����Բi�n�`)|�R]q���,��P�/ ;
�؞2� ��zص NʲGƬ)Ӳ�ilT<��u糹ޯ@�t����/�>HK7t�����DR�DRG_� ����Ʈ���u% % �_��t�ڇt�5u�tտ�?r�����_���Z,WҪ{�������|�s�|Ϳ����
o�k�Q"�P�k������c����zl�|%�뎫����^��[tN���P[��(��> �l'Q�aĦeɉ��e�-�^Gp�[�e������|)B����v�ƽ�LM��q�������]�n�֏����u짷葕k�≟i����Ϲr�-Z0oK��U�;�]�9�8Ag�r�~����ŗ�=g��g��L�=Y:��s4w�r��- ��U�h� +���_Ќ)�뙜�eu���:q� ���K4e�����?�����.Ѣ����g�0�BW��D���W0pAl�2�R9�+�
}��yq�Dp<U
�|kKͷw[r*�ەll�iז_�j��W�Q��cu�3����v^��Oߑ����j���� oyZ?���zt��u���G[ֽ �ARL�>Co�<H���6��ժ��I���J��=�ި�޿Fg��I�d-���:�6���GuI(=�� 5�^����5��������c%�0�yí:$!i�_���sg�k��}���o���������k:���ݍ��ut��`pq9�#��:E�)Y��Ls菻�S)%2u��m�yjݴQn���EWJO׊��Կy����#����O��'t.�8� �y�9�����ܧ4c�% ]��%g��P]/i��WT�
ojѓ���wάs�&tYz�����Dz��� �+_�ު��F��Ѻΐ�>��K��i]������#�6r;��e��l� � 6dʌv&G�Q�p�zɉ��F�۴I�_ۺ�'�%+I�fj;U����t�����d�LI�������]��+�fn�6��Fu�Ӆ��i�K�u���qGꡣJ!]�۲N:t��M�pCz;_}����^��YZ����u%[Z��3�� +����N�m��u��������P�|зqkF%+^ɵ�2�{�����጑%#� �N�—�`XGq�(q,�h,�h,#;��eE��H�iYJ76ʎ����nKV-o�-߭��OM��ww��c�*��3Z�� ��ҟ|ZOk����^�{����=��i�?h��l�
O
t�~�RNj[��G^.��Wݲ���{��o��6)��bM=�^i��s��Bݿd��8Z��"M=b�Vn��z�C�؋��]�C�SǍ��#�v�[G�$��>��eJ#��^�4�%u�K,�F�%)|�~Qa��bӲ����ۖ��Z�A��S� r�i9����*��'�y�t��,=��Z���5cRCy�Yz`�%ی�N>�q;�H�I�W�������x9�MZ�9i��cJ��))�z���~�ݞ���.�t�����&9�C��?ݤq�L՜�s����$�����5M7͔>�L�F �s. ð/���~X�]_u��;l��=j ������'[Gq�
�@���Q�U={؞k����m�a�v��ci�K��l[��zYN�f�������iH˱��˕B=]���������_������M?�t�U?H���
����(��*�+(��^������m^�FW����5k�Դ&M�ԣ��l�2�] �`ȷ.#Ŧk ���IDATdG� ���v�q�o�O����jٴI���|���o�,;���h��8鴚v�K��m�V�~�^��f󔮻k�ƭ���}��p��U��(]���_��.�t���W�����W#�0��p�a� #��e�S��]��\UluY�nG���u�dZ��D�B�����V?���e�3?Z9�TMU�u�*-~�M8�C=�m_��F\KR���(6:/�mW�s���5�+l�Q��A��� �C��!7�.S�%YUөKa( B�
:�3�N���)ձtZ��������|�U�� � Ewy40lȆY>T�%��6�%u�pP>p)�����W�m+�بB[�ܖ\��%�<�[䵵�0�oK�eU>n�R�H�Pa4T4W�qԞ͖�Ezw��B6+��M!L�`��nX�]U,����*7�-��)�
U�[7 ����0(]V>pWu�vd��I0�Ϙ��x&#CR>�U���r��Oreu�!��"��! Uln�a��d2�$�
��P.�B�X�0 �X&�h2�Bk���l�ncT�]�b�P��A6�bk��dR���no_ �ʾ�]LvY�b�~U_?�Ú� @?+��)�͖��u��zx�ˤ�S*U��-;���Jɴ�o�sG9Y�ѳ��۲`.�W��Unv�.�Q^ܰ,Y���TJV,�F&�`p�p������.p��,K�TJf,F �0x�ڔ߲�<-z����P�mERIE�`�j0�ߗ�r�lQ�w_W�m�2m[f̑��d��0``C���"w˖��Uw!)�i۲b1��Ԉ�ay�!����~�J ��2lK�0 b�H{��
�b�p�r����)���X�4}z�G1 C(��|^Ŗn�O�k8�?F,vD�m�(��P
c�h ��嵶�[W.���K[��l[�DdD�@6"��eF<W ��i�o{�GoY�_]0e�!��r�ZZ���p�4�5� ;��B��7N�U�����-g�$�A�u���������0V���Ĵ,E��e�R
=O^y_��(,z;�w_3y����o�W�� ��7E��]��[z��_�tÐy���_Wj��.�0t���j����xS��7~A���S���j��t���W~������%�.H�{H��Ĭ/����B_��}Z_H~c�}:���p���g�\I����_�c-���:�9'�~�c�ׯ���*_~�������g���6v.��N�������%�`�͟�i�+�������:W�\-��J�������O��I�׉O�]�b�k�7N���.)������_��V���~w�[:����bLn{N7~�b�x�+����U��Cw���_i�5��/_�o��Qm���;5��/�;��n� W����eI����wt�j����7O��ϟ�� �����g�g4� ��h�Q~�F�2�!]>�r��ĭs�0�(���-����j��1���m��kU^gM|]��u슼Λ�H/�R椥�gx�FKZ�QC��zY�NN� ���M��h��ӷ"c��������%�=�w9���Y:������G����_��?iŪ�i奓u�{�v�A2Bi�S7j߳���NпO>N�/~^�����t�;�ә?��O��)�\�-7~H��� �u��cu�1��-y�M�^�Q�:A_~�y��w��-���>^Ӗc`jr��_��%�t�ϯ/�5]��_7um�x�tՕ�Y���Z��Ʈ��:w]V�XS�~��(%��^\�W���d����|^r2�7HJ�f*���{9EY��u��?�k��}W+���f]x`��nf�ɺz�$�h�!��R�&8�I]�#��}��Ad���������E����jŖ_i��J���_�I&H럫Z�јS�{[9{����d��$�d�R2^���z��U%myM�ߊ�����u4�Hi᛹�K��K��Q���'���k�/i���hַV�l[��A�7�>�W^}E+W��ʕ���������^j�~���xEr�[�[M|ϑZ��s�J�N<�j��P��������uй2��ߴ��y�t=��eZ�lR���}s�Ռ����Ǟ�/+�7GK�,H������,]w��~L�s�ɟI��~�m���_���i�7�^l��Pm�L�v��U}�.̼G���Mc���+�}s�˚���*��)����ԟom��'�&Rt�d,}��li�E�t�Sc4i���$ӿ���x���J�;V��)l٠���c+3�=��:��w�n�/k��K�x�n�����{��80���`�p��f]9����E��>��������q�o׫��c��ձ���ʕ�L�g�l=OnkVy�T:Zzభ]R�n��5��W�9jTy�b�ۖ� �A�=g9�4�8Z�E�xԑ:�;��Y�^Љ�RW?�r��9�LM�+2l[��Fuٕy�S:w�cu��֚3�%��=A[+F�`˾�L|�)�������:�ݣw��l^������Љ��� ��JF� � � � � � � � �000000000������������������@@@@@@@@@`````````         � � � � � � � � �00000000�f````````         � � � � � � � � �000000000������������������@@@@@@@@@`````````        � � � � � � � � �000000000��������F���C���m�IEND�B`�
gimp xcf file��B�B�gimp-image-grid(style solid)
(fgcolor (color-rgba 0.000000 0.000000 0.000000 1.000000))
(bgcolor (color-rgba 1.000000 1.000000 1.000000 1.000000))
(xspacing 10.000000)
(yspacing 10.000000)
(spacing-unit inches)
(xoffset 0.000000)
(yoffset 0.000000)
(offset-unit inches)
���)Screen Shot 2016-11-22 at 6.04.10 PM.png� 
   \�������������l ������ �#e% ')!+�-�/k2�9�A�IKP�P�T�Y]yd�j�n9q�tz�����d���������Ͷ�G���Q1]
!�)�1V8\;�AcD�EFAH�MsT�cp�y�z�{�|�}�~�~�&6FV�����!�1�A�Q�a�q�������������������!�1�A�Q�a�q�������������������!�1�A�Q�a�q������������ ��� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ������ �)� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#���� ��� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$������ ������ �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� ����������?�$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$����� � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ������������ ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������ ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ��������� ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ �����/� ��/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ������ s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s���� ����?� @���?� @�����/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/���?� @����-����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3���?� @����(������������������������������������������������������������������������������������������������������������������������������������������������������� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5����?�$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$������������������������������������������������������������������������������������������������������������������������������������������������������������� ����?� @��� ��� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� �������D�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:���?� @����)�������������������������������������������������������������������������������������������������������������������������������������������������������
���
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4���$� [������� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� �����6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ��������9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��� ����������������������������������������������������������������������������������������������������������������������������������������������������������������=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=��� �����"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"����)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � ���)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � ���)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$���� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� ��������$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$�� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ������� ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ��� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�������/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��/��,�������*������(������&������$������"����
�����;������9������8������6��������4�������2������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������� �������� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �0�� �(�
� �!�� ��� ��� ��� ��#� � �'� ��*� ��-� ��0� �3�����4�����6�����9�����;������
y���������0���������+��������&������ ��"���������������������������������������� ��������� ��� ��������
�������������������������������������������� ������� ��������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������� ���������������� ����������� ���������� ��������� � ����������
� ��� ������
� ���
�������
� ���������
� �������� �
� ���������� �
� ����������
� ��������
� �����
� �����
� �����
� �����
� �����
� �����
� ���� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5��� �3� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ����$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$����������� ��
�������� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ������������������������������������������������������������������������������������������������������������������������������������� I�
��������� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��
��4��������������������%����������������������������������������������������������������������� ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
�������4�
����������������%�
�������������
�������������
��
��������� �
�����������
������������ ���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ����������������������������� ����������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��������9���������4�����������/������������*��������������$���������������������������������������������������������������������������������������
��������������������������������������������������������������������������������������������������������������������� ���������9��������4� �������/� ��������*� ��������%� � ��������� ���������� ����������� ���������� �� ��������
� ���������� ����������
���� ���� ���� ���� �������������������������������������������������������������������������������������������������������������������������������������������������������������������
���������������������������������������������������� ��������������������������������������������������������������
���������������������������
����������������� ����������� ����������� ����������� ����������� ���
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�
�4�����4��������������3������������������+����������������������������������������������� ���������������������=�������6� ���������,�����������#���� ��#���� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ������ �������������� ��������������� ����������������� ���������������� �������� ���6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6��6������'��  ���������������� ��/�� � ������� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ����� ��� ���� � ����������������9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9��9������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����+���������������
������������������Y����� ���������������������5������Q6������������Q����������𠩷����y������������6����������������������5������������6��������������ԩQ���Y�����������6���������������Ծ���5����������6��Q�������������������������������Q��������������������������������Q���5����������������������=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=�-������&��]5������ �������l�5����]������ ��P���y��P��؈����Pl������l���������Pl�P���������6�lO������P����5����5�P��������6�����\��������5�����]����������6�����6������������5�P���������6����y���������������P�������������6�����������6���P��P���������6��������������y�5���P�������$������������O��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"�������������Y�
���Q�Y����j����������Q� ���Q���5������QQ�����X���Q����������������������������Q��������P����Y������jj��������Q�5��������P����Y���������������Xy�Q���������P����P������Qj�5��������Y����������������������Q�������������Y��6��5�����6���Q�������Q���������QY��5Q�����5�y����������������������"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � ���6������� � ���������� � ���j���yQ����y���Qy�����y���YQ��� � �����5QԊ��������Q6�6��ڙ���� � �����������Y��͒�����Q�����5���� � ��������Q�������Q�����Y����� � �����������y���ԩ�6����Q�����Q����� � ���������ھ��������Q���������� � ������������6�����Q������5��� � ������������������� � � ������ � � ����� � � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � ������������ � ����������� � ������Px�������������x�O��x�� � �������P5��ƿ��������l�P���� � ����������6�����P�������������� � ������������]����5������� � ������5���������6�������������5�� � ������������ɐ��PO����������� � �����������6��]5���������� � �����������������5������� � ����� � � ����� � � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � ����6���� � ��������� � �۷��Y����������������j������ � �۩Y������jԠ�ͯ��6������yy��� � �ܩ6��Y����������������Q��y����� � ���Q��j��������Y�Q�������� � �ܩQ��P�����������������Q�������� � �ܩQ���6��PY�����5�����Q����Py��y�� � ���Y���Y6�����������Q��������� � �������������������
� � ��� � � ��� � � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �� � ���� � ���� � ���� � ���� � ���� � ���� � ����������������3�� � ���������������3�� � ���������������{���Mu�����Mu�� ���t����������������M4�fu����M�� ������U{���������������آ������� ������������������˛�� � ���M����������������3���훓�3����� ��������tU�������������훓������ ����4����������������������� ��������������� ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � �#�� � �#�� � �#�� � �#�� � �#�� � �"������ � ���_������^� ������ � ����������6� ��7��� � ����n{z�����6��츢�Q����������� �����������6���^������������� �����������6�����R�����7��R������ �����^����6����6��_��7��^ � ������ٸ����6���6��7������7��7������ �����������6���6�����RQ�7�����R�� ���R�����Q���Q���Q���_6��7���^6�� ���������� �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �$�� � �$�� � �$�� � �$�� � �$�� � �"������ � ����}����g�V�� ��u��� � �������M�M�� ������ � ���M����M�M���썱3����3����� �����M��M�M����V�ӌƩƾ��ũ�� ���V����M�M����V������||������|�� ���3���M�M����M����V��� � ������Ӆ�M�M����M����������������� ��u���ͣM�M����M���3|������3|���� ��������3��V�V����V�����|������|�� �������������� �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$���� �������� �������� �������� �������� �������� �������� �������������������� ����������������������M���N������N~�����w����W��ޏ�����i���XQ�4�V��V�΍ƫ��g�4�����֖����hW�wh���ʭ��×�����V���V������}}������������4����P���5�������������M���M����V�O�����������W��~�W���5��W�����������M���M�������Ϋ�����������N����5���5����������������M���M���4}�������������ݥ��P�w��5�4�������������V���V�����}��4���������������5����������5�X������������������������������������� ������������ ����������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� ��������$��$��$��$��$��$������� �������� ������������ ������� ��������n��n���zR����7z�����y�P�������ؾ���yP���y���y��������R܊���������n�Q��������Pۊ��P�^6����������������]����������������Q��7��������������������������R���������6�����Q���7�����ۨ��������^�������������^�������������Qn��z��7����������������6���Q����������ܾ��n���������Q�����7����������������6�������������{n����������yӊϡ������6������� ��������������6�������������������������������"������"��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$�� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� ���U� ������2��� ���� ���L� ��������� �����҄�̈́���Mt���e3U��î�e{���s��TL����Ls�魐�T���r��������M3���U��à��{�eϴϴ��2����L2�����rr�yd|����������M���L��ϙt�����������Lɟ���՟2��T闗�TdU�����������L��������������Lɟ�Ș���L闗��2�������M�������L��Ù������������LɘL���阘��L闗������������t3��U��Π��Lt�������Lɺ��阘��L�r��������������3Ue�������TL�2�L����阘��T����������������������������������������� ���� � ��� ���� � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� ������� ������� ������� ������� ������� ������� ������� �������������������������������������������Q������������y6������������6�������������������
������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ��������������������������������������������������������������������y��������������m�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ������� � ���՗���� � ���������� � ������� � ���ܭ���� � ��������� � ���d��� � ����� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ������� ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ���/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s � �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�����n��8�� �����"������\~�������� ����"������T������n�����������~���~����\�������]���]�����\~�����8��������8������������T�\����������������n�T�T����������T���ޥ]��Ӗ�]����\���T���������������\����T������T��T����T����T�����T���T���T����������T����T��������~8�T����~���ڭ~�����T���T�����~8���������T����T��������8�T�������������T���T�����8���n�����\����T�����\������ߎ8�����T���\��\���T�����
������� ���������;��:��8��6��4�
�2� �/��-��*��'��#�����$��*� �3�����������������"��������������������"�������������������P5���ߦ�������\��������x���x������������������ʿ����ުƿʪ����Ƙ������������������������������6�����6��������ժ������������������������]x����������������������]x������������������������������������������������������5����������������5��l�����ށ���y5�������ѐ5��l����O�������������������6�����6���65����������lPO�������������������� �����������������:�������8������7������5������3������1�����
�/����� �,������)�������&�������"�����������������������
�����������������������(����������������������������������������������������������I�1� �����#��P��������ֻ� ����#��I�������Ό⨛vQ�o��v����v���v���v����o�⡡�⡡�I����������1�Q�vaϓ֓1����a“�a¨��I�PI�vaϓܓ��ⓓ�I������I�1��Pa����I�������v����a�����Pa��ܓ��ⓓ�I���������I�I���1���I������������I�I�����1�ⓓ�ⓓ�I���������I�I����֨��I������⓼���a�I������֨“���~��I���������I�I�����������~��~����I�������“ֻ��I���������I�Q���a��1���������~��I���ܵ�a�����P���
������
������������:�������8���������6���������4���������2���������0����� ����.����� ����+���������(����������%����������!������������������������������������������ ������������������������!�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$����� ���� ���������������������������������
����������� �����������
������ ��������� ������������T8����������}�[���}����º��|S���|��������~n�����~�������}m��m�[�}����7�����7S؍��S�l7����������������8��8���8���������������S���������������7����������T���\��8���8�����8��������S��������7�����7�������������8�����8��������������S�����������7�����7�����~�����������S��}�����������S����������7�������������������}S[��������[[�Ѭ������7�����7�� ����������������S������������������������#�����������#���,������,��/� �����.� �����/�
��/������/����/����/����/����/������/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5�0�������.�������,�����
��*����� ��)������'��������\��������� �������� �������5�������
���������� �������5������l���������յ�l����P4��L3����Ls��X�����5���������P���������������ܚ�������L3�����sh����5�6���˘\���ؠ������6���l����������4ɠ���ڠ��L���5�6����6����Ѡ������6�������������4ɠ�ə���3���5�6����y����ؠ������6���������������4ə3���Ꙓ��3���5�6���ʼ���������6�����Nh���u����4����Ꙓ��3�s����O���������������Σ���N{3�3�4������L�������������������������������������������������������������� �������������������������� ���������� �������� ���������������������������������������
�������� ����������������������������������������������������������������������������������������������������������������������������������������������������� �����
����������� �������������������������������������������������˛�� ����� ��ڳ�����
�������˓�� ���� ���׭�ˡ��
������˛QI���ě���v���w�RJ݅�1���[��j�p�˜���p�Hv�v���˛����ě����0���0����R������VVŃ+��š��|�H����)����˛����0����I���J����J���Jڠ��}A˭A���Hw�ʕ�H|��A��A����˛�����������I���J����J���F�j�H˭A���V��A���A��A����ś���������I�������J����V��˛A˭A���A��ʹ��A���A��A����˓�����v1��1v�Io�����R0Ѻ����A˭���w+��AH�A���A��A����˛�1�����1I��1��1�L�Hź�j��+���H*��A���H��p����������������A���������������� ������������������������������������������������������� ����������� �������������
���������������������������������������������������������������
���������� ��������� ������������������������������������������������������������������������&�����������������������������������������������������������������/�����������+���SS��������[������|��#���|�l���������������#������|���7��7���S���[��ѕ�#���S������7������S��S��'����������7������S��|���ج�#���������7������7�������$������7������[����7��%��������������������������������������鑊������ ��������������� ������s��紭탪X��Չ�������������瘑�X�������������L�����瘑�M���M���4��옳�����4�����瘑�4���M����� ����t���ȟ�瘑�4���M�����쭽���������瘑�4���M���{���������3��阑�4���M��3��3z������ ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
� �����
� �����
� �����
� �����
� �����
� ������V�)���|�
� ������Aʨ�����
� ����ˊ�ˊA�|��V��ʛ���i��� ��������A�)���|�|��V����� ����*��˃��A�A������������j��� ��������A�A����������� � ������˖��A�A�����������˃��� ����j+Ŵ��A�A���������p˖��� �����AjˊH�A��������ʭ���� �������������� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� �����
� ������������������������������������������������������������ ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� � �� ��� �������������� �������������������� �����������S�������� �����������7��������� �����������7����� �����������7�������� ���������7��S�������� �����������S��������� ���������S���7����� ���������� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ������� �� ����y����f�2���� ���K���q��Kx��́����� ��������Kf�K���������� ����2���2�K���������� ����2�����W������� �������2�K���ف��� ����������K���������� ���2���K��K���������� ����q�2���K���������� ������� �� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� �� ������ ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ��� ���� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I�� ��� I���A�H����V����� I���A�Ʈ+������AA���� I��}��������������� I��A����H������VV���� I��A����Hq���̺���� I��A}���A������AV�*��� I��}������������A������ I���+�̮A�������A���� I���+�d�������������� I������ ��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I��� I ������ I���� I���� I���� I���� I���� I���� I���� I���� I��� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�� L�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������4�������������������������������������������������k���zQ����y���Px����x���WO��������������5QԊ��������P6�4��זݺ��������������������X��ː�����P�����4�����������������Q��������P�����W����������������������y���ҧ�6�����P�����P��������������������ڽ��������P���������������������������6�����P������4���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������������������$���������������*������������0�����������2�������2���7�:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��:��
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
���
� ������������
� �����������
����x���Kq���������y��q�K��r� �
��������K2�����������f�K��� �
�����������2��ꗱK�������������
������������W����2�������
�������2������꫻2���׼��������3��
���������z������KK��������� �
�����������2y��W2��������� �
�����������������2��������� �
�������
���޵���
���
���
���
���
���
���
���
���
���������
����������������������
����������������������� �
������������������
�%�������������������(���������������'� ��������(�����������'������'��(�?��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(��(����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������,������������������ŭ���ҁ���������ۘ�kIΝ����l��χ�о�ћ�Ymѡ��������ۋI����~�W���y����,ю��m�gg�������ٯNj+��Ix�Θ����l����ll�Cчg�ѧ͈�����������A��W��������J�Cч��ѳ͈����������͋A��B��λ����φ���г��Cч��ѳ͈���������ۋA��x+��BI�sϚ�,lо��Cю��Cg҈g���������I���I+�ΰ��Ͻ�lгCю��ҡ�����������������������ч�����������������с��������������ѳ�������������������������������������������������������������������������������������������������������������������������������������������� ������½��������������������� �
��������������������������� �
� ���������������������� �
� ����������������� �
� �
�����¿������� �
� �
������¾��� �
� �
� ������ �
� �
� �� �
� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� ��� �
� �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������t�s�������������������޾{����������������P{����������������������_��������������������ޤH����������������������N�������������������������������������m���_�����������������P�0��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
���������������������������������� �������������������������������������������������������������������������!��������������&���������������,�����������4���������:���������� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� �������� �����3�����
����Xs�����
�������������
����h�������
�����33���
��������t��
������������
�����X������
������t���
��������� ���� ���� ���� ���� ���� ���� ������������������������� ������������������������ ������������ ����������� ������� ����������� �������� �������������������������
����������������������������������#��������������(������ �������-�������� ����4�����������:�������=����=����=����=����=����=����=����=����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������� ����������������������������������ڄ�������������������`�Q������������������������������}�u�����������������ԙ������������������P�����������������ڭ����������������������������� ������������������ ����������� ����������� ����������� ����������� ����������� ����������� ������������������ ������������������� �������������������� �����¾��
�������������� ����������
��������������� ������������������������ �������������������� ���������������������� ���������������������� ������������������������
����������������������
������������������
� ����������������
� ������������
� �
����������
� �
���
� �
���
� �
���
� �
���
� �
���
� �
���
� �
���
� �
��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������،���������ܩO�ڀ�Gk���ץp��L���L��n�ί,,�m�҈���Y�u���D����l^����]O�My�j\�������w����϶�����{�������ҏ���֩�ێG�M�ؔ����׿��˸����϶�Ԉg�Ӯ����mm������,��������s�O�G��،�����~F�����϶��C��Ӵ��K����ug����ܖ�۩/�G��،�������׸i.����϶��u|�Ӵ���Ҵ����Ҵ�D���lܖ��G�G��ؔj���޳�י.���Z϶�Ԣ���,m����������������z�M��ئ����L�֒D϶��ӈ,���m��������������������������������������Ӯ��������ug����������������u���
��K����������������ӵ�n�� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �������������������������������� ������%������"��������������������������#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#��#������
����������
������������h�n���ؓ���t���tﯚ|M�Y����tM���|�q���t���������������׺��������Y����M�M҄����4��N����4������N�����5���פ�����������5���4���������������4���N������5�����Yt������4�����4������������4��Nh��u�����5�������������4�4�����4����������Yi����4��N��������5���؋4��i����M�4��u4��M���������������Ƶ�t������������iMM�M���i�|���������NM�����������������������������������������������#������� ������#��������
�������#��#��#��#��#��#��#��#��#��#�� ���#��#��#��#��#��#�������������������������������������������� ������������������������������� �������%�������"����������������"�������������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� ��������������� ������������� ��I��o���~�NJ�����p�䣣�棣爫2��xyy���Kr�笞yQK��艥�����aȮ���������wbДޕ��敕�S��c�y����K2�S����������������������Rb��ޕ��敕�S������2�����Ԟ2���������������������1�䕕�敕�K������S���ƞK����y���������������������שĕ��怕�K������K��K����K���K����������������������ĕؿ��K����������K������/ۄQI����1�����b����S����2�����S��������������������������������������������������2�K�� ���r����������ँ���
�������������� �������� �������� �������� �������� �������� �������� �������� �������� �������� � ���������������������������������������������������������������������������������������������������������������
�������������������
�����������������
�������%��
������"��
� ����������
� ���������
� ���������� ����������� �� ������������� ���������������
����������
������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ���������������  ����������������������� ������������������� ������������������� ������������������ �����������������
������������ ������������ �������������
������������
�����������������������������������$�������������)�������������.������������ ����������� �� �#��������� �*������������
�0������
�3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �3� �1�� �3� �3� �3� ���������#� � ����������������� ����������������� �����������������
� ���������������� �� ������������ �� ��������� �� ���������� �� �����������
�� ���������
������������ ��������������
����$�����������)�����������.���������� ������������ ��� �� ���������� ��������������
��������
���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� ���� �3� �3� �3� � ��%� ���������������� ���������������� �����������������
� ���������������� ���������������� ������������ ������������ ��������������
�����������
����������
������������������$�����������)����������.������������9��9��9�������9��������6��������2��������.���������+����������'����������$�����������!�������������������������������������������������������������������������������������������������������������������� ��������������� ��������� �������������� ��������������� ��������������� ���������������� ���������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������������� �������� �������� ������ �������� ������ �������� ������ �������� ������ �������� ������ �������� ������ �������� ������ �������� ������ �������� ���������� �������� ��������������������� ������������������ �������������������� ��������������������� ������������������������ ���������������������� ������������������������� ����������� ����������� ���������;��������6��������2� ������.�������+�������'�������$�������!�������������!�������$������&������(�������+������-������/����� �1������ �4������6������8������:������<������=������@������;��������7�������4�����������1�����������/�������������,������������*��������������'�������� �����%��������������������������
������������������������� ������������������������������������ ����������
���� ��������� ��������������������������������������������������������������� ���������� �������������
��������� ����������������������������������������������������������������������������������������������������������������������������:��:��:��:��:��:��:��:��:�������6���������2��������/������������,�������������*����������������'���������������%������������������"����������� ����� ������=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=����=������;��������9����������7����������5����������3�����������1�����������/������������-������������+������������)�������������'�������������%���������������"��������������� ������������������������������������������������������������������������ �������������� �������������� �������������� ��������� ������� ���������������� ������������������ �������������������� ���������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������=������;������9������7������5������3�
�����1� �����/������-������+������)������'������%������#������!��������������!�������$������&�������)�������,������.������� �2�������5��������9��������=�������"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"��"�����"������"������"�������"�������"�������"�
������"� ����� �"������
�"�������"�������"�������"�������"��������!������� ������������������������������� ������>�������,������.������� �2�������5��������9��������:�����:��;��;��;��;��;��;��;��;��;��;���)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� ���������:��������4����������+�� �������������� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� ���������:��������4�
��������+������������)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� ���������:��������4�
��������+������������)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$���� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� �������� ��������$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$��$�� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ������� ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ������� ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ������ ���/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������%�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$�����$������ �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �5� �3������2�� �0����� �.����� �-����� �+����� �)���� � �(����
� �&���� � �$����� �"����� �!�� ������ ������ ������ ������ ������ ������ ������ �����!� �����#� � ����%� �
����(� �����*� �����,� �����/� ������1��6��8��|����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��� �����
���
����� �������������������������������������������������������������� ������� ������� �����!�������#�������%�������'�������*�����,� �����.�
�����1������4������7������:����=���������������������������������������������������������������������������������������������������������������� ���������
�������� ��������������������������� ��������
�������� ����������������������������� ������� ������� ���������������������������������!������#������%������'������*������,� ������.� ������1������4�������7�������:����=��<�����5���2��
�/���� �+���)�����&�����$�����"����� ��� ��"�����"�����$�����&�����(��+�����+�����-� ����/� ����0�
����2� �5�����5�����7�����8�����:��=��������������������������������������������������� ��� ������ ������������������������������������������������� ������� ����� �� �����"�������$�������&������(�������)�������+������-� ����/� �����0�
����2������3������5�����7������8������:�����<���������������������������������������������� ��� ������ ������������������������������������������������������������� �������"�������$�� �����&�� ����(��
�����)�������+�������-������/�������0������2�������3������5�����7������8������:�����<�������� ��� �� ��'����;�� ��� ���������������� �����������9�� L�� L��������������� �����������9��:��:����� �.������� �����,�����6�����=���(��(������������������������� ��������������+�����������
�4�����������=����� ��� �
� ��� �
� �����������
� �
� ����������������
� �������������� ��+�������������4�����������=����� �������;�����4� ������-�����'��������!���������"�������'������+�������0������
�4������8�������<������
��>����=����=����=����=����=����=��������9������������1����
��������+������������%����������� ���������������!������������&�����������*������� ����/�����������3�����������7����������;������
���
� �
���
� �
���
� �
���
� �
���
� �
���
� �
���
� �
���������
� �
�����������
� �
�� ���������� � �
����������� �
����������� �
����������
��"���������
��'������� ��+���������0����������4��������8��������<������
����
�������� ������������������� ������� ���������������������������!������$��$��$��$��$��$��$��$��$��$��$��������$�������$��������$� ����� �$��������$�������$�������$�������"���������������!�������$�������'�������*�������-������ �0������
�3������5�������8�������;�������=������%�������'��������'��������'������� �'� ������ �'� �������'��������'���������&�������&��'��'��'��'��'��'��'��'��'�����%��������"������������������� ������������������������������� ��������
������������������!��������$�������'�������*�������-������ �0������
�3������5�������8�������;�������=�������
� � ���������
� � ���������
� � ���������
� � � ������ ��
� � � ������ ��
� � ���������
� � ���������
� � ����������
� � ��������
� � ����
� � ����
� � ����
� � ����
� � ����
� � ����
� � ����
� � ����
� � ����
� � �������� � � ���������� � ���������� � ������������ � ��� ������
� ���������� ����������� �����������������������������������������!��������$��������'��������*��������-������ ��0��������3�������5��������8����������:�������=�������1����������5��������8�������:��������<�����������;������8������5������2� ������/�������,�����*��������'��������$��������!��
�������� ���������������������������������������������� �������� ��"��������%��������(���������+������-��-��-��-��-��-��-��-��-������-������� �-��������-��������-� �������-� ��������,�������+�������(�������%�������"���������������!�������$�������'�������*�������-������ �0������
�3��������7�������:��������=����~�1���������5��������8�������:��������<������������;�������8�������5�������2� ������/�������,�������*��������'��������$��
������!�� ������������������������������������������������������ ��"������ ��%��������&���������&��������� �&����&� ��&� ��&� ��&� ��&� ��&� ��&� ��&� ��&� ����� �&� ��������&� ��������&� ��������&� � ��������%� � ������$� �������!� �������� �������� �������� �������� �������� �!������� �$������ � �'������ � �*������� �-������� �0���������3��������7�������:��������=����~�1���������5��������8������:��������<������������;�������8�������5�������2��������/��������,�������*��
������'�� �������$�� �������!�� ��������� � �������� � ��������� � ��������� � ��������� � � �������� � � ������� �� � � ������� �� � � ��������� � � �
�������� � � �
���������� � � �
������� � � �
��� � � �
��� � � �
��� � � �
��� � � �
��� � � �
��� � � �
��� � � �
��� � � �
������� � � �
��������� � � �
��������� � � �
�������� � � �
�� ������� � �
�� ������� � �
��������� � �
��������� �
��������� �
��������� �
��������� �
�������� �
��!�������
��$�������
��'�������� ��*��������-��������0��������3��������7�������:��������=����~��������� ������������ ����������� ���������� ����������� ������������ ������ ������ ���������� �������� ������ ��������� �������� ������ ��������� ����������������� �������� ���������������� �������� ���������������� ������� ����������������� �������� ������������������������ ����
������������������� ���� ���������������������������������������������������������������������������������������������������������������������������������������������������������������.������������.�������������.������������/�����������/�������������/������������/�����������0�����������/������������/������������� �����"������������������ �������������������������������������������������������� �������������������� ������������������������������������������������������������������ ��������������������� ������������!������������������&������������������+���������������-����������������-����������������-��������������-�������������-������������-������������-������������-� ����������-�
���������-� ��������-� �������-� ������-���.���.���.���.���.������-���������)��������&��������� �����#�������� �����!��������� ��������������� ������������������ ������������������� ������������������ ������������������� ����������������� ������������������ ������ ������������������� ������ ��������� � ������
�����������
������� ����������������� �������������������������������������������������������������������������������������������.�����������.�������������.������������/����������/�����������/������������/������������0�����������/�����������/����������� �����"������������������� ���������������������������������������������������� ������������������������������������������������������������������������������������ �������������������� ���������������������������� ������������������������������������������������������������������������������������������������������������������������������������ ������!�����"��"��"��"��"��"������"��������"��������"���������� ����������������� ����������������� ������������������ ������������������ ������������������� ��������������� ���� �������������
����� ������������� ����� ����� ���������
������ ����� �� ������
����������� �� ����� ������������� ������������������������������������������������������������������������������������������������������������������������������������������.�����������.������������.�������������/�����������/�����������/�����������/�����������0������������/�����������/���������� �����"������������������� ���������������������������������������������������������������������������� ������������������������������������������������������������������� ��������������������� �������������� ������������������� ������������������� ���������������� � ��������������� � ����������������� � ������������� � ������������� � ������������� � ������������� � ������������ � ����������� � ���������� � � �������� � �
������� � �
������� � �
���� � �
���� � �
���� � �
���� � �
���� � �
��������� � �
���������� � �
��������� � �
��������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� ������������� �������������fN�������������������U������������������U�������u������Nv����N��5������������M�uU������M�������N5�W��P�WW�ʭ��������M�����V�����������W�����5�����������M�����M�����������N�����P��X����������M���3�u��������5����N�����P����������������M���������������N�����P�4��������������M�������|�������N�����P����������������������������������������������� �������
��������� ������� �������� ���������������� �������������� �������������� ������������������������������������������������������������!�������������%�������������(�����������-����������1����������6������������:���?����=�����<�����;�����:���������8�������������1�����������������)������� ����������� ������������������������������������� ��������������������������������������������������������������������������������� �������������� ��������������
��������������� ���������������������������������������������������� �V��������O�6�������5�6���]���5����������l�5ʀx���xO���������5��������������]����O؈���������5�6��������P����������P������������]x�5���������]�����5��P�������������\���������6�����������P�������������������\�y5��������PO������P�������������������6\��65�����]5�����5��]����������������� ��������������3�
�����1� �����/�������,������*�������'�������$������"���������������!��������%�������(�������-������ �1��������6���������;���?����=�����<�����;�����:��������8����������2���������������)������ ���������� ��������������������������������� � �����)�����
�����1�
������0���������/����������.����������-�����������,������������*������������)�������������(�������������'��������������&����������������\5������ �;��;��;��;��;��;��;��;��;��;��;��;��;���������j����������P����������P����������ځ�j�Q����Qz������Y���P��jԷ����ͯ��j�������Q6�����Q���Y������j�������������j��ԩ��������Q���j������Q�����Y�6������ԩ��������Q���������j����������Q������ԠQ������������Q���Y���������5�����Q���������������������Q����������������Q�������������������������� ������������/��
�����-�� �����+��������(�������&��������#�������� �������������������������!���������%��������(������ ��-������ ��1���������6��������;���?����=�����<�����;�����:���������8������������1������������������)�������� ������������ ������� � ������������������� � ����������� �������� ������������������� ����������� ������������� �������������� ��������������� �������������� �������������� �������������� ��������������
�������������� ���������������������������������������X����� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � ���i���X�y���Qy����Y����QQ۰����Q��� � �����i�����Q6�Y����z�k������ � ���������Ө����Y���Q�����z���5��� � ������Q���Ө��Q���Q��Q����z���� � ���������Ө6����Q���Q��������Q�� � ��������y������Q���Q���������� � �������Q�����Q���Y���������� � �����������������������z�� � �����X�y��� ��Y��� � ����秀���� ������ � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � �� ��� � ��������� � ����������� �������������� � ������ �
����7�
������)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �������5�x������\�����x�y����x�� � �������������Ƙ������5��P��� � ������x����P��������՘O��ʐ������ � �����6�����]������6�������� � �����������6����������y���Ѧ��\l��� � �����������PO����ѿ�������� � �������6��]5��������5���PO�� � ���ջ������
������� � �������������� � ���՘��������� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �����&� � ����������� �������������� � ������ �
���7�
�������)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �۸��Y��Y�������ۂ�������Q������� � �۩YƩ��Y��ΰ��Q�YQ��ƾ������� � �۩6��5����Q�����������5����������� � ���Q������Q��Y�Q���������ꂊ�� � �ܩQ������Q�������Q����������P���� � �ݩQ��z6��Y�5�����Q�����6������� � ���Y���k�������Q�����Q������� � ��������������� ����������� � �����������z�� � ���Œ�����Ω��� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �����&� � ����������� �������������� � ������ �
���7�
�������)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �)� � �� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � �����)� �� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#�� � �#���)� �� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$�� � �$����� ���� �������� �������� �������� �������� �������� �������� �������� �������?� ���$��$��$��$��$��$��$��$�?� ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��� � � � ��?� ��� ������� ������� ������� ������� ������� ������� ������� ��������:� ������������������������������������������?� ���� � ���� � ���� � ���� � ���� � ���� � ���� � ���� � ��?� ������� ������ ������ ������ ������ ������ ������ ������ �
� ���/� ��/� ��/� ��/� ��/� ��/� ��/� ��/� ��1� �� ��� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�� �� s�1� �� ���<��8��3� �/��*��#���"��.������������ ��������������� ��������� ������������
����������������������������������(�� ��%��������%��������%� ������ �%������� �%��������������������������������������������(�� ������������������������������� ������"�� ����������������������������������������� ��"���������'���������,�������� �2���������8���������=���� �� �������"� ������
�"��������"���������"������� ���������"��������'��������,�������� �2���������8���������=���� �� ������ � � �
�� ������� � �
��������� � �
����������
� �
���������� �
���������� �
��"������� �
��'��������
��,�������� ��2����������8���������=���� ��� ����������������Y����� �
��������������5������Q6������
������ �������𠩷����y��������� ��������������������������5�������� �������������������ԩQ���Y������������������������Ծ���5�������������������������������������������������������������������Y������������� ����������������������������������������������������������������������
��������������� ������������������������������������������������������������������ ������������������������������������!��������������(���������������(����������������'�������������&�����������)�����������+���������-����������/���������2��������'����T���������'��������������'���T��T��8�������&��������\��T�\]��Ե��&������\������8�������&���8���T������T��]�&���T���T������T�������&���������T������T�8�����&�����T������T�����;�������������������� ��\������ �������������� ��Pl������l�������������������� ��6�lO������P�������������������� ��6�����\������������ �������������6�����6���������]��
�������������6����y�������������� ���������������6������������5���� ��������������6�������������������������� �����������������������������������������������������������������������
������������� ������������������������������������������������������������ ����������������������������������!������� ������(��������
�������(������
�������'������
�������&������� ���)����� ���+��������-���������/���������2���������'��p�����������'��S|��������������'��S�����p�8Є|���vG���&��Sp�������`����S����&��`��������S�������&��S��������7��S�����&��S����������S��������&��S|�����������S�������&��p�R����7��`������:�������� ���������������������Q��� ������������������X���Q����������y����������������������Q����������j����������������������Q�5��������Yj������������������������Xy�Q����������5���������������������X�����������������������������������X��6��5������������������������������QX��5Q������ � ������������ ����� �
��������������� �
�������������������������
������������� ������������������������� �� �������������������� ����������������������������������������������������������������������������������������!��������������(�������������(������� ������'�������� ������&������� ��)������ ��+������ ��-������
��/��������2�������&��������������&������������������&�������↦n�T����Om���%���������n�������S4��%���������n��ۮ�����%��������8������ۮ���%��������T������ۦT�����&����������T������������&�����T������������:��������)� � �ځ��Y���Y�ၩ��56��������j������Q��� � ��������������ͯ��������� � �������������y���������������5��� � ��Q���������Q������Y�����y���� � ��y6�������������������������Q�� � ��6���j��������5������������ � �����Q������5�������������� � �����Ծ������������y�� � � �������
��Y��� � � ��ԙ��� ������ � �)� � �)� � �)� � �)� � �)� � �)� � ������ ���
����������:�������7���������3����������.�������������(�������������������� ��� � ������ � ���j���Y�z���Qz����Z����RRݱ����R��� � �����j�����R6�Z����{�k������ � ���������ԩ����Z���R�����{���7��� � ������R���ԩ��R���R��R����{���� � ���������ת6����R���R��������R�� � ��������~������R���R���������� � �������T�����T���Z���������� � ����������������������|����� � ���]�~���\��!��񮆶�������)� � �۩��x���x����O��\����xO����t����x�� � ���������\Ʃ��O�O؈����5��P��� � ������������6����5�������������� � ��x�������5������5����������� � �������5��5������5�����������\l��� � ��l����O��5��y5��O������������� � ����lPO��O���l�����������PO�� � ������������������������� � � ������� ������ � � ��Ɛ���
������ � �)� � �)� � �)� � �)� � �)� � �)� � ������� ������������:��������7���������3����������.�������������(��������������������� �����7
7 ������ 7 ���r�ر/�k�ݫ���R���۰j�j��۩j�� 7 �������ײ�����ս���.��Fx�� 7 ����ވk�޷�Gy�ܧ������E�۳������ 7 �����7��޾�R������/�������� 7 �����������2���ʰ�����jx�۹�یP`��� 7 ������������KJ��������x����� 7 �������8��`8�������y.���FE�� 7 ���������� ��������������� 7 ������������!��ܝ���������)� � �������������5��������Qy�����WQ������� � �������Y��j́����Q6��Y������� � ��������Y������5������6�������� � ����������P������Y���ԩQ���遊�� � ��Ԡ������P������P��Q�����Q���P���� � ��Ԡ����P�������������Q������ � ��j����Y����6�������Y������� � ����������������������� � � ��5�Q�� ���y�� � � ��﯊���
��ͩ��� � �)� � �)� � �)� � �)� � �)� � �)� � ������� ������������:��������7���������3�����������.������������(������������������������:
: ����� : �ۥ�tPޗP���ݏ���s���ܖ��G��܁��� : �ۘP����P݂����G�NGܖ��������� : �۬4��/��މH����ss��ܼ�.��܏��ܷ��� : ���T����ޗH��N�G�ܼ�������sz�� : �ܮT������P���ݽüG�ܼ���ܣ��G���� : �ݮT��~8��\�8�����G�ܼ�s.���ܣ�� : ���\���n�������R�����Gs������ : ����������������������������� : ����������~�"��̗�����Ԯ���������������������������������������������������������������������������������������������������������������������������� � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � ����}x><
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment